Files
ai-agent-server/app/utils/PER_REQ_CONFIG_MODIFIER.py
T
2026-03-31 16:55:08 +08:00

9 lines
227 B
Python

async def PER_REQ_CONFIG_MODIFIER(config, request):
body = await request.json()
return {
"configurable": {
"thread_id":
body.get("config", {}).get("configurable", {}).get("thread_id", "default")
}
}