Persist Question
Persist a question + agent response as a feed event (JSONL).
Called by the frontend after agent streaming completes for questions. Does NOT create a memory — only writes the event for timeline persistence.
Request Body
application/json
question*string
Length
1 <= length <= 10000agent_response*string
Length
length <= 50000source?string
Default
"feed"related_memory_ids?array<>|
tool_calls?array<>|
thread_id?|
Thread root event ID for follow-up conversations
Response Body
application/json
application/json
curl -X POST "http://127.0.0.1:14242/agent/feed/input/persist-question" \ -H "Content-Type: application/json" \ -d '{ "question": "string", "agent_response": "string" }'{}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}