Skip to content
Open
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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:latest
FROM python:3.10-slim

WORKDIR /claude-code-proxy

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies = [
"uvicorn>=0.34.0",
"httpx>=0.25.0",
"pydantic>=2.0.0",
"litellm>=1.77.7",
"litellm>=1.80.0",
"python-dotenv>=1.0.0",
"google-auth>=2.41.1",
"google-cloud-aiplatform>=1.120.0",
Expand Down
3 changes: 2 additions & 1 deletion server.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ def format(self, record):
# List of Gemini models
GEMINI_MODELS = [
"gemini-2.5-flash",
"gemini-2.5-pro"
"gemini-2.5-pro",
"gemini-3-pro-preview",
]

# Helper function to clean schema for Gemini
Expand Down
Loading