File size: 13,474 Bytes
3bacc1d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 | # Backend Agentic Service API Contract
This document describes the Python agentic backend used by the frontend for AI chat, help/report tools, and observability data shown alongside chat answers.
Base path examples use relative URLs. Configure the frontend with the deployed Python service base URL.
## Overview
The Python backend owns the generative AI interaction surface:
1. Stream chat answers from the AI agent.
2. Execute tool-style actions for help and report generation.
3. Return report versions and report details.
4. Return observability/provenance for a completed assistant answer.
The frontend uses this service during the analysis conversation flow:
1. User sends a chat message.
2. Frontend calls `POST /api/v2/chat/stream` and renders the streamed answer.
3. When the stream emits `done`, frontend stores or reads the returned `message_id`.
4. Frontend calls `GET /api/v1/observability` for planning, tool calls, and source provenance.
5. Frontend calls `/api/v1/tools/help` for guided help and `/api/v1/tools/report` for report generation.
## Endpoint Summary
| Method | Path | Purpose |
| --- | --- | --- |
| `POST` | `/api/v2/chat/stream` | Stream an AI chat answer for one analysis conversation. |
| `GET` | `/api/v1/tools/list` | List available frontend tools. |
| `POST` | `/api/v1/tools/help` | Stream contextual help for the current analysis conversation. |
| `POST` | `/api/v1/tools/report` | Generate and persist a new report version. |
| `GET` | `/api/v1/tools/report/{analysis_id}` | List report versions for an analysis. |
| `GET` | `/api/v1/tools/report/{analysis_id}/{version}` | Retrieve one report version. |
| `GET` | `/api/v1/observability` | Retrieve provenance for one assistant answer. |
## Common Concepts
### Identifiers
- `user_id`: user identifier passed by the frontend.
- `analysis_id`: analysis conversation identifier.
- `message_id`: assistant answer identifier used to correlate chat streaming with observability.
### Server-Sent Events
Chat and help endpoints return `text/event-stream`.
Frontend should parse events by `event` name and `data` payload. Blank lines separate SSE events.
Common event types:
| Event | Data | Meaning |
| --- | --- | --- |
| `sources` | JSON array | Sources available early in the stream. May be empty. |
| `status` | text | Optional progress update for slower paths. |
| `chunk` | text | Answer text fragment. Concatenate chunks in order. |
| `done` | JSON object | Terminal success event. Includes `message_id`. |
| `error` | text | Terminal error event. Stream stops after this. |
The stream carries answer text only. Planning, tool call details, and full provenance are fetched from `GET /api/v1/observability` after the stream is done.
## Chat
### `POST /api/v2/chat/stream`
Streams an AI answer for one user message in an analysis conversation.
Request body:
```json
{
"user_id": "u_1a2b3c",
"analysis_id": "an_42",
"message_id": "msg_88f1",
"message": "What were total sales by region last quarter?"
}
```
Fields:
| Field | Required | Description |
| --- | --- | --- |
| `user_id` | Yes | User identifier. |
| `analysis_id` | Yes | Analysis conversation identifier. |
| `message_id` | No | Assistant answer id for observability correlation. If omitted, Python returns one in `done`. |
| `message` | Yes | User message text. |
Response: `text/event-stream`.
Example structured answer:
```text
event: sources
data: [{"document_id":"u_1a2b3c_orders","filename":"orders","page_label":null}]
event: status
data: Planning analysis...
event: status
data: Running 3 steps...
event: chunk
data: Total sales by region last quarter:
event: chunk
data: Central led at $1.21M (38%), East $0.74M, West $0.55M (down 12% QoQ).
event: done
data: {"message_id":"msg_88f1"}
```
Example simple chat answer:
```text
event: sources
data: []
event: chunk
data: I'm your AI data analyst. Connect a source or ask a question to get started.
event: done
data: {"message_id":"msg_12"}
```
Behavior notes:
- Greeting and farewell messages may use a fast canned path.
- Stateless `chat` intent may use a 1-hour Redis response cache.
- The router may classify messages into intents such as `chat`, `help`, `check`, `unstructured_flow`, or `structured_flow`.
- `sources` can be empty for chat/help/error paths.
- `status` events are optional and should be safe for the frontend to ignore.
## Tools
### `GET /api/v1/tools/list`
Returns the deterministic list of tools available to the frontend.
Request: none.
Response `200`:
```json
{
"count": 2,
"tools": [
{
"command": "/help",
"name": "help",
"type": "skill",
"description": "Show what the assistant can do and guide your next step."
},
{
"command": "/report",
"name": "report",
"type": "skill",
"description": "Generate a versioned analysis report with background, EDA, key findings, and insights."
}
]
}
```
Tool item shape:
```json
{
"command": "/help",
"name": "help",
"type": "skill",
"description": "Show what the assistant can do and guide your next step."
}
```
Frontend behavior:
- Surface `/help` in the slash menu.
- Surface report generation as a button or explicit UI action.
### `POST /api/v1/tools/help`
Streams contextual guidance for the current analysis conversation.
Request body:
```json
{
"user_id": "u_1a2b3c",
"analysis_id": "an_42"
}
```
Response: `text/event-stream` using the same event shape as chat.
Help responses usually emit `sources: []` and no `status` pings.
Example:
```text
event: sources
data: []
event: chunk
data: Your goal is set. You can start exploring now. Try a question like "average order value by month", then I can generate a report.
event: done
data: {"message_id":"msg_h7"}
```
## Reports
### `POST /api/v1/tools/report`
Generates, persists, and returns a new report version for an analysis.
Query params:
| Query | Required | Description |
| --- | --- | --- |
| `analysis_id` | Yes | Analysis identifier. |
| `user_id` | Yes | User identifier. |
Example:
```text
POST /api/v1/tools/report?analysis_id=an_42&user_id=u_1a2b3c
```
Status codes:
| Status | Meaning |
| --- | --- |
| `201` | New report version generated. |
| `409` | Report floor/precondition not met. |
| `500` | Generation or persistence failed. |
Response `201`:
```json
{
"report_id": "8f3a2b1c9d4e4f6a8b0c1d2e3f4a5b6c",
"analysis_id": "an_42",
"user_id": "u_1a2b3c",
"version": 2,
"generated_at": "2026-06-30T09:14:33.512Z",
"problem_statement": {
"objective": "Understand which regions drive revenue and why Q1 dipped.",
"business_questions": [
"Which regions contribute most to total revenue?",
"Did any region decline quarter-over-quarter?"
]
},
"record_ids": ["rec_a1", "rec_b2"],
"executive_summary": "Revenue is concentrated in the Central region (38% of total). The West was the only region to contract, down 12% QoQ, the main driver of the Q1 dip.",
"findings": [
{
"text": "Central region contributed 38% of total revenue, the largest share.",
"record_ids": ["rec_a1"],
"supporting_data": null
},
{
"text": "West region revenue fell 12% quarter-over-quarter.",
"record_ids": ["rec_b2"],
"supporting_data": null
}
],
"caveats": [
{
"text": "March data for the East region was partially missing, around 6% of rows.",
"record_ids": ["rec_b2"]
}
],
"open_questions": [
{
"text": "What drove the West region's QoQ decline?",
"record_ids": ["rec_b2"]
}
],
"data_sources": [
{
"source_id": "src_sales_db",
"name": "orders",
"source_type": "postgres",
"detail": {
"tables": ["orders"],
"row_count": 48213,
"columns": ["region", "amount", "ordered_at"]
}
}
],
"method_steps": [
{
"task_id": "t1",
"stage": "data_understanding",
"objective": "Inventory the sales source",
"status": "success",
"tools_used": ["check_data"]
},
{
"task_id": "t2",
"stage": "modeling",
"objective": "Aggregate revenue by region",
"status": "success",
"tools_used": ["analyze_aggregate"]
}
],
"rendered_markdown": "# Analysis Report\n\n*Generated 2026-06-30 by u_1a2b3c*\n\n## Objective\nUnderstand which regions drive revenue..."
}
```
Response `409`:
```json
{
"detail": "Not ready to generate a report - still needs at least one completed analysis."
}
```
Precondition:
- Reports require at least one completed analysis record for the session.
- If slow-path analysis recording is disabled, report generation can return `409` by design.
### `GET /api/v1/tools/report/{analysis_id}`
Lists report versions for one analysis, oldest first.
Response `200`:
```json
[
{
"report_id": "1b2c3d4e",
"version": 1,
"generated_at": "2026-06-24T15:02:11Z",
"record_count": 1
},
{
"report_id": "8f3a2b1c",
"version": 2,
"generated_at": "2026-06-25T09:14:33Z",
"record_count": 2
}
]
```
If no reports exist, returns `[]`.
### `GET /api/v1/tools/report/{analysis_id}/{version}`
Returns one report version. Shape is the same as the `201` response from `POST /api/v1/tools/report`.
Response `404`:
```json
{
"detail": "No report v3 for analysis 'an_42'."
}
```
## Observability
### `GET /api/v1/observability`
Returns Responsible AI provenance for one assistant answer.
The frontend should call this after the chat/help stream emits `done`, using the `message_id` from the `done` event. If the row is not ready yet, the frontend may poll until `200` or stop on `404` according to product behavior.
Query params:
| Query | Required | Description |
| --- | --- | --- |
| `analysis_id` | Yes | Analysis identifier. |
| `message_id` | Yes | Assistant answer identifier returned by the stream. |
Example:
```text
GET /api/v1/observability?analysis_id=an_42&message_id=msg_88f1
```
Field rules:
- `planning`: present only when the planner ran; otherwise `null`.
- `thinking`: optional reasoning summary; `null` if unavailable.
- `tool_calls`: every invoked tool with input, output, and status; empty for pure chat or greeting paths.
- `sources`: required for retrieval flows; empty for chat/help paths that do not reference data.
Response `200` for `structured_flow`:
```json
{
"analysis_id": "an_42",
"message_id": "msg_88f1",
"intent": "structured_flow",
"generated_at": "2026-06-30T03:21:09.114Z",
"planning": {
"goal_restated": "Find which regions drive revenue and why Q1 dipped.",
"assumptions": ["'last quarter' = Q1 2026"],
"steps": [
{
"step": 1,
"stage": "data_understanding",
"objective": "Inventory the sales source"
},
{
"step": 2,
"stage": "modeling",
"objective": "Aggregate revenue by region"
}
]
},
"thinking": "The question needs a per-region breakdown plus a cause, so I inventory the source, aggregate revenue by region, then compare quarters.",
"tool_calls": [
{
"order": 1,
"name": "check_data",
"input": { "source_hint": "structured" },
"output": { "kind": "table", "summary": "1 source, 1 table, 48,213 rows" },
"status": "success"
},
{
"order": 2,
"name": "retrieve_data",
"input": {
"source_id": "src_sales_db",
"table_id": "orders",
"select": ["region", "amount"],
"group_by": ["region"]
},
"output": {
"kind": "table",
"columns": ["region", "total"],
"row_count": 4,
"preview": [["Central", 1210000], ["East", 740000]]
},
"status": "success"
}
],
"sources": [
{
"type": "database",
"source_id": "src_sales_db",
"name": "orders",
"query": "SELECT region, SUM(amount) AS total FROM orders GROUP BY region",
"detail": {
"tables": ["orders"],
"row_count": 48213
}
}
]
}
```
Response `200` for `unstructured_flow`:
```json
{
"analysis_id": "an_42",
"message_id": "msg_55",
"intent": "unstructured_flow",
"generated_at": "2026-06-30T03:40:02.001Z",
"planning": null,
"thinking": null,
"tool_calls": [
{
"order": 1,
"name": "retrieve_knowledge",
"input": {
"query": "technology stack used in this project",
"top_k": 4
},
"output": {
"kind": "documents",
"row_count": 4
},
"status": "success"
}
],
"sources": [
{
"type": "document",
"document_id": "doc_7",
"filename": "tech_handbook.pdf",
"page_label": "12",
"query": "technology stack used in this project",
"snippet": "The backend is built on FastAPI with async SQLAlchemy...",
"score": 0.83
}
]
}
```
Response `200` for simple chat or greeting:
```json
{
"analysis_id": "an_42",
"message_id": "msg_12",
"intent": "chat",
"generated_at": "2026-06-30T03:05:00.000Z",
"planning": null,
"thinking": null,
"tool_calls": [],
"sources": []
}
```
Response `404`:
```json
{
"detail": "No observability for message 'msg_88f1' yet."
}
```
Frontend rendering guidance:
- Render observability separately from the streamed answer.
- Default state can be collapsed.
- Show planning, tool calls, and sources as separate sections.
- Treat `planning: null`, `tool_calls: []`, and `sources: []` as valid states.
|