mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 18:01:30 +00:00
docs: restore project goals and scope to README
This commit is contained in:
parent
924bacae4e
commit
ab2c1c2b62
7 changed files with 897 additions and 527 deletions
|
|
@ -137,6 +137,26 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"/v1/health": {
|
||||
"get": {
|
||||
"tags": [
|
||||
"meta"
|
||||
],
|
||||
"operationId": "get_health",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/HealthResponse"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/v1/sessions/{session_id}": {
|
||||
"post": {
|
||||
"tags": [
|
||||
|
|
@ -789,6 +809,17 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"HealthResponse": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"status"
|
||||
],
|
||||
"properties": {
|
||||
"status": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"MessageRequest": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
|
|
@ -1405,6 +1436,10 @@
|
|||
}
|
||||
},
|
||||
"tags": [
|
||||
{
|
||||
"name": "meta",
|
||||
"description": "Service metadata"
|
||||
},
|
||||
{
|
||||
"name": "agents",
|
||||
"description": "Agent management"
|
||||
|
|
|
|||
|
|
@ -19,6 +19,9 @@ export interface paths {
|
|||
"/v1/agents/{agent}/modes": {
|
||||
get: operations["get_agent_modes"];
|
||||
};
|
||||
"/v1/health": {
|
||||
get: operations["get_health"];
|
||||
};
|
||||
"/v1/sessions/{session_id}": {
|
||||
post: operations["create_session"];
|
||||
};
|
||||
|
|
@ -117,6 +120,9 @@ export interface components {
|
|||
events: components["schemas"]["UniversalEvent"][];
|
||||
hasMore: boolean;
|
||||
};
|
||||
HealthResponse: {
|
||||
status: string;
|
||||
};
|
||||
MessageRequest: {
|
||||
message: string;
|
||||
};
|
||||
|
|
@ -343,6 +349,15 @@ export interface operations {
|
|||
};
|
||||
};
|
||||
};
|
||||
get_health: {
|
||||
responses: {
|
||||
200: {
|
||||
content: {
|
||||
"application/json": components["schemas"]["HealthResponse"];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
create_session: {
|
||||
parameters: {
|
||||
path: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue