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
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ classifiers = [
"Topic :: Security",
]
dependencies = [
"fastapi>=0.140.0",
"uvicorn[standard]>=0.51.0",
"fastapi>=0.140.13",
"uvicorn[standard]>=0.52.0",
"sqlmodel>=0.0.21",
"pydantic-settings>=2.14.2",
"pyjwt>=2.8",
Expand Down Expand Up @@ -53,11 +53,11 @@ dependencies = [
# your LLM_PROVIDER: llm-anthropic (direct Anthropic), llm-bedrock (Anthropic on
# AWS — the anthropic SDK's Bedrock client, pulls boto3), or llm-openai (covers
# LLM_PROVIDER=openai, ollama, and gemini via the OpenAI-compatible surface).
llm-anthropic = ["anthropic>=0.120.0"]
llm-bedrock = ["anthropic[bedrock]>=0.120.0"]
llm-openai = ["openai>=2.48.0"]
llm-anthropic = ["anthropic>=0.120.2"]
llm-bedrock = ["anthropic[bedrock]>=0.120.2"]
llm-openai = ["openai>=2.50.0"]
# Install every provider SDK at once (used by the container image).
llm-all = ["anthropic[bedrock]>=0.120.0", "openai>=2.48.0"]
llm-all = ["anthropic[bedrock]>=0.120.2", "openai>=2.50.0"]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
Expand All @@ -75,8 +75,8 @@ dev = [
"pytest-playwright>=0.7",
# All provider SDKs so a dev env can run/smoke any LLM_PROVIDER (the test suite
# itself mocks providers and needs none of these).
"anthropic[bedrock]>=0.120.0",
"openai>=2.48.0",
"anthropic[bedrock]>=0.120.2",
"openai>=2.50.0",
]

[project.scripts]
Expand Down
42 changes: 21 additions & 21 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading