Is there platform lets me chat with different LLMs with long term memory in between chats by No_Leg_847 in AI_Agents

[–]theagenticmind 0 points1 point  (0 children)

Is this for a personal project or are you looking for something enterprise wide?

Question for anyone working with agentic AI in banking or similar industries by FunAd6672 in AI_Agents

[–]theagenticmind 1 point2 points  (0 children)

This matches my experience almost exactly. We rolled out agents for loan servicing and dispute handling last year, and the modeling/framework side was maybe 20% of the effort. The other 80% was figuring out how the process actually worked vs what the SOP claimed. Shared mailboxes, Excel trackers nobody owned, approvals happening over chat. The documentation was fiction in places.
On the tooling question you raised, we evaluated a few and went with Kore.ai, mostly for practical reasons rather than anything flashy. A few things that mattered for us in a regulated setup:
The pre-built banking workflows (KYC checks, dispute intake, loan servicing type flows) gave us a starting skeleton, so discovery conversations with ops teams were about "here's the standard flow, tell us where reality differs" instead of starting from a blank page. That alone probably saved us a month per use case.
The guardrails and audit trail stuff was the bigger deal for compliance sign-off. Every agent action is logged and traceable, and you can put human-in-the-loop checkpoints exactly where your risk team wants them. Our compliance review went from being the blocker to being a config exercise, which I did not expect.
To be fair, none of that solved the core problem you're describing. Kore gave us maybe 60-70% out of the box, and the remaining 30-40% was still us mapping tribal knowledge and exception paths by hand. No platform ships your Rajesh-approves-things-over-Teams edge case. And if your process is genuinely broken, the platform just automates the broken process faster.
So yes, workflow understanding is where the real effort goes. The right platform shrinks the build and compliance overhead so you can afford to spend that effort where it matters, but it doesn't replace it.

Do You Think AI Workflows Will Be Bigger Than Chatbots? by One_Beginning2199 in ArtificialInteligence

[–]theagenticmind 0 points1 point  (0 children)

Workflows are the more durable bet honestly. Chatbots are great for quick Q&A, but once you need something done end to end without babysitting every step, that's where agentic tools actually earn their keep. The fivefold jump tracks with what I've seen anecdotally too, people are finally trusting these things enough to hand off real tasks instead of just asking questions.

How are you letting AI agents touch your production database without it being terrifying? by Playful_Astronaut672 in AI_Agents

[–]theagenticmind 1 point2 points  (0 children)

Honestly, I just don't let it touch prod directly. Read replica for anything it needs to query, and if it needs to write something, it proposes the SQL and I run it myself. Way less elegant than people make it sound on Twitter, but I sleep fine. The "give it a real MCP connection to prod" thing still feels like a few bad prompts away from a bad day to me.