docs(#744): complete Tess API coverage
All checks were successful
ci/woodpecker/pr/ci Pipeline was successful
All checks were successful
ci/woodpecker/pr/ci Pipeline was successful
This commit is contained in:
@@ -118,6 +118,62 @@ paths:
|
|||||||
responses: { '200': { description: Recovered } },
|
responses: { '200': { description: Recovered } },
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
/api/coord/mos/handoff:
|
||||||
|
{
|
||||||
|
post:
|
||||||
|
{
|
||||||
|
summary: Submit Mos handoff,
|
||||||
|
parameters: [{ $ref: '#/components/parameters/correlation' }],
|
||||||
|
responses: { '200': { description: Receipt } },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
/api/coord/mos/{handoffId}/observe:
|
||||||
|
{
|
||||||
|
get:
|
||||||
|
{
|
||||||
|
summary: Observe Mos handoff,
|
||||||
|
parameters:
|
||||||
|
[
|
||||||
|
{ $ref: '#/components/parameters/handoffId' },
|
||||||
|
{ $ref: '#/components/parameters/correlation' },
|
||||||
|
],
|
||||||
|
responses: { '200': { description: Observation } },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
/api/coord/mos/{handoffId}/result:
|
||||||
|
{
|
||||||
|
get:
|
||||||
|
{
|
||||||
|
summary: Get Mos handoff result,
|
||||||
|
parameters:
|
||||||
|
[
|
||||||
|
{ $ref: '#/components/parameters/handoffId' },
|
||||||
|
{ $ref: '#/components/parameters/correlation' },
|
||||||
|
],
|
||||||
|
responses: { '200': { description: Result } },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
/api/interaction/{agentName}/sessions/{sessionId}/stream:
|
||||||
|
{
|
||||||
|
get:
|
||||||
|
{
|
||||||
|
summary: Stream runtime events,
|
||||||
|
parameters:
|
||||||
|
[
|
||||||
|
{ $ref: '#/components/parameters/agentName' },
|
||||||
|
{ $ref: '#/components/parameters/sessionId' },
|
||||||
|
{ $ref: '#/components/parameters/correlation' },
|
||||||
|
],
|
||||||
|
responses:
|
||||||
|
{
|
||||||
|
'200':
|
||||||
|
{
|
||||||
|
description: Event stream,
|
||||||
|
content: { text/event-stream: { schema: { type: string } } },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
/api/memory/preferences:
|
/api/memory/preferences:
|
||||||
{
|
{
|
||||||
get: { summary: List preferences, responses: { '200': { description: Preferences } } },
|
get: { summary: List preferences, responses: { '200': { description: Preferences } } },
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# TESS-M5-003 Documentation Checklist
|
# TESS-M5-003 Documentation Checklist
|
||||||
|
|
||||||
- [x] `openapi-tess.yaml`: authenticated interaction endpoints, Mos handoff/observe/result, memory search.
|
- [x] `openapi-tess.yaml`: authenticated interaction endpoints including SSE stream, Mos handoff/observe/result, and memory preferences, insights, and search.
|
||||||
- [x] User guide: authorized session and handoff workflows.
|
- [x] User guide: authorized session and handoff workflows.
|
||||||
- [x] Admin guide: provisioning, policy, health, and approval boundary.
|
- [x] Admin guide: provisioning, policy, health, and approval boundary.
|
||||||
- [x] Developer guide: scope, durable state, and provider adapter contract.
|
- [x] Developer guide: scope, durable state, and provider adapter contract.
|
||||||
|
|||||||
Reference in New Issue
Block a user