Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ version = "0.1.0"
description = "Llama Stack runner"
authors = []
dependencies = [
"llama-stack==0.2.21",
"llama-stack==0.2.22",
"fastapi>=0.115.12",
"opentelemetry-sdk>=1.34.0",
"opentelemetry-exporter-otlp>=1.34.0",
Expand Down
6 changes: 3 additions & 3 deletions docs/deployment_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ cp examples/run.yaml /tmp/llama-stack-server
The output should be in this form:
```json
{
"version": "0.2.21"
"version": "0.2.22"
}
```

Expand Down Expand Up @@ -676,7 +676,7 @@ a4982f43195537b9eb1cec510fe6655f245d6d4b7236a4759808115d5d719972
description = "Default template for PDM package"
authors = []
dependencies = [
"llama-stack==0.2.18",
"llama-stack==0.2.22",
"fastapi>=0.115.12",
"opentelemetry-sdk>=1.34.0",
"opentelemetry-exporter-otlp>=1.34.0",
Expand Down Expand Up @@ -1071,7 +1071,7 @@ models:
The output should be in this form:
```json
{
"version": "0.2.18"
"version": "0.2.22"
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ It is possible to run Lightspeed Core Stack service with Llama Stack "embedded"
1. Add and install all required dependencies
```bash
uv add \
"llama-stack==0.2.21" \
"llama-stack==0.2.22" \
"fastapi>=0.115.12" \
"opentelemetry-sdk>=1.34.0" \
"opentelemetry-exporter-otlp>=1.34.0" \
Expand Down
7 changes: 4 additions & 3 deletions docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2142,7 +2142,8 @@
"examples": [
"0.2.1",
"0.2.2",
"0.2.18"
"0.2.18",
"0.2.22"
]
}
},
Expand All @@ -2153,7 +2154,7 @@
"llama_stack_version"
],
"title": "InfoResponse",
"description": "Model representing a response to an info request.\n\nAttributes:\n name: Service name.\n service_version: Service version.\n llama_stack_version: Llama Stack version.\n\nExample:\n ```python\n info_response = InfoResponse(\n name=\"Lightspeed Stack\",\n service_version=\"1.0.0\",\n llama_stack_version=\"0.2.21\",\n )\n ```",
"description": "Model representing a response to an info request.\n\nAttributes:\n name: Service name.\n service_version: Service version.\n llama_stack_version: Llama Stack version.\n\nExample:\n ```python\n info_response = InfoResponse(\n name=\"Lightspeed Stack\",\n service_version=\"1.0.0\",\n llama_stack_version=\"0.2.22\",\n )\n ```",
"examples": [
{
"llama_stack_version": "1.0.0",
Expand Down Expand Up @@ -3159,4 +3160,4 @@
}
}
}
}
}
2 changes: 1 addition & 1 deletion docs/openapi.md
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,7 @@ Example:
info_response = InfoResponse(
name="Lightspeed Stack",
service_version="1.0.0",
llama_stack_version="0.2.21",
llama_stack_version="0.2.22",
)
```

Expand Down
2 changes: 1 addition & 1 deletion docs/output.md
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,7 @@ Example:
info_response = InfoResponse(
name="Lightspeed Stack",
service_version="1.0.0",
llama_stack_version="0.2.21",
llama_stack_version="0.2.22",
)
```

Expand Down
2 changes: 1 addition & 1 deletion examples/pyproject.llamastack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
description = "Default template for PDM package"
authors = []
dependencies = [
"llama-stack==0.2.21",
"llama-stack==0.2.22",
"fastapi>=0.115.12",
"opentelemetry-sdk>=1.34.0",
"opentelemetry-exporter-otlp>=1.34.0",
Expand Down
4 changes: 2 additions & 2 deletions src/models/responses.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ class InfoResponse(BaseModel):
info_response = InfoResponse(
name="Lightspeed Stack",
service_version="1.0.0",
llama_stack_version="0.2.21",
llama_stack_version="0.2.22",
)
```
"""
Expand All @@ -181,7 +181,7 @@ class InfoResponse(BaseModel):

llama_stack_version: str = Field(
description="Llama Stack version",
examples=["0.2.1", "0.2.2", "0.2.18"],
examples=["0.2.1", "0.2.2", "0.2.18", "0.2.21", "0.2.22"],
)

# provides examples for /docs endpoint
Expand Down
Loading