mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-09 21:18:38 +00:00
client sync
# What does this PR do? ## Test Plan
This commit is contained in:
parent
4b9ebbf6a2
commit
9e9a827fcd
2 changed files with 54 additions and 16 deletions
|
@ -25,14 +25,14 @@ classifiers = [
|
|||
]
|
||||
dependencies = [
|
||||
"aiohttp",
|
||||
"fastapi>=0.115.0,<1.0", # server
|
||||
"fire", # for MCP in LLS client
|
||||
"fastapi>=0.115.0,<1.0", # server
|
||||
"fire", # for MCP in LLS client
|
||||
"httpx",
|
||||
"huggingface-hub>=0.34.0,<1.0",
|
||||
"jinja2>=3.1.6",
|
||||
"jsonschema",
|
||||
"llama-stack-client>=0.2.23",
|
||||
"openai>=1.107", # for expires_after support
|
||||
"openai>=1.107", # for expires_after support
|
||||
"prompt-toolkit",
|
||||
"python-dotenv",
|
||||
"python-jose[cryptography]",
|
||||
|
@ -43,13 +43,13 @@ dependencies = [
|
|||
"tiktoken",
|
||||
"pillow",
|
||||
"h11>=0.16.0",
|
||||
"python-multipart>=0.0.20", # For fastapi Form
|
||||
"uvicorn>=0.34.0", # server
|
||||
"opentelemetry-sdk>=1.30.0", # server
|
||||
"python-multipart>=0.0.20", # For fastapi Form
|
||||
"uvicorn>=0.34.0", # server
|
||||
"opentelemetry-sdk>=1.30.0", # server
|
||||
"opentelemetry-exporter-otlp-proto-http>=1.30.0", # server
|
||||
"aiosqlite>=0.21.0", # server - for metadata store
|
||||
"asyncpg", # for metadata store
|
||||
"sqlalchemy[asyncio]>=2.0.41", # server - for conversations
|
||||
"aiosqlite>=0.21.0", # server - for metadata store
|
||||
"asyncpg", # for metadata store
|
||||
"sqlalchemy[asyncio]>=2.0.41", # server - for conversations
|
||||
]
|
||||
|
||||
[project.optional-dependencies]
|
||||
|
@ -167,6 +167,7 @@ explicit = true
|
|||
[tool.uv.sources]
|
||||
torch = [{ index = "pytorch-cpu" }]
|
||||
torchvision = [{ index = "pytorch-cpu" }]
|
||||
llama-stack-client = { path = "../llama-stack-client-python", editable = true }
|
||||
|
||||
[tool.ruff]
|
||||
line-length = 120
|
||||
|
|
51
uv.lock
generated
51
uv.lock
generated
|
@ -1887,8 +1887,8 @@ requires-dist = [
|
|||
{ name = "huggingface-hub", specifier = ">=0.34.0,<1.0" },
|
||||
{ name = "jinja2", specifier = ">=3.1.6" },
|
||||
{ name = "jsonschema" },
|
||||
{ name = "llama-stack-client", specifier = ">=0.2.23" },
|
||||
{ name = "llama-stack-client", marker = "extra == 'ui'", specifier = ">=0.2.23" },
|
||||
{ name = "llama-stack-client", editable = "../llama-stack-client-python" },
|
||||
{ name = "llama-stack-client", marker = "extra == 'ui'", editable = "../llama-stack-client-python" },
|
||||
{ name = "openai", specifier = ">=1.107" },
|
||||
{ name = "opentelemetry-exporter-otlp-proto-http", specifier = ">=1.30.0" },
|
||||
{ name = "opentelemetry-sdk", specifier = ">=1.30.0" },
|
||||
|
@ -1997,8 +1997,8 @@ unit = [
|
|||
|
||||
[[package]]
|
||||
name = "llama-stack-client"
|
||||
version = "0.2.23"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
version = "0.3.0a4"
|
||||
source = { editable = "../llama-stack-client-python" }
|
||||
dependencies = [
|
||||
{ name = "anyio" },
|
||||
{ name = "click" },
|
||||
|
@ -2016,10 +2016,47 @@ dependencies = [
|
|||
{ name = "tqdm" },
|
||||
{ name = "typing-extensions" },
|
||||
]
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/9f/8f/306d5fcf2f97b3a6251219b03c194836a2ff4e0fcc8146c9970e50a72cd3/llama_stack_client-0.2.23.tar.gz", hash = "sha256:68f34e8ac8eea6a73ed9d4977d849992b2d8bd835804d770a11843431cd5bf74", size = 322288, upload-time = "2025-09-26T21:11:08.342Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/fa/75/3eb58e092a681804013dbec7b7f549d18f55acf6fd6e6b27de7e249766d8/llama_stack_client-0.2.23-py3-none-any.whl", hash = "sha256:eee42c74eee8f218f9455e5a06d5d4be43f8a8c82a7937ef51ce367f916df847", size = 379809, upload-time = "2025-09-26T21:11:06.856Z" },
|
||||
|
||||
[package.metadata]
|
||||
requires-dist = [
|
||||
{ name = "aiohttp", marker = "extra == 'aiohttp'" },
|
||||
{ name = "anyio", specifier = ">=3.5.0,<5" },
|
||||
{ name = "click" },
|
||||
{ name = "distro", specifier = ">=1.7.0,<2" },
|
||||
{ name = "fire" },
|
||||
{ name = "httpx", specifier = ">=0.23.0,<1" },
|
||||
{ name = "httpx-aiohttp", marker = "extra == 'aiohttp'", specifier = ">=0.1.8" },
|
||||
{ name = "pandas" },
|
||||
{ name = "prompt-toolkit" },
|
||||
{ name = "pyaml" },
|
||||
{ name = "pydantic", specifier = ">=1.9.0,<3" },
|
||||
{ name = "requests" },
|
||||
{ name = "rich" },
|
||||
{ name = "sniffio" },
|
||||
{ name = "termcolor" },
|
||||
{ name = "tqdm" },
|
||||
{ name = "typing-extensions", specifier = ">=4.7,<5" },
|
||||
]
|
||||
provides-extras = ["aiohttp"]
|
||||
|
||||
[package.metadata.requires-dev]
|
||||
dev = [
|
||||
{ name = "black" },
|
||||
{ name = "dirty-equals", specifier = ">=0.6.0" },
|
||||
{ name = "importlib-metadata", specifier = ">=6.7.0" },
|
||||
{ name = "mypy" },
|
||||
{ name = "pre-commit" },
|
||||
{ name = "pyright", specifier = "==1.1.399" },
|
||||
{ name = "pytest", specifier = ">=7.1.1" },
|
||||
{ name = "pytest-asyncio" },
|
||||
{ name = "pytest-xdist", specifier = ">=3.6.1" },
|
||||
{ name = "respx" },
|
||||
{ name = "rich", specifier = ">=13.7.1" },
|
||||
{ name = "ruff" },
|
||||
{ name = "time-machine" },
|
||||
]
|
||||
pydantic-v1 = [{ name = "pydantic", specifier = ">=1.9.0,<2" }]
|
||||
pydantic-v2 = [{ name = "pydantic", specifier = ">=2,<3" }]
|
||||
|
||||
[[package]]
|
||||
name = "locust"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue