|
1 | 1 | # List of source files stored in `src/app/endpoints` directory |
2 | 2 |
|
3 | 3 | ## [__init__.py](__init__.py) |
| 4 | + |
4 | 5 | Implementation of all endpoints. |
5 | 6 |
|
6 | 7 | ## [a2a.py](a2a.py) |
| 8 | + |
7 | 9 | Handler for A2A (Agent-to-Agent) protocol endpoints using Responses API. |
8 | 10 |
|
9 | 11 | ## [a2a_openapi.py](a2a_openapi.py) |
| 12 | + |
10 | 13 | OpenAPI-only metadata for A2A JSON-RPC routes. |
11 | 14 |
|
12 | 15 | ## [authorized.py](authorized.py) |
| 16 | + |
13 | 17 | Handler for REST API call to authorized endpoint. |
14 | 18 |
|
15 | 19 | ## [config.py](config.py) |
| 20 | + |
16 | 21 | Handler for REST API call to retrieve service configuration. |
17 | 22 |
|
18 | 23 | ## [conversations_v1.py](conversations_v1.py) |
| 24 | + |
19 | 25 | Handler for REST API calls to manage conversation history using Conversations API. |
20 | 26 |
|
21 | 27 | ## [conversations_v2.py](conversations_v2.py) |
| 28 | + |
22 | 29 | Handler for REST API calls to manage conversation history. |
23 | 30 |
|
24 | 31 | ## [feedback.py](feedback.py) |
| 32 | + |
25 | 33 | Handler for REST API endpoint for user feedback. |
26 | 34 |
|
27 | 35 | ## [health.py](health.py) |
| 36 | + |
28 | 37 | Handlers for health REST API endpoints. |
29 | 38 |
|
30 | 39 | ## [info.py](info.py) |
| 40 | + |
31 | 41 | Handler for REST API call to provide info. |
32 | 42 |
|
33 | 43 | ## [mcp_auth.py](mcp_auth.py) |
| 44 | + |
34 | 45 | Handler for REST API calls related to MCP server authentication. |
35 | 46 |
|
36 | 47 | ## [mcp_servers.py](mcp_servers.py) |
| 48 | + |
37 | 49 | Handler for REST API calls to dynamically manage MCP servers. |
38 | 50 |
|
39 | 51 | ## [metrics.py](metrics.py) |
| 52 | + |
40 | 53 | Handler for REST API call to provide metrics. |
41 | 54 |
|
42 | 55 | ## [models.py](models.py) |
| 56 | + |
43 | 57 | Handler for REST API call to list available models. |
44 | 58 |
|
45 | 59 | ## [prompts.py](prompts.py) |
| 60 | + |
46 | 61 | Handler for REST API calls to manage Llama Stack stored prompt templates. |
47 | 62 |
|
48 | 63 | ## [providers.py](providers.py) |
| 64 | + |
49 | 65 | Handler for REST API calls to list and retrieve available providers. |
50 | 66 |
|
51 | 67 | ## [query.py](query.py) |
| 68 | + |
52 | 69 | Handler for REST API call to provide answer to query using Response API. |
53 | 70 |
|
54 | 71 | ## [rags.py](rags.py) |
| 72 | + |
55 | 73 | Handler for REST API calls to list and retrieve available RAGs. |
56 | 74 |
|
57 | 75 | ## [responses.py](responses.py) |
| 76 | + |
58 | 77 | Handler for REST API call to provide answer using Responses API (LCORE specification). |
59 | 78 |
|
60 | 79 | ## [responses_telemetry.py](responses_telemetry.py) |
| 80 | + |
61 | 81 | Splunk telemetry helpers for the Responses API endpoint. |
62 | 82 |
|
63 | 83 | ## [rlsapi_v1.py](rlsapi_v1.py) |
| 84 | + |
64 | 85 | Handler for RHEL Lightspeed rlsapi v1 REST API endpoints. |
65 | 86 |
|
66 | 87 | ## [root.py](root.py) |
| 88 | + |
67 | 89 | Handler for the / endpoint. |
68 | 90 |
|
69 | 91 | ## [saved_prompts.py](saved_prompts.py) |
| 92 | + |
70 | 93 | Handler for REST API calls to manage saved prompts. |
71 | 94 |
|
72 | 95 | ## [shields.py](shields.py) |
| 96 | + |
73 | 97 | Handler for REST API call to list available shields. |
74 | 98 |
|
75 | 99 | ## [stream_interrupt.py](stream_interrupt.py) |
| 100 | + |
76 | 101 | Endpoint for interrupting in-progress streaming query requests. |
77 | 102 |
|
78 | 103 | ## [streaming_query.py](streaming_query.py) |
| 104 | + |
79 | 105 | Streaming query handler using Responses API. |
80 | 106 |
|
81 | 107 | ## [tools.py](tools.py) |
| 108 | + |
82 | 109 | Handler for REST API call to list available tools from MCP servers. |
83 | 110 |
|
84 | 111 | ## [vector_stores.py](vector_stores.py) |
| 112 | + |
85 | 113 | Handler for REST API calls to manage vector stores and files. |
86 | 114 |
|
0 commit comments