I have already built several agent applications with LangGraph SDK. LangGraph gives me:
- Built-in execution state tracking
- Full conversation history
- Long-term memory (via the LangMem extension)
When I need to go live I simply wrap the app with a thin uvicorn layer, build a container image, and deploy it to my Kubernetes cluster.
Given that background, I’m struggling to see what extra value the AgentScope Runtime would add for me.
Could you:
- Explain the concrete benefits I would gain by switching to (or adding) AgentScope Runtime instead of sticking with my current LangGraph + uvicorn + K8s workflow?
- Provide a minimal end-to-end example that shows how to run an existing LangGraph-based agent under AgentScope Runtime?
Having a runnable sample would help me evaluate whether the migration is worth it.