Merge remote-tracking branch 'origin/main' into resp_branching

This commit is contained in:
Ashwin Bharambe 2025-10-02 09:44:48 -07:00
commit c1c06e6e2f
65 changed files with 56610 additions and 61 deletions

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

BIN
docs/static/img/favicon-16x16.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 657 B

BIN
docs/static/img/favicon-32x32.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

BIN
docs/static/img/favicon-48x48.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

BIN
docs/static/img/favicon-64x64.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

BIN
docs/static/img/favicon.ico vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 679 B

BIN
docs/static/img/favicon.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 71 KiB

After

Width:  |  Height:  |  Size: 196 KiB

Before After
Before After

View file

@ -1310,16 +1310,11 @@
"post": {
"responses": {
"200": {
"description": "An OpenAIResponseObject.",
"description": "A ListOpenAIResponseObject.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/OpenAIResponseObject"
}
},
"text/event-stream": {
"schema": {
"$ref": "#/components/schemas/OpenAIResponseObjectStream"
"$ref": "#/components/schemas/ListOpenAIResponseObject"
}
}
}
@ -1340,14 +1335,14 @@
"tags": [
"Agents"
],
"summary": "Create a new OpenAI response.",
"description": "Create a new OpenAI response.",
"summary": "List all OpenAI responses.",
"description": "List all OpenAI responses.",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateOpenaiResponseRequest"
"$ref": "#/components/schemas/ListOpenaiResponsesRequest"
}
}
},
@ -8238,6 +8233,33 @@
],
"title": "OpenAIResponseObjectStreamResponseWebSearchCallSearching"
},
"ListOpenaiResponsesRequest": {
"type": "object",
"properties": {
"after": {
"type": "string",
"description": "The ID of the last response to return."
},
"limit": {
"type": "integer",
"description": "The number of responses to return."
},
"model": {
"type": "string",
"description": "The model to filter responses by."
},
"order": {
"type": "string",
"enum": [
"asc",
"desc"
],
"description": "The order to sort responses by when sorted by created_at ('asc' or 'desc')."
}
},
"additionalProperties": false,
"title": "ListOpenaiResponsesRequest"
},
"OpenAIDeleteResponseObject": {
"type": "object",
"properties": {

View file

@ -967,14 +967,11 @@ paths:
post:
responses:
'200':
description: An OpenAIResponseObject.
description: A ListOpenAIResponseObject.
content:
application/json:
schema:
$ref: '#/components/schemas/OpenAIResponseObject'
text/event-stream:
schema:
$ref: '#/components/schemas/OpenAIResponseObjectStream'
$ref: '#/components/schemas/ListOpenAIResponseObject'
'400':
$ref: '#/components/responses/BadRequest400'
'429':
@ -987,14 +984,14 @@ paths:
$ref: '#/components/responses/DefaultError'
tags:
- Agents
summary: Create a new OpenAI response.
description: Create a new OpenAI response.
summary: List all OpenAI responses.
description: List all OpenAI responses.
parameters: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreateOpenaiResponseRequest'
$ref: '#/components/schemas/ListOpenaiResponsesRequest'
required: true
deprecated: false
/v1/responses/{response_id}:
@ -6199,6 +6196,27 @@ components:
- type
title: >-
OpenAIResponseObjectStreamResponseWebSearchCallSearching
ListOpenaiResponsesRequest:
type: object
properties:
after:
type: string
description: The ID of the last response to return.
limit:
type: integer
description: The number of responses to return.
model:
type: string
description: The model to filter responses by.
order:
type: string
enum:
- asc
- desc
description: >-
The order to sort responses by when sorted by created_at ('asc' or 'desc').
additionalProperties: false
title: ListOpenaiResponsesRequest
OpenAIDeleteResponseObject:
type: object
properties:

Binary file not shown.

Before

Width:  |  Height:  |  Size: 196 KiB

36
docs/static/site.webmanifest vendored Normal file
View file

@ -0,0 +1,36 @@
{
"name": "Llama Stack",
"short_name": "Llama Stack",
"description": "The open-source framework for building generative AI applications",
"start_url": "/",
"display": "standalone",
"theme_color": "#7C3AED",
"background_color": "#ffffff",
"icons": [
{
"src": "/img/favicon-16x16.png",
"sizes": "16x16",
"type": "image/png"
},
{
"src": "/img/favicon-32x32.png",
"sizes": "32x32",
"type": "image/png"
},
{
"src": "/img/favicon-48x48.png",
"sizes": "48x48",
"type": "image/png"
},
{
"src": "/img/favicon-64x64.png",
"sizes": "64x64",
"type": "image/png"
},
{
"src": "/img/llama-stack-logo.png",
"sizes": "200x200",
"type": "image/png"
}
]
}

18085
docs/static/stainless-llama-stack-spec.html vendored Normal file

File diff suppressed because it is too large Load diff

13412
docs/static/stainless-llama-stack-spec.yaml vendored Normal file

File diff suppressed because it is too large Load diff