Submit Feed Input Stream
Stream agent processing of feed input via Wire Protocol.
This is the agent-first approach: the agent classifies input, searches the knowledge base, and provides streaming responses.
Returns Server-Sent Events (SSE) with Wire Protocol messages:
- turn_begin: Agent turn started
- step_begin: New processing step
- text: Text content from agent
- thinking: Agent's reasoning (if enabled)
- tool_call: Agent called a tool
- tool_result: Tool returned a result
- turn_end: Agent turn completed
Request Body
application/json
content*string
Length
1 <= length <= 10000source?string
Default
"feed"persist?boolean
Auto-persist after streaming. False for ephemeral queries (e.g. Chat-to-Doc Q&A).
Default
truethread_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/stream" \ -H "Content-Type: application/json" \ -d '{ "content": "string" }'null{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}