You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: adding supplementary markdown content to API specs (#3632)
# What does this PR do?
Adds supplementary static content to root API spec pages. This is useful for giving context behind a specific API group, adding information on supported features or work in progress, etc.
This PR introduces supplementary information for Agents (experimental, deprecated) and Responses (stable) APIs.
<!-- Provide a short summary of what this PR does and why. Link to relevant issues if applicable. -->
<!-- If resolving an issue, uncomment and update the line below -->
<!-- Closes #[issue-number] -->
## Test Plan
Documentation server renders rich static content for the Agents API group:

<!-- Describe the tests you ran to verify your changes with result summaries. *Provide clear instructions so the plan can be easily re-executed.* -->
Copy file name to clipboardExpand all lines: docs/static/deprecated-llama-stack-spec.html
+12-6Lines changed: 12 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -6282,27 +6282,33 @@
6282
6282
"tags": [
6283
6283
{
6284
6284
"name": "Agents",
6285
-
"description": "APIs for creating and interacting with agentic systems.",
6285
+
"description": "APIs for creating and interacting with agentic systems.\n\n## Deprecated APIs\n\n> **⚠️ DEPRECATED**: These APIs are provided for migration reference and will be removed in future versions. Not recommended for new projects.\n\n### Migration Guidance\n\nIf you are using deprecated versions of the Agents or Responses APIs, please migrate to:\n\n- **Responses API**: Use the stable v1 Responses API endpoints\n",
6286
6286
"x-displayName": "Agents"
6287
6287
},
6288
6288
{
6289
-
"name": "Benchmarks"
6289
+
"name": "Benchmarks",
6290
+
"description": ""
6290
6291
},
6291
6292
{
6292
-
"name": "DatasetIO"
6293
+
"name": "DatasetIO",
6294
+
"description": ""
6293
6295
},
6294
6296
{
6295
-
"name": "Datasets"
6297
+
"name": "Datasets",
6298
+
"description": ""
6296
6299
},
6297
6300
{
6298
6301
"name": "Eval",
6302
+
"description": "",
6299
6303
"x-displayName": "Llama Stack Evaluation API for running evaluations on model and agent candidates."
Copy file name to clipboardExpand all lines: docs/static/experimental-llama-stack-spec.html
+12-6Lines changed: 12 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -6479,27 +6479,33 @@
6479
6479
"tags": [
6480
6480
{
6481
6481
"name": "Agents",
6482
-
"description": "APIs for creating and interacting with agentic systems.",
6482
+
"description": "APIs for creating and interacting with agentic systems.\n\n## Agents API (Experimental)\n\n> **🧪 EXPERIMENTAL**: This API is in preview and may change based on user feedback. Great for exploring new capabilities and providing feedback to influence the final design.\n\nMain functionalities provided by this API:\n\n- Create agents with specific instructions and ability to use tools.\n- Interactions with agents are grouped into sessions (\"threads\"), and each interaction is called a \"turn\".\n- Agents can be provided with various tools (see the ToolGroups and ToolRuntime APIs for more details).\n- Agents can be provided with various shields (see the Safety API for more details).\n- Agents can also use Memory to retrieve information from knowledge bases. See the RAG Tool and Vector IO APIs for more details.\n\n### 🧪 Feedback Welcome\n\nThis API is actively being developed. We welcome feedback on:\n- API design and usability\n- Performance characteristics\n- Missing features or capabilities\n- Integration patterns\n\n**Provide Feedback**: [GitHub Discussions](https://github.com/llamastack/llama-stack/discussions) or [GitHub Issues](https://github.com/llamastack/llama-stack/issues)",
6483
6483
"x-displayName": "Agents"
6484
6484
},
6485
6485
{
6486
-
"name": "Benchmarks"
6486
+
"name": "Benchmarks",
6487
+
"description": ""
6487
6488
},
6488
6489
{
6489
-
"name": "DatasetIO"
6490
+
"name": "DatasetIO",
6491
+
"description": ""
6490
6492
},
6491
6493
{
6492
-
"name": "Datasets"
6494
+
"name": "Datasets",
6495
+
"description": ""
6493
6496
},
6494
6497
{
6495
6498
"name": "Eval",
6499
+
"description": "",
6496
6500
"x-displayName": "Llama Stack Evaluation API for running evaluations on model and agent candidates."
0 commit comments