├── .env.example ├── .gitignore ├── Dockerfile ├── README.md ├── auth └── put your auth file here ├── docker-compose.yml ├── main.py ├── main.spec ├── model_mapping.json ├── proxy_server.py └── requirements.txt /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheValkyrja/Anthropic2Vertex/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheValkyrja/Anthropic2Vertex/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheValkyrja/Anthropic2Vertex/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheValkyrja/Anthropic2Vertex/HEAD/README.md -------------------------------------------------------------------------------- /auth/put your auth file here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheValkyrja/Anthropic2Vertex/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheValkyrja/Anthropic2Vertex/HEAD/main.py -------------------------------------------------------------------------------- /main.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheValkyrja/Anthropic2Vertex/HEAD/main.spec -------------------------------------------------------------------------------- /model_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheValkyrja/Anthropic2Vertex/HEAD/model_mapping.json -------------------------------------------------------------------------------- /proxy_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheValkyrja/Anthropic2Vertex/HEAD/proxy_server.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheValkyrja/Anthropic2Vertex/HEAD/requirements.txt --------------------------------------------------------------------------------