diff --git a/.cursorrules b/.cursorrules new file mode 100644 index 00000000..f4b2a5e0 --- /dev/null +++ b/.cursorrules @@ -0,0 +1,105 @@ +# A2A SaaS - Regras e Estrutura do Projeto + +## Tecnologias Principais +- FastAPI: Framework web para construção da API +- SQLAlchemy: ORM para interação com o banco de dados +- Alembic: Sistema de migrações do banco de dados +- PostgreSQL: Banco de dados principal +- Pydantic: Validação e serialização de dados +- Uvicorn: Servidor ASGI para execução da aplicação +- Redis: Cache e gerenciamento de sessões + +## Estrutura do Projeto +``` +src/ +├── api/ +│ └── routes.py # Definição das rotas da API +├── config/ +│ ├── database.py # Configuração do banco de dados +│ └── settings.py # Configurações gerais +├── core/ +│ └── middleware.py # Middleware de autenticação +├── models/ +│ └── models.py # Modelos SQLAlchemy +├── schemas/ +│ └── schemas.py # Schemas Pydantic +└── services/ + ├── agent_service.py # Lógica de negócio para agentes + ├── client_service.py # Lógica de negócio para clientes + ├── contact_service.py # Lógica de negócio para contatos + ├── mcp_server_service.py # Lógica de negócio para servidores MCP + └── tool_service.py # Lógica de negócio para ferramentas +``` + +## Padrões de Código + +### Schemas (Pydantic) +- Usar `BaseModel` como base para todos os schemas +- Definir campos com tipos explícitos +- Usar `Optional` para campos opcionais +- Usar `Field` para validações e valores padrão +- Implementar `Config` com `from_attributes = True` para modelos + +### Serviços +- Tratamento de erros com `SQLAlchemyError` +- Logging consistente com mensagens em português +- Tipagem forte com `Optional` para retornos nulos +- Documentação com docstrings +- Rollback em caso de erro +- Retornos padronizados + +### Rotas +- Status codes apropriados (201 para criação, 204 para deleção) +- Tratamento de erros com `HTTPException` +- Mensagens de erro em português +- Paginação nas listagens +- Validação de entrada com schemas +- Autenticação via API Key em todas as rotas + +### Migrações +- Usar Alembic para gerenciamento de migrações +- Nomes descritivos para as migrações +- Manter histórico de alterações +- Usar CASCADE quando necessário para remover dependências + +### Autenticação +- Usar API Key para autenticação +- Gerar API Key automaticamente no primeiro acesso +- Armazenar API Key no arquivo .env +- Validar API Key em todas as rotas +- Logging de tentativas de acesso inválidas + +### Variáveis de Ambiente +- Usar arquivo .env para configurações sensíveis +- Manter .env.example atualizado +- Documentar todas as variáveis de ambiente +- Usar valores padrão seguros +- Validar variáveis obrigatórias + +## Convenções +- Nomes de variáveis e funções em inglês +- Mensagens de log e erro em português +- Documentação em português +- Indentação com 4 espaços +- Máximo de 79 caracteres por linha + +## Boas Práticas +- Sempre validar entrada de dados +- Implementar logging adequado +- Tratar todos os erros possíveis +- Manter consistência nos retornos +- Documentar funções e classes +- Seguir princípios SOLID +- Manter testes atualizados +- Proteger rotas com autenticação +- Usar variáveis de ambiente para configurações sensíveis + +## Comandos Úteis +- `make run`: Inicia o servidor +- `make alembic-revision message="descrição"`: Cria nova migração +- `make alembic-upgrade`: Aplica migrações pendentes +- `make alembic-downgrade`: Reverte última migração +- `make alembic-migrate`: Cria e aplica nova migração +- `make alembic-reset`: Reseta o banco de dados para o estado inicial +- `make alembic-upgrade-cascade`: Força upgrade removendo dependências +- `make clear-cache`: Limpa cache do projeto diff --git a/.env b/.env index 1732d398..e389366c 100644 --- a/.env +++ b/.env @@ -1,14 +1,33 @@ -OPENAI_API_KEY=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 +API_TITLE="Evo API" +API_DESCRIPTION="API para execução de agentes de IA" +API_VERSION="1.0.0" -POSTGRES_CONNECTION_STRING=postgresql://postgres:root@localhost:5432/evo_ai +# Configurações do banco de dados +POSTGRES_CONNECTION_STRING="postgresql://postgres:root@localhost:5432/evo_ai" -TENANT_ID=45cffb85-51c8-41ed-aa8d-710970a7ce50 -KNOWLEDGE_API_URL=http://localhost:5540 -KNOWLEDGE_API_KEY=79405047-7a5e-4b18-b25a-4af149d747dc +# Configurações de logging +LOG_LEVEL="INFO" +LOG_DIR="logs" -REDIS_HOST=localhost +# Configurações da API de Conhecimento +KNOWLEDGE_API_URL="http://localhost:5540" +KNOWLEDGE_API_KEY="sua-chave-api-conhecimento" +TENANT_ID="seu-tenant-id" + +# Configurações do Redis +REDIS_HOST="localhost" REDIS_PORT=6379 -REDIS_DB=3 -REDIS_PASSWORD= +REDIS_DB=8 +REDIS_PASSWORD="" -LOG_LEVEL=DEBUG \ No newline at end of file +# TTL do cache de ferramentas em segundos (1 hora) +TOOLS_CACHE_TTL=3600 + +# Configurações da API +API_KEY="e9f6ef0a-425e-4d32-bdb6-1c917da6e649" +API_KEY_HEADER="X-API-Key" + +# Configurações do Servidor +HOST="0.0.0.0" +PORT=8000 +DEBUG=false diff --git a/.env.example b/.env.example new file mode 100644 index 00000000..580cd674 --- /dev/null +++ b/.env.example @@ -0,0 +1,24 @@ +# Configurações do banco de dados +POSTGRES_CONNECTION_STRING="postgresql://postgres:root@localhost:5432/evo_ai" + +# Configurações de logging +LOG_LEVEL="INFO" +LOG_DIR="logs" + +# Configurações do Redis +REDIS_HOST="localhost" +REDIS_PORT=6379 +REDIS_DB=0 +REDIS_PASSWORD="sua-senha-redis" + +# TTL do cache de ferramentas em segundos (1 hora) +TOOLS_CACHE_TTL=3600 + +# Configurações da API +API_KEY="sua-api-key-gerada-automaticamente" +API_KEY_HEADER="X-API-Key" + +# Configurações do Servidor +HOST="0.0.0.0" +PORT=8000 +DEBUG=false diff --git a/.venv/lib/python3.10/site-packages/__pycache__/google_auth_httplib2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/__pycache__/google_auth_httplib2.cpython-310.pyc deleted file mode 100644 index 7c896c57..00000000 Binary files a/.venv/lib/python3.10/site-packages/__pycache__/google_auth_httplib2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/__pycache__/six.cpython-310.pyc b/.venv/lib/python3.10/site-packages/__pycache__/six.cpython-310.pyc index 41035f63..6ed34f5e 100644 Binary files a/.venv/lib/python3.10/site-packages/__pycache__/six.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/__pycache__/six.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/__pycache__/typing_extensions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/__pycache__/typing_extensions.cpython-310.pyc index f5847311..db219224 100644 Binary files a/.venv/lib/python3.10/site-packages/__pycache__/typing_extensions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/__pycache__/typing_extensions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index cf3fbb73..00000000 Binary files a/.venv/lib/python3.10/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc b/.venv/lib/python3.10/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc deleted file mode 100644 index f7396490..00000000 Binary files a/.venv/lib/python3.10/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/_yaml/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/_yaml/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 6cf65b5f..00000000 Binary files a/.venv/lib/python3.10/site-packages/_yaml/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/__init__.cpython-310.pyc index e2ebd7b0..e8803b08 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/_staggered.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/_staggered.cpython-310.pyc index d02a68b3..4f2d7e98 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/_staggered.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/_staggered.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/impl.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/impl.cpython-310.pyc index a36b5d9f..cb687ae0 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/impl.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/impl.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/types.cpython-310.pyc index 380bae60..e36bde1b 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/types.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/types.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/utils.cpython-310.pyc index 48258190..a3b8c800 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/__init__.cpython-310.pyc index a0241dc4..6504d14c 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/abc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/abc.cpython-310.pyc index 809bfd90..c79492dc 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/abc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/abc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/base_protocol.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/base_protocol.cpython-310.pyc index ab0d63c7..9f3eaccd 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/base_protocol.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/base_protocol.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client.cpython-310.pyc index 96b52855..0a19d269 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client_exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client_exceptions.cpython-310.pyc index 1c010cc8..4402d663 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client_exceptions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client_exceptions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client_proto.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client_proto.cpython-310.pyc index 8a96b9b6..9d7dd3c3 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client_proto.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client_proto.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client_reqrep.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client_reqrep.cpython-310.pyc index 7dfcc50b..a3f11e52 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client_reqrep.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client_reqrep.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client_ws.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client_ws.cpython-310.pyc index b4841212..e4fe22a3 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client_ws.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client_ws.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/compression_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/compression_utils.cpython-310.pyc index 9122b199..4841bc55 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/compression_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/compression_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/connector.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/connector.cpython-310.pyc index 441ef547..aeb73cf4 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/connector.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/connector.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/cookiejar.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/cookiejar.cpython-310.pyc index e9f3fcc3..f26ec9ce 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/cookiejar.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/cookiejar.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/formdata.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/formdata.cpython-310.pyc index 4338ef94..063f8d6c 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/formdata.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/formdata.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/hdrs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/hdrs.cpython-310.pyc index c19c2c52..2c6a4c23 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/hdrs.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/hdrs.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/helpers.cpython-310.pyc index 25da5d01..99944f99 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/helpers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/helpers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http.cpython-310.pyc index 5523fc6d..88219b14 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http_exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http_exceptions.cpython-310.pyc index 6b224132..8eaddea1 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http_exceptions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http_exceptions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http_parser.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http_parser.cpython-310.pyc index e3787a69..c6cec72b 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http_parser.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http_parser.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http_websocket.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http_websocket.cpython-310.pyc index 8a36c8ae..c571026e 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http_websocket.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http_websocket.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http_writer.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http_writer.cpython-310.pyc index 1510b337..82f53d59 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http_writer.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http_writer.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/log.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/log.cpython-310.pyc index 2cd36030..14288e0c 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/log.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/log.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/multipart.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/multipart.cpython-310.pyc index 9c6195c2..3676bdb9 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/multipart.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/multipart.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/payload.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/payload.cpython-310.pyc index 413cfd9a..0f92497b 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/payload.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/payload.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/payload_streamer.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/payload_streamer.cpython-310.pyc index 6b189a2b..3c8b18d7 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/payload_streamer.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/payload_streamer.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/pytest_plugin.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/pytest_plugin.cpython-310.pyc deleted file mode 100644 index 8dead291..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/pytest_plugin.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/resolver.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/resolver.cpython-310.pyc index 1bd1e92e..ca7e7d70 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/resolver.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/resolver.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/streams.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/streams.cpython-310.pyc index f7fcbe45..45460c84 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/streams.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/streams.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/tcp_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/tcp_helpers.cpython-310.pyc index 6b4462fa..4f6d989e 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/tcp_helpers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/tcp_helpers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/test_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/test_utils.cpython-310.pyc deleted file mode 100644 index d4b70179..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/test_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/tracing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/tracing.cpython-310.pyc index 3b933f97..aff14c5e 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/tracing.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/tracing.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/typedefs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/typedefs.cpython-310.pyc index 37c04d02..97e51254 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/typedefs.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/typedefs.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web.cpython-310.pyc deleted file mode 100644 index 01b537bd..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_app.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_app.cpython-310.pyc deleted file mode 100644 index 62c75f51..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_app.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_exceptions.cpython-310.pyc deleted file mode 100644 index a3e6ba45..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_exceptions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_fileresponse.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_fileresponse.cpython-310.pyc deleted file mode 100644 index 0c465bf1..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_fileresponse.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_log.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_log.cpython-310.pyc deleted file mode 100644 index e3374818..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_log.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_middlewares.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_middlewares.cpython-310.pyc deleted file mode 100644 index b1ce4944..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_middlewares.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_protocol.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_protocol.cpython-310.pyc deleted file mode 100644 index 758a43cd..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_protocol.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_request.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_request.cpython-310.pyc deleted file mode 100644 index d14256ba..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_request.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_response.cpython-310.pyc deleted file mode 100644 index 18d28b70..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_routedef.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_routedef.cpython-310.pyc deleted file mode 100644 index cb45a7fe..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_routedef.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_runner.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_runner.cpython-310.pyc deleted file mode 100644 index bdadd310..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_runner.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_server.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_server.cpython-310.pyc deleted file mode 100644 index 2a0472a4..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_server.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_urldispatcher.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_urldispatcher.cpython-310.pyc deleted file mode 100644 index bdb8b0fe..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_urldispatcher.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_ws.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_ws.cpython-310.pyc deleted file mode 100644 index d77c1507..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/web_ws.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/worker.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/worker.cpython-310.pyc deleted file mode 100644 index e1ba154b..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/worker.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/__init__.cpython-310.pyc index 3d666b3c..2ebe6ab4 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/helpers.cpython-310.pyc index fa285e6c..5ebfaeb3 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/helpers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/helpers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/models.cpython-310.pyc index 95934b1c..3dd162aa 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/models.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/models.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/reader.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/reader.cpython-310.pyc index d2045da5..9fc25f7e 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/reader.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/reader.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/reader_c.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/reader_c.cpython-310.pyc deleted file mode 100644 index 27d18209..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/reader_c.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/reader_py.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/reader_py.cpython-310.pyc deleted file mode 100644 index 99868279..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/reader_py.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/writer.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/writer.cpython-310.pyc index 01158787..3bcb9372 100644 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/writer.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/writer.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/aiosignal/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/aiosignal/__pycache__/__init__.cpython-310.pyc index 7bf3831d..ab176276 100644 Binary files a/.venv/lib/python3.10/site-packages/aiosignal/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/aiosignal/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/annotated_types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/annotated_types/__pycache__/__init__.cpython-310.pyc index 1cc697a2..ba83553b 100644 Binary files a/.venv/lib/python3.10/site-packages/annotated_types/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/annotated_types/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/annotated_types/__pycache__/test_cases.cpython-310.pyc b/.venv/lib/python3.10/site-packages/annotated_types/__pycache__/test_cases.cpython-310.pyc deleted file mode 100644 index 904f7d24..00000000 Binary files a/.venv/lib/python3.10/site-packages/annotated_types/__pycache__/test_cases.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/anyio/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/__pycache__/__init__.cpython-310.pyc index 6c232ebc..0567321f 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/__pycache__/from_thread.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/__pycache__/from_thread.cpython-310.pyc index 589a2a5c..d0a740b4 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/__pycache__/from_thread.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/__pycache__/from_thread.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/__pycache__/lowlevel.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/__pycache__/lowlevel.cpython-310.pyc index 5bc1dae3..ef05dfb3 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/__pycache__/lowlevel.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/__pycache__/lowlevel.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/__pycache__/pytest_plugin.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/__pycache__/pytest_plugin.cpython-310.pyc deleted file mode 100644 index f25bcc43..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/__pycache__/pytest_plugin.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/anyio/__pycache__/to_interpreter.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/__pycache__/to_interpreter.cpython-310.pyc deleted file mode 100644 index 711479de..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/__pycache__/to_interpreter.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/anyio/__pycache__/to_process.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/__pycache__/to_process.cpython-310.pyc deleted file mode 100644 index 29aa1181..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/__pycache__/to_process.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/anyio/__pycache__/to_thread.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/__pycache__/to_thread.cpython-310.pyc index 135a9ec0..f6e5b4e2 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/__pycache__/to_thread.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/__pycache__/to_thread.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/_backends/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/_backends/__pycache__/__init__.cpython-310.pyc index d8e9d21f..da7eadc4 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/_backends/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/_backends/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/_backends/__pycache__/_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/_backends/__pycache__/_asyncio.cpython-310.pyc index a0a724da..aeca46cd 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/_backends/__pycache__/_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/_backends/__pycache__/_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/_backends/__pycache__/_trio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/_backends/__pycache__/_trio.cpython-310.pyc deleted file mode 100644 index bb2e658e..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/_backends/__pycache__/_trio.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/__init__.cpython-310.pyc index 5772f118..367192d6 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_asyncio_selector_thread.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_asyncio_selector_thread.cpython-310.pyc deleted file mode 100644 index c716866a..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_asyncio_selector_thread.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_eventloop.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_eventloop.cpython-310.pyc index 51a7e261..3bdf5dbc 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_eventloop.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_eventloop.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_exceptions.cpython-310.pyc index 5944fbd7..70e1bd7f 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_exceptions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_exceptions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_fileio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_fileio.cpython-310.pyc index 30ea0731..d7fe49cf 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_fileio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_fileio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_resources.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_resources.cpython-310.pyc index 369db522..1adf3dd7 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_resources.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_resources.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_signals.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_signals.cpython-310.pyc index 192394c6..eaa4c951 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_signals.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_signals.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_sockets.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_sockets.cpython-310.pyc index 8b23f28b..f76495d8 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_sockets.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_sockets.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_streams.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_streams.cpython-310.pyc index c16ae7f9..3a105ec5 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_streams.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_streams.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_subprocesses.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_subprocesses.cpython-310.pyc index 666a735d..b425a74b 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_subprocesses.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_subprocesses.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_synchronization.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_synchronization.cpython-310.pyc index 5aa6542c..1f9c6ff0 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_synchronization.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_synchronization.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_tasks.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_tasks.cpython-310.pyc index 35a3221d..5ecf0a49 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_tasks.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_tasks.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_tempfile.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_tempfile.cpython-310.pyc index 0bf783a2..35ec1ec8 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_tempfile.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_tempfile.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_testing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_testing.cpython-310.pyc index 7618b018..641b8001 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_testing.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_testing.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_typedattr.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_typedattr.cpython-310.pyc index 6f6dbec8..18017d17 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_typedattr.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_typedattr.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/__init__.cpython-310.pyc index 6868359f..114576b4 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_eventloop.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_eventloop.cpython-310.pyc index ebf0add4..b888d170 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_eventloop.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_eventloop.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_resources.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_resources.cpython-310.pyc index 466ba7f3..74ae011c 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_resources.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_resources.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_sockets.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_sockets.cpython-310.pyc index 0385c110..a880b067 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_sockets.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_sockets.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_streams.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_streams.cpython-310.pyc index 3f539d3a..b712f1ea 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_streams.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_streams.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_subprocesses.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_subprocesses.cpython-310.pyc index 0bc18fc6..f0a7fbdb 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_subprocesses.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_subprocesses.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_tasks.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_tasks.cpython-310.pyc index e3873e72..6aeff366 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_tasks.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_tasks.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_testing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_testing.cpython-310.pyc index a4f7e525..fc932ffc 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_testing.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_testing.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/__init__.cpython-310.pyc index 3bae2036..01b6339f 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/buffered.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/buffered.cpython-310.pyc deleted file mode 100644 index 4693eede..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/buffered.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/file.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/file.cpython-310.pyc deleted file mode 100644 index 1d6c3d22..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/file.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/memory.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/memory.cpython-310.pyc index 4ab3953f..7175e620 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/memory.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/memory.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/stapled.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/stapled.cpython-310.pyc index aa00d9a2..0471239f 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/stapled.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/stapled.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/text.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/text.cpython-310.pyc index ac6e5f0f..9f044ff5 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/text.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/text.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/tls.cpython-310.pyc b/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/tls.cpython-310.pyc index 7fae432f..d3464734 100644 Binary files a/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/tls.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/tls.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/apiclient/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/apiclient/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 50d39646..00000000 Binary files a/.venv/lib/python3.10/site-packages/apiclient/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/async_timeout/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/async_timeout/__pycache__/__init__.cpython-310.pyc index d45066a3..2d3ac204 100644 Binary files a/.venv/lib/python3.10/site-packages/async_timeout/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/async_timeout/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/attr/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/attr/__pycache__/__init__.cpython-310.pyc index d00ecdaf..fdc25b79 100644 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/attr/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/attr/__pycache__/_cmp.cpython-310.pyc b/.venv/lib/python3.10/site-packages/attr/__pycache__/_cmp.cpython-310.pyc index 34e658e7..5d971fb9 100644 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/_cmp.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/attr/__pycache__/_cmp.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/attr/__pycache__/_compat.cpython-310.pyc b/.venv/lib/python3.10/site-packages/attr/__pycache__/_compat.cpython-310.pyc index 4f2cb158..2e7224d1 100644 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/_compat.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/attr/__pycache__/_compat.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/attr/__pycache__/_config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/attr/__pycache__/_config.cpython-310.pyc index e46329aa..a9ff9d41 100644 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/_config.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/attr/__pycache__/_config.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/attr/__pycache__/_funcs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/attr/__pycache__/_funcs.cpython-310.pyc index 7b73e8f4..75bce077 100644 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/_funcs.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/attr/__pycache__/_funcs.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/attr/__pycache__/_make.cpython-310.pyc b/.venv/lib/python3.10/site-packages/attr/__pycache__/_make.cpython-310.pyc index 3155cdd8..96500338 100644 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/_make.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/attr/__pycache__/_make.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/attr/__pycache__/_next_gen.cpython-310.pyc b/.venv/lib/python3.10/site-packages/attr/__pycache__/_next_gen.cpython-310.pyc index b70bb1a5..8817ac80 100644 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/_next_gen.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/attr/__pycache__/_next_gen.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/attr/__pycache__/_version_info.cpython-310.pyc b/.venv/lib/python3.10/site-packages/attr/__pycache__/_version_info.cpython-310.pyc index c39c1e24..557a59e6 100644 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/_version_info.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/attr/__pycache__/_version_info.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/attr/__pycache__/converters.cpython-310.pyc b/.venv/lib/python3.10/site-packages/attr/__pycache__/converters.cpython-310.pyc index 3ccd34ed..164b77f6 100644 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/converters.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/attr/__pycache__/converters.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/attr/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/attr/__pycache__/exceptions.cpython-310.pyc index d42c231a..206ea41a 100644 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/exceptions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/attr/__pycache__/exceptions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/attr/__pycache__/filters.cpython-310.pyc b/.venv/lib/python3.10/site-packages/attr/__pycache__/filters.cpython-310.pyc index 7d1b3c46..13864740 100644 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/filters.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/attr/__pycache__/filters.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/attr/__pycache__/setters.cpython-310.pyc b/.venv/lib/python3.10/site-packages/attr/__pycache__/setters.cpython-310.pyc index 9f049ec6..4a1b74a8 100644 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/setters.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/attr/__pycache__/setters.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/attr/__pycache__/validators.cpython-310.pyc b/.venv/lib/python3.10/site-packages/attr/__pycache__/validators.cpython-310.pyc index 227ea485..bc71b2ac 100644 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/validators.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/attr/__pycache__/validators.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/attrs/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/attrs/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 8312dc5b..00000000 Binary files a/.venv/lib/python3.10/site-packages/attrs/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/attrs/__pycache__/converters.cpython-310.pyc b/.venv/lib/python3.10/site-packages/attrs/__pycache__/converters.cpython-310.pyc deleted file mode 100644 index ead1873c..00000000 Binary files a/.venv/lib/python3.10/site-packages/attrs/__pycache__/converters.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/attrs/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/attrs/__pycache__/exceptions.cpython-310.pyc deleted file mode 100644 index 4b8e1665..00000000 Binary files a/.venv/lib/python3.10/site-packages/attrs/__pycache__/exceptions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/attrs/__pycache__/filters.cpython-310.pyc b/.venv/lib/python3.10/site-packages/attrs/__pycache__/filters.cpython-310.pyc deleted file mode 100644 index ced571dd..00000000 Binary files a/.venv/lib/python3.10/site-packages/attrs/__pycache__/filters.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/attrs/__pycache__/setters.cpython-310.pyc b/.venv/lib/python3.10/site-packages/attrs/__pycache__/setters.cpython-310.pyc deleted file mode 100644 index dd865e42..00000000 Binary files a/.venv/lib/python3.10/site-packages/attrs/__pycache__/setters.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/attrs/__pycache__/validators.cpython-310.pyc b/.venv/lib/python3.10/site-packages/attrs/__pycache__/validators.cpython-310.pyc deleted file mode 100644 index 9fc3d481..00000000 Binary files a/.venv/lib/python3.10/site-packages/attrs/__pycache__/validators.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/__pycache__/__init__.cpython-310.pyc index a9e66f8a..ced851dd 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/__pycache__/consts.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/__pycache__/consts.cpython-310.pyc index 61a6cd7d..91cb535d 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/__pycache__/consts.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/__pycache__/consts.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/__pycache__/deprecate.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/__pycache__/deprecate.cpython-310.pyc index 21c84a98..b91a9f73 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/__pycache__/deprecate.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/__pycache__/deprecate.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/__init__.cpython-310.pyc index 988667da..d1ff8473 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/encoding.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/encoding.cpython-310.pyc index 82be75e1..6005c487 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/encoding.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/encoding.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/errors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/errors.cpython-310.pyc index 8a4dedd6..95f99d9a 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/errors.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/errors.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/security.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/security.cpython-310.pyc index fc65a42b..4bb0e9db 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/security.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/security.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/urls.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/urls.cpython-310.pyc index 6de4c0ae..a642525a 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/urls.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/urls.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/__pycache__/__init__.cpython-310.pyc index b809dfce..6c226b94 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/integrations/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/__init__.cpython-310.pyc index 71df4f8f..177aa4f9 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/async_app.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/async_app.cpython-310.pyc deleted file mode 100644 index 142f98d0..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/async_app.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/async_openid.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/async_openid.cpython-310.pyc deleted file mode 100644 index 84095ccc..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/async_openid.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/errors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/errors.cpython-310.pyc index daaf4463..adbcf88b 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/errors.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/errors.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/framework_integration.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/framework_integration.cpython-310.pyc index eaab7bc4..926f451b 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/framework_integration.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/framework_integration.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/registry.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/registry.cpython-310.pyc index bac33faa..d46004a8 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/registry.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/registry.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/sync_app.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/sync_app.cpython-310.pyc index 4cdb39a2..24d8924b 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/sync_app.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/sync_app.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/sync_openid.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/sync_openid.cpython-310.pyc index 5dd7e2ee..350e043a 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/sync_openid.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/sync_openid.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/django_client/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/django_client/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index e41679a0..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/django_client/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/django_client/__pycache__/apps.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/django_client/__pycache__/apps.cpython-310.pyc deleted file mode 100644 index affd2b79..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/django_client/__pycache__/apps.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/django_client/__pycache__/integration.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/django_client/__pycache__/integration.cpython-310.pyc deleted file mode 100644 index cc33e451..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/django_client/__pycache__/integration.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth1/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 4de56d57..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth1/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth1/__pycache__/authorization_server.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth1/__pycache__/authorization_server.cpython-310.pyc deleted file mode 100644 index c950a5ab..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth1/__pycache__/authorization_server.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth1/__pycache__/nonce.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth1/__pycache__/nonce.cpython-310.pyc deleted file mode 100644 index d5bb209d..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth1/__pycache__/nonce.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth1/__pycache__/resource_protector.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth1/__pycache__/resource_protector.cpython-310.pyc deleted file mode 100644 index e55f9fdc..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth1/__pycache__/resource_protector.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth2/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth2/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 92f3686d..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth2/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth2/__pycache__/authorization_server.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth2/__pycache__/authorization_server.cpython-310.pyc deleted file mode 100644 index 4e439e1e..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth2/__pycache__/authorization_server.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth2/__pycache__/endpoints.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth2/__pycache__/endpoints.cpython-310.pyc deleted file mode 100644 index 7771a594..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth2/__pycache__/endpoints.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth2/__pycache__/requests.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth2/__pycache__/requests.cpython-310.pyc deleted file mode 100644 index 467173e9..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth2/__pycache__/requests.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth2/__pycache__/resource_protector.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth2/__pycache__/resource_protector.cpython-310.pyc deleted file mode 100644 index 10df8231..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth2/__pycache__/resource_protector.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth2/__pycache__/signals.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth2/__pycache__/signals.cpython-310.pyc deleted file mode 100644 index 35fae861..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/django_oauth2/__pycache__/signals.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_client/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/flask_client/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 98285f4e..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_client/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_client/__pycache__/apps.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/flask_client/__pycache__/apps.cpython-310.pyc deleted file mode 100644 index c94d543d..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_client/__pycache__/apps.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_client/__pycache__/integration.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/flask_client/__pycache__/integration.cpython-310.pyc deleted file mode 100644 index ef0991e6..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_client/__pycache__/integration.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth1/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 5ee0921c..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth1/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth1/__pycache__/authorization_server.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth1/__pycache__/authorization_server.cpython-310.pyc deleted file mode 100644 index df54b950..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth1/__pycache__/authorization_server.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth1/__pycache__/cache.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth1/__pycache__/cache.cpython-310.pyc deleted file mode 100644 index 6df0ebbf..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth1/__pycache__/cache.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth1/__pycache__/resource_protector.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth1/__pycache__/resource_protector.cpython-310.pyc deleted file mode 100644 index a4845bcc..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth1/__pycache__/resource_protector.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth2/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth2/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 34834e87..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth2/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth2/__pycache__/authorization_server.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth2/__pycache__/authorization_server.cpython-310.pyc deleted file mode 100644 index 3fcadbf7..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth2/__pycache__/authorization_server.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth2/__pycache__/errors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth2/__pycache__/errors.cpython-310.pyc deleted file mode 100644 index dc66d1d1..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth2/__pycache__/errors.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth2/__pycache__/requests.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth2/__pycache__/requests.cpython-310.pyc deleted file mode 100644 index f16363dd..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth2/__pycache__/requests.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth2/__pycache__/resource_protector.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth2/__pycache__/resource_protector.cpython-310.pyc deleted file mode 100644 index 30e396d3..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth2/__pycache__/resource_protector.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth2/__pycache__/signals.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth2/__pycache__/signals.cpython-310.pyc deleted file mode 100644 index a830d429..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/flask_oauth2/__pycache__/signals.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/httpx_client/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/httpx_client/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index c15f0bc2..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/httpx_client/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/httpx_client/__pycache__/assertion_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/httpx_client/__pycache__/assertion_client.cpython-310.pyc deleted file mode 100644 index 8afd4f10..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/httpx_client/__pycache__/assertion_client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/httpx_client/__pycache__/oauth1_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/httpx_client/__pycache__/oauth1_client.cpython-310.pyc deleted file mode 100644 index 9db8015d..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/httpx_client/__pycache__/oauth1_client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/httpx_client/__pycache__/oauth2_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/httpx_client/__pycache__/oauth2_client.cpython-310.pyc deleted file mode 100644 index 0e1eedce..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/httpx_client/__pycache__/oauth2_client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/httpx_client/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/httpx_client/__pycache__/utils.cpython-310.pyc deleted file mode 100644 index ec053908..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/httpx_client/__pycache__/utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/__init__.cpython-310.pyc index 54b5ea15..5575c1b3 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/assertion_session.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/assertion_session.cpython-310.pyc index 2f8c2bda..176c613f 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/assertion_session.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/assertion_session.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/oauth1_session.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/oauth1_session.cpython-310.pyc index 3046db0e..f73d0354 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/oauth1_session.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/oauth1_session.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/oauth2_session.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/oauth2_session.cpython-310.pyc index 5d7c641f..aa247f12 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/oauth2_session.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/oauth2_session.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/utils.cpython-310.pyc index 5dcf5017..114dd1e6 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/sqla_oauth2/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/sqla_oauth2/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 76a40a2a..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/sqla_oauth2/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/sqla_oauth2/__pycache__/client_mixin.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/sqla_oauth2/__pycache__/client_mixin.cpython-310.pyc deleted file mode 100644 index 8f9d8557..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/sqla_oauth2/__pycache__/client_mixin.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/sqla_oauth2/__pycache__/functions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/sqla_oauth2/__pycache__/functions.cpython-310.pyc deleted file mode 100644 index 4f39646b..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/sqla_oauth2/__pycache__/functions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/sqla_oauth2/__pycache__/tokens_mixins.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/sqla_oauth2/__pycache__/tokens_mixins.cpython-310.pyc deleted file mode 100644 index 7bacd426..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/sqla_oauth2/__pycache__/tokens_mixins.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/starlette_client/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/starlette_client/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 18d6ed87..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/starlette_client/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/starlette_client/__pycache__/apps.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/starlette_client/__pycache__/apps.cpython-310.pyc deleted file mode 100644 index 04f675a6..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/starlette_client/__pycache__/apps.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/integrations/starlette_client/__pycache__/integration.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/integrations/starlette_client/__pycache__/integration.cpython-310.pyc deleted file mode 100644 index d6b86dea..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/starlette_client/__pycache__/integration.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/__pycache__/__init__.cpython-310.pyc index 6cfa4dad..05efde3d 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/__pycache__/errors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/__pycache__/errors.cpython-310.pyc index d519801e..544c243a 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/__pycache__/errors.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/__pycache__/errors.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/__pycache__/jwk.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/__pycache__/jwk.cpython-310.pyc deleted file mode 100644 index e208edd7..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/__pycache__/jwk.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/__pycache__/util.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/__pycache__/util.cpython-310.pyc index 4c43d8e9..193ce2cd 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/__pycache__/util.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/__pycache__/util.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/drafts/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/drafts/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index e7b43ab8..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/drafts/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/drafts/__pycache__/_jwe_algorithms.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/drafts/__pycache__/_jwe_algorithms.cpython-310.pyc deleted file mode 100644 index 7f617d73..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/drafts/__pycache__/_jwe_algorithms.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/drafts/__pycache__/_jwe_enc_cryptodome.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/drafts/__pycache__/_jwe_enc_cryptodome.cpython-310.pyc deleted file mode 100644 index 35905cb8..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/drafts/__pycache__/_jwe_enc_cryptodome.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/drafts/__pycache__/_jwe_enc_cryptography.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/drafts/__pycache__/_jwe_enc_cryptography.cpython-310.pyc deleted file mode 100644 index 724a0c99..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/drafts/__pycache__/_jwe_enc_cryptography.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7515/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7515/__pycache__/__init__.cpython-310.pyc index b594bb28..258f145f 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7515/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7515/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7515/__pycache__/jws.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7515/__pycache__/jws.cpython-310.pyc index 8683e845..e72b9167 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7515/__pycache__/jws.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7515/__pycache__/jws.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7515/__pycache__/models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7515/__pycache__/models.cpython-310.pyc index 857c155a..9730a711 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7515/__pycache__/models.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7515/__pycache__/models.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7516/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7516/__pycache__/__init__.cpython-310.pyc index 55b7242d..bdc3ba1c 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7516/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7516/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7516/__pycache__/jwe.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7516/__pycache__/jwe.cpython-310.pyc index 91dc733b..d5ed170a 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7516/__pycache__/jwe.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7516/__pycache__/jwe.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7516/__pycache__/models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7516/__pycache__/models.cpython-310.pyc index 1adb3cee..361e6606 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7516/__pycache__/models.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7516/__pycache__/models.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/__init__.cpython-310.pyc index 8017152e..0c09aff0 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/_cryptography_key.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/_cryptography_key.cpython-310.pyc index 1d670bae..f0c4f9bb 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/_cryptography_key.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/_cryptography_key.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/asymmetric_key.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/asymmetric_key.cpython-310.pyc index 1f295933..bc1038df 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/asymmetric_key.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/asymmetric_key.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/base_key.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/base_key.cpython-310.pyc index 6e248b38..f44741f4 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/base_key.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/base_key.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/jwk.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/jwk.cpython-310.pyc index 0beecd99..88219bc6 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/jwk.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/jwk.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/key_set.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/key_set.cpython-310.pyc index 7fd58780..9fc98c43 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/key_set.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/key_set.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/__init__.cpython-310.pyc index eef93c62..3d41e72c 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/ec_key.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/ec_key.cpython-310.pyc index efa6d1ea..98b37055 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/ec_key.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/ec_key.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/jwe_algs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/jwe_algs.cpython-310.pyc index bb96e9c0..6763c4a3 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/jwe_algs.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/jwe_algs.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/jwe_encs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/jwe_encs.cpython-310.pyc index b1b6c30e..d7eabf96 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/jwe_encs.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/jwe_encs.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/jwe_zips.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/jwe_zips.cpython-310.pyc index 295de4f5..00b00307 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/jwe_zips.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/jwe_zips.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/jws_algs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/jws_algs.cpython-310.pyc index 879f911d..814e0b8f 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/jws_algs.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/jws_algs.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/oct_key.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/oct_key.cpython-310.pyc index 907b7c37..9d0db856 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/oct_key.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/oct_key.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/rsa_key.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/rsa_key.cpython-310.pyc index 04484d82..6c815a1a 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/rsa_key.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/rsa_key.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/util.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/util.cpython-310.pyc index 939e6dbb..ca63fb1d 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/util.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/util.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7519/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7519/__pycache__/__init__.cpython-310.pyc index 10db9264..d7e88dc4 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7519/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7519/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7519/__pycache__/claims.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7519/__pycache__/claims.cpython-310.pyc index 18dd96dc..bdd468b3 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7519/__pycache__/claims.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7519/__pycache__/claims.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7519/__pycache__/jwt.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7519/__pycache__/jwt.cpython-310.pyc index 461d8b2b..2e553b8d 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7519/__pycache__/jwt.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc7519/__pycache__/jwt.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc8037/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc8037/__pycache__/__init__.cpython-310.pyc index 77656d09..dd9e74d1 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc8037/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc8037/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc8037/__pycache__/jws_eddsa.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc8037/__pycache__/jws_eddsa.cpython-310.pyc index 6bd862b2..7ec076d0 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc8037/__pycache__/jws_eddsa.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc8037/__pycache__/jws_eddsa.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/jose/rfc8037/__pycache__/okp_key.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/jose/rfc8037/__pycache__/okp_key.cpython-310.pyc index cdc03a61..8ff13436 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc8037/__pycache__/okp_key.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/jose/rfc8037/__pycache__/okp_key.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth1/__pycache__/__init__.cpython-310.pyc index 42bd1112..33fac88e 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth1/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth1/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth1/__pycache__/client.cpython-310.pyc index f0cc0a4e..492b3482 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth1/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth1/__pycache__/errors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth1/__pycache__/errors.cpython-310.pyc deleted file mode 100644 index 003c0cdd..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/__pycache__/errors.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/__init__.cpython-310.pyc index b5eb3220..8b0082b6 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/authorization_server.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/authorization_server.cpython-310.pyc index 0d5c0851..be8054eb 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/authorization_server.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/authorization_server.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/base_server.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/base_server.cpython-310.pyc index 77854062..693dd04c 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/base_server.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/base_server.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/client_auth.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/client_auth.cpython-310.pyc index 0baed155..de6e0e0c 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/client_auth.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/client_auth.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/errors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/errors.cpython-310.pyc index 7787673f..1835dd9a 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/errors.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/errors.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/models.cpython-310.pyc index 1ed8284b..59fd617f 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/models.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/models.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/parameters.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/parameters.cpython-310.pyc index bd5cd6f6..d1f954ad 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/parameters.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/parameters.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/resource_protector.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/resource_protector.cpython-310.pyc index 7b35229c..44d8efc7 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/resource_protector.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/resource_protector.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/rsa.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/rsa.cpython-310.pyc deleted file mode 100644 index ac1a198c..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/rsa.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/signature.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/signature.cpython-310.pyc index aabbeea8..b0384a3a 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/signature.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/signature.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/util.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/util.cpython-310.pyc index 6c2f6b65..9af29504 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/util.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/util.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/wrapper.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/wrapper.cpython-310.pyc index 5cbe738c..fa5983bd 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/wrapper.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/wrapper.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/__pycache__/__init__.cpython-310.pyc index 7f551945..15e1c756 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/__pycache__/auth.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/__pycache__/auth.cpython-310.pyc index 11ea26c4..4226f9f1 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/__pycache__/auth.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/__pycache__/auth.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/__pycache__/base.cpython-310.pyc index 10647acf..40e125e7 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/__pycache__/client.cpython-310.pyc index 9468bac6..518efeec 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/__init__.cpython-310.pyc index 76de1076..7d283910 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/authenticate_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/authenticate_client.cpython-310.pyc index 468e53f2..e15fb427 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/authenticate_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/authenticate_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/authorization_server.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/authorization_server.cpython-310.pyc index 7b75fa89..b8863bbf 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/authorization_server.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/authorization_server.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/errors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/errors.cpython-310.pyc index 9348e92c..d51791a2 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/errors.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/errors.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/models.cpython-310.pyc index d588104a..93eb843f 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/models.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/models.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/parameters.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/parameters.cpython-310.pyc index 76479909..3599af63 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/parameters.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/parameters.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/requests.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/requests.cpython-310.pyc index 0174814d..bd262cce 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/requests.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/requests.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/resource_protector.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/resource_protector.cpython-310.pyc index 922cfa13..ad8ee589 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/resource_protector.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/resource_protector.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/token_endpoint.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/token_endpoint.cpython-310.pyc index 0ac07870..3fc1bfa3 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/token_endpoint.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/token_endpoint.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/util.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/util.cpython-310.pyc index 6ed28a8a..677e2a98 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/util.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/util.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/wrappers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/wrappers.cpython-310.pyc index 257989a8..641318db 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/wrappers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/wrappers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/__init__.cpython-310.pyc index 18252327..9aa3ce6e 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/authorization_code.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/authorization_code.cpython-310.pyc index 77440781..5d5a5314 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/authorization_code.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/authorization_code.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/base.cpython-310.pyc index 1e72a19e..1953bddc 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/client_credentials.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/client_credentials.cpython-310.pyc index ea509368..ff0246f9 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/client_credentials.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/client_credentials.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/implicit.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/implicit.cpython-310.pyc index 38967874..a47d017e 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/implicit.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/implicit.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/refresh_token.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/refresh_token.cpython-310.pyc index 0a86c404..8115b9e6 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/refresh_token.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/refresh_token.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/resource_owner_password_credentials.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/resource_owner_password_credentials.cpython-310.pyc index 5efa0e97..4c22801d 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/resource_owner_password_credentials.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/resource_owner_password_credentials.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/__init__.cpython-310.pyc index 6ce9adea..63338f18 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/errors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/errors.cpython-310.pyc index eb420cc7..a2bee8a3 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/errors.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/errors.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/parameters.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/parameters.cpython-310.pyc index c4e1300b..ed44c9f1 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/parameters.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/parameters.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/token.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/token.cpython-310.pyc index 4cbdb344..c7a53d9b 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/token.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/token.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/validator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/validator.cpython-310.pyc index 2c0edb6f..aed539e0 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/validator.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/validator.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7009/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7009/__pycache__/__init__.cpython-310.pyc index 2e51b9d9..9e50fa38 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7009/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7009/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7009/__pycache__/parameters.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7009/__pycache__/parameters.cpython-310.pyc index 639d9278..aa566a54 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7009/__pycache__/parameters.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7009/__pycache__/parameters.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7009/__pycache__/revocation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7009/__pycache__/revocation.cpython-310.pyc index 88d44597..239e1485 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7009/__pycache__/revocation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7009/__pycache__/revocation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7521/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7521/__pycache__/__init__.cpython-310.pyc index ae9dfaf3..43819127 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7521/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7521/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7521/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7521/__pycache__/client.cpython-310.pyc index a6dd450f..66225759 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7521/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7521/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/__init__.cpython-310.pyc index d3776a68..1d584b96 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/assertion.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/assertion.cpython-310.pyc index 3555bdbc..5ebc19b0 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/assertion.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/assertion.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/auth.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/auth.cpython-310.pyc index f62674df..8ea8e8ff 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/auth.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/auth.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/client.cpython-310.pyc index 74538643..43b20b79 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/jwt_bearer.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/jwt_bearer.cpython-310.pyc index 71e45466..2e4f695f 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/jwt_bearer.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/jwt_bearer.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/token.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/token.cpython-310.pyc index c93d2dfc..0111dcad 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/token.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/token.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/validator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/validator.cpython-310.pyc index 80b24fd0..89748c13 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/validator.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/validator.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7591/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7591/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 65a80461..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7591/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7591/__pycache__/claims.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7591/__pycache__/claims.cpython-310.pyc deleted file mode 100644 index cdd8ce33..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7591/__pycache__/claims.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7591/__pycache__/endpoint.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7591/__pycache__/endpoint.cpython-310.pyc deleted file mode 100644 index e08b01df..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7591/__pycache__/endpoint.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7591/__pycache__/errors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7591/__pycache__/errors.cpython-310.pyc deleted file mode 100644 index b9f48fe6..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7591/__pycache__/errors.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7592/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7592/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index c3aa1584..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7592/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7592/__pycache__/endpoint.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7592/__pycache__/endpoint.cpython-310.pyc deleted file mode 100644 index 61851901..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7592/__pycache__/endpoint.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7636/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7636/__pycache__/__init__.cpython-310.pyc index 5b620430..b09d4de4 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7636/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7636/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7636/__pycache__/challenge.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7636/__pycache__/challenge.cpython-310.pyc index 94618a4f..83ffe56d 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7636/__pycache__/challenge.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7636/__pycache__/challenge.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7662/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7662/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 730c55b7..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7662/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7662/__pycache__/introspection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7662/__pycache__/introspection.cpython-310.pyc deleted file mode 100644 index c5bad431..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7662/__pycache__/introspection.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7662/__pycache__/models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7662/__pycache__/models.cpython-310.pyc deleted file mode 100644 index d53190b5..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7662/__pycache__/models.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7662/__pycache__/token_validator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7662/__pycache__/token_validator.cpython-310.pyc deleted file mode 100644 index b14541b9..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7662/__pycache__/token_validator.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8414/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8414/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 45549734..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8414/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8414/__pycache__/models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8414/__pycache__/models.cpython-310.pyc deleted file mode 100644 index 474ba5c5..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8414/__pycache__/models.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8414/__pycache__/well_known.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8414/__pycache__/well_known.cpython-310.pyc deleted file mode 100644 index 2af34796..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8414/__pycache__/well_known.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8628/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8628/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 81c7a567..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8628/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8628/__pycache__/device_code.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8628/__pycache__/device_code.cpython-310.pyc deleted file mode 100644 index 50e2859a..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8628/__pycache__/device_code.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8628/__pycache__/endpoint.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8628/__pycache__/endpoint.cpython-310.pyc deleted file mode 100644 index aa504c3a..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8628/__pycache__/endpoint.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8628/__pycache__/errors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8628/__pycache__/errors.cpython-310.pyc deleted file mode 100644 index 943b034c..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8628/__pycache__/errors.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8628/__pycache__/models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8628/__pycache__/models.cpython-310.pyc deleted file mode 100644 index 0732f6d1..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8628/__pycache__/models.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8693/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8693/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index a077a8bf..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc8693/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9068/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9068/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index e85c27dd..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9068/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9068/__pycache__/claims.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9068/__pycache__/claims.cpython-310.pyc deleted file mode 100644 index 270bf7b3..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9068/__pycache__/claims.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9068/__pycache__/introspection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9068/__pycache__/introspection.cpython-310.pyc deleted file mode 100644 index 98a88ea5..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9068/__pycache__/introspection.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9068/__pycache__/revocation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9068/__pycache__/revocation.cpython-310.pyc deleted file mode 100644 index e801dd1c..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9068/__pycache__/revocation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9068/__pycache__/token.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9068/__pycache__/token.cpython-310.pyc deleted file mode 100644 index f0ef5434..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9068/__pycache__/token.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9068/__pycache__/token_validator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9068/__pycache__/token_validator.cpython-310.pyc deleted file mode 100644 index bdfa1837..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9068/__pycache__/token_validator.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9207/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9207/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index b527ddf2..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9207/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9207/__pycache__/parameter.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9207/__pycache__/parameter.cpython-310.pyc deleted file mode 100644 index ba0bbfb5..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc9207/__pycache__/parameter.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oidc/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oidc/__pycache__/__init__.cpython-310.pyc index 2ff32d16..6fc6a242 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oidc/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/__init__.cpython-310.pyc index 9a826afa..8e4d4f17 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/claims.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/claims.cpython-310.pyc index 532f1a53..7bfeec3c 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/claims.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/claims.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/errors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/errors.cpython-310.pyc index 0ef503f5..b841a913 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/errors.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/errors.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/models.cpython-310.pyc index 6e9c641d..23ffa283 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/models.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/models.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/util.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/util.cpython-310.pyc index a3e8bd71..8163d8a9 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/util.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/util.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/__init__.cpython-310.pyc index 0fcbb469..cf9678da 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/code.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/code.cpython-310.pyc index d7d02274..2db4dbc6 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/code.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/code.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/hybrid.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/hybrid.cpython-310.pyc index 21a3f7f0..5515fae1 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/hybrid.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/hybrid.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/implicit.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/implicit.cpython-310.pyc index f17b9acc..a3f5e960 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/implicit.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/implicit.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/util.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/util.cpython-310.pyc index 65075559..47efb43d 100644 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/util.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/util.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oidc/discovery/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oidc/discovery/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 4625fc12..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/discovery/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oidc/discovery/__pycache__/models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oidc/discovery/__pycache__/models.cpython-310.pyc deleted file mode 100644 index 62db700c..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/discovery/__pycache__/models.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oidc/discovery/__pycache__/well_known.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oidc/discovery/__pycache__/well_known.cpython-310.pyc deleted file mode 100644 index 52b81617..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/discovery/__pycache__/well_known.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oidc/registration/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oidc/registration/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index ca5e6a62..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/registration/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/authlib/oidc/registration/__pycache__/claims.cpython-310.pyc b/.venv/lib/python3.10/site-packages/authlib/oidc/registration/__pycache__/claims.cpython-310.pyc deleted file mode 100644 index 25f381bf..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/registration/__pycache__/claims.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cachetools/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cachetools/__pycache__/__init__.cpython-310.pyc index daeece36..70a2e2c2 100644 Binary files a/.venv/lib/python3.10/site-packages/cachetools/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cachetools/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cachetools/__pycache__/_decorators.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cachetools/__pycache__/_decorators.cpython-310.pyc index 9038ed14..28447abd 100644 Binary files a/.venv/lib/python3.10/site-packages/cachetools/__pycache__/_decorators.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cachetools/__pycache__/_decorators.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cachetools/__pycache__/func.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cachetools/__pycache__/func.cpython-310.pyc deleted file mode 100644 index fa70622c..00000000 Binary files a/.venv/lib/python3.10/site-packages/cachetools/__pycache__/func.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cachetools/__pycache__/keys.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cachetools/__pycache__/keys.cpython-310.pyc index c963c80a..acfd284f 100644 Binary files a/.venv/lib/python3.10/site-packages/cachetools/__pycache__/keys.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cachetools/__pycache__/keys.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/INSTALLER b/.venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/INSTALLER deleted file mode 100644 index a1b589e3..00000000 --- a/.venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/INSTALLER +++ /dev/null @@ -1 +0,0 @@ -pip diff --git a/.venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/LICENSE b/.venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/LICENSE deleted file mode 100644 index 62b076cd..00000000 --- a/.venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/LICENSE +++ /dev/null @@ -1,20 +0,0 @@ -This package contains a modified version of ca-bundle.crt: - -ca-bundle.crt -- Bundle of CA Root Certificates - -This is a bundle of X.509 certificates of public Certificate Authorities -(CA). These were automatically extracted from Mozilla's root certificates -file (certdata.txt). This file can be found in the mozilla source tree: -https://hg.mozilla.org/mozilla-central/file/tip/security/nss/lib/ckfw/builtins/certdata.txt -It contains the certificates in PEM format and therefore -can be directly used with curl / libcurl / php_curl, or with -an Apache+mod_ssl webserver for SSL client authentication. -Just configure this file as the SSLCACertificateFile.# - -***** BEGIN LICENSE BLOCK ***** -This Source Code Form is subject to the terms of the Mozilla Public License, -v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain -one at http://mozilla.org/MPL/2.0/. - -***** END LICENSE BLOCK ***** -@(#) $RCSfile: certdata.txt,v $ $Revision: 1.80 $ $Date: 2011/11/03 15:11:58 $ diff --git a/.venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/METADATA b/.venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/METADATA deleted file mode 100644 index 50af1444..00000000 --- a/.venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/METADATA +++ /dev/null @@ -1,77 +0,0 @@ -Metadata-Version: 2.2 -Name: certifi -Version: 2025.1.31 -Summary: Python package for providing Mozilla's CA Bundle. -Home-page: https://github.com/certifi/python-certifi -Author: Kenneth Reitz -Author-email: me@kennethreitz.com -License: MPL-2.0 -Project-URL: Source, https://github.com/certifi/python-certifi -Classifier: Development Status :: 5 - Production/Stable -Classifier: Intended Audience :: Developers -Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0) -Classifier: Natural Language :: English -Classifier: Programming Language :: Python -Classifier: Programming Language :: Python :: 3 -Classifier: Programming Language :: Python :: 3 :: Only -Classifier: Programming Language :: Python :: 3.6 -Classifier: Programming Language :: Python :: 3.7 -Classifier: Programming Language :: Python :: 3.8 -Classifier: Programming Language :: Python :: 3.9 -Classifier: Programming Language :: Python :: 3.10 -Classifier: Programming Language :: Python :: 3.11 -Classifier: Programming Language :: Python :: 3.12 -Classifier: Programming Language :: Python :: 3.13 -Requires-Python: >=3.6 -License-File: LICENSE -Dynamic: author -Dynamic: author-email -Dynamic: classifier -Dynamic: description -Dynamic: home-page -Dynamic: license -Dynamic: project-url -Dynamic: requires-python -Dynamic: summary - -Certifi: Python SSL Certificates -================================ - -Certifi provides Mozilla's carefully curated collection of Root Certificates for -validating the trustworthiness of SSL certificates while verifying the identity -of TLS hosts. It has been extracted from the `Requests`_ project. - -Installation ------------- - -``certifi`` is available on PyPI. Simply install it with ``pip``:: - - $ pip install certifi - -Usage ------ - -To reference the installed certificate authority (CA) bundle, you can use the -built-in function:: - - >>> import certifi - - >>> certifi.where() - '/usr/local/lib/python3.7/site-packages/certifi/cacert.pem' - -Or from the command line:: - - $ python -m certifi - /usr/local/lib/python3.7/site-packages/certifi/cacert.pem - -Enjoy! - -.. _`Requests`: https://requests.readthedocs.io/en/master/ - -Addition/Removal of Certificates --------------------------------- - -Certifi does not support any addition/removal or other modification of the -CA trust store content. This project is intended to provide a reliable and -highly portable root of trust to python deployments. Look to upstream projects -for methods to use alternate trust. diff --git a/.venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/RECORD b/.venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/RECORD deleted file mode 100644 index 4db095c6..00000000 --- a/.venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/RECORD +++ /dev/null @@ -1,14 +0,0 @@ -certifi-2025.1.31.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 -certifi-2025.1.31.dist-info/LICENSE,sha256=6TcW2mucDVpKHfYP5pWzcPBpVgPSH2-D8FPkLPwQyvc,989 -certifi-2025.1.31.dist-info/METADATA,sha256=t5kcT5aGu0dQ6_psUNZYTqnC0uCRnponewm3uYjeHbg,2451 -certifi-2025.1.31.dist-info/RECORD,, -certifi-2025.1.31.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91 -certifi-2025.1.31.dist-info/top_level.txt,sha256=KMu4vUCfsjLrkPbSNdgdekS-pVJzBAJFO__nI8NF6-U,8 -certifi/__init__.py,sha256=neIaAf7BM36ygmQCmy-ZsSyjnvjWghFeu13wwEAnjj0,94 -certifi/__main__.py,sha256=xBBoj905TUWBLRGANOcf7oi6e-3dMP4cEoG9OyMs11g,243 -certifi/__pycache__/__init__.cpython-310.pyc,, -certifi/__pycache__/__main__.cpython-310.pyc,, -certifi/__pycache__/core.cpython-310.pyc,, -certifi/cacert.pem,sha256=xVsh-Qf3-G1IrdCTVS-1ZRdJ_1-GBQjMu0I9bB-9gMc,297255 -certifi/core.py,sha256=qRDDFyXVJwTB_EmoGppaXU_R9qCZvhl-EzxPMuV3nTA,4426 -certifi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 diff --git a/.venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/WHEEL b/.venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/WHEEL deleted file mode 100644 index 505164bc..00000000 --- a/.venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/WHEEL +++ /dev/null @@ -1,5 +0,0 @@ -Wheel-Version: 1.0 -Generator: setuptools (75.8.0) -Root-Is-Purelib: true -Tag: py3-none-any - diff --git a/.venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/top_level.txt b/.venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/top_level.txt deleted file mode 100644 index 963eac53..00000000 --- a/.venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/top_level.txt +++ /dev/null @@ -1 +0,0 @@ -certifi diff --git a/.venv/lib/python3.10/site-packages/certifi/__init__.py b/.venv/lib/python3.10/site-packages/certifi/__init__.py index 177082e0..bf83fa93 100644 --- a/.venv/lib/python3.10/site-packages/certifi/__init__.py +++ b/.venv/lib/python3.10/site-packages/certifi/__init__.py @@ -1,4 +1,4 @@ from .core import contents, where __all__ = ["contents", "where"] -__version__ = "2025.01.31" +__version__ = "2025.04.26" diff --git a/.venv/lib/python3.10/site-packages/certifi/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/certifi/__pycache__/__init__.cpython-310.pyc index 1ba36825..9a95e85c 100644 Binary files a/.venv/lib/python3.10/site-packages/certifi/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/certifi/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/certifi/__pycache__/__main__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/certifi/__pycache__/__main__.cpython-310.pyc deleted file mode 100644 index 82c29d78..00000000 Binary files a/.venv/lib/python3.10/site-packages/certifi/__pycache__/__main__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/certifi/__pycache__/core.cpython-310.pyc b/.venv/lib/python3.10/site-packages/certifi/__pycache__/core.cpython-310.pyc index c309e54d..ff2a782c 100644 Binary files a/.venv/lib/python3.10/site-packages/certifi/__pycache__/core.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/certifi/__pycache__/core.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/certifi/cacert.pem b/.venv/lib/python3.10/site-packages/certifi/cacert.pem index 860f259b..b1d0cfd8 100644 --- a/.venv/lib/python3.10/site-packages/certifi/cacert.pem +++ b/.venv/lib/python3.10/site-packages/certifi/cacert.pem @@ -1,95 +1,4 @@ -# Issuer: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA -# Subject: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA -# Label: "GlobalSign Root CA" -# Serial: 4835703278459707669005204 -# MD5 Fingerprint: 3e:45:52:15:09:51:92:e1:b7:5d:37:9f:b1:87:29:8a -# SHA1 Fingerprint: b1:bc:96:8b:d4:f4:9d:62:2a:a8:9a:81:f2:15:01:52:a4:1d:82:9c -# SHA256 Fingerprint: eb:d4:10:40:e4:bb:3e:c7:42:c9:e3:81:d3:1e:f2:a4:1a:48:b6:68:5c:96:e7:ce:f3:c1:df:6c:d4:33:1c:99 ------BEGIN CERTIFICATE----- -MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkG -A1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jv -b3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAw -MDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9i -YWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJHbG9iYWxT -aWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDaDuaZ -jc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavp -xy0Sy6scTHAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp -1Wrjsok6Vjk4bwY8iGlbKk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdG -snUOhugZitVtbNV4FpWi6cgKOOvyJBNPc1STE4U6G7weNLWLBYy5d4ux2x8gkasJ -U26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrXgzT/LCrBbBlDSgeF59N8 -9iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8E -BTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0B -AQUFAAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOz -yj1hTdNGCbM+w6DjY1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE -38NflNUVyRRBnMRddWQVDf9VMOyGj/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymP -AbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhHhm4qxFYxldBniYUr+WymXUad -DKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveCX4XSQRjbgbME -HMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A== ------END CERTIFICATE----- - -# Issuer: CN=Entrust.net Certification Authority (2048) O=Entrust.net OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/(c) 1999 Entrust.net Limited -# Subject: CN=Entrust.net Certification Authority (2048) O=Entrust.net OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/(c) 1999 Entrust.net Limited -# Label: "Entrust.net Premium 2048 Secure Server CA" -# Serial: 946069240 -# MD5 Fingerprint: ee:29:31:bc:32:7e:9a:e6:e8:b5:f7:51:b4:34:71:90 -# SHA1 Fingerprint: 50:30:06:09:1d:97:d4:f5:ae:39:f7:cb:e7:92:7d:7d:65:2d:34:31 -# SHA256 Fingerprint: 6d:c4:71:72:e0:1c:bc:b0:bf:62:58:0d:89:5f:e2:b8:ac:9a:d4:f8:73:80:1e:0c:10:b9:c8:37:d2:1e:b1:77 ------BEGIN CERTIFICATE----- -MIIEKjCCAxKgAwIBAgIEOGPe+DANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChML -RW50cnVzdC5uZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBp -bmNvcnAuIGJ5IHJlZi4gKGxpbWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5 -IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNVBAMTKkVudHJ1c3QubmV0IENlcnRp -ZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQxNzUwNTFaFw0yOTA3 -MjQxNDE1MTJaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3d3d3 -LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxp -YWIuKTElMCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEG -A1UEAxMqRW50cnVzdC5uZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgp -MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArU1LqRKGsuqjIAcVFmQq -K0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOLGp18EzoOH1u3Hs/lJBQe -sYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSrhRSGlVuX -MlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVT -XTzWnLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/ -HoZdenoVve8AjhUiVBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH -4QIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV -HQ4EFgQUVeSB0RGAvtiJuQijMfmhJAkWuXAwDQYJKoZIhvcNAQEFBQADggEBADub -j1abMOdTmXx6eadNl9cZlZD7Bh/KM3xGY4+WZiT6QBshJ8rmcnPyT/4xmf3IDExo -U8aAghOY+rat2l098c5u9hURlIIM7j+VrxGrD9cv3h8Dj1csHsm7mhpElesYT6Yf -zX1XEC+bBAlahLVu2B064dae0Wx5XnkcFMXj0EyTO2U87d89vqbllRrDtRnDvV5b -u/8j72gZyxKTJ1wDLW8w0B62GqzeWvfRqqgnpv55gcR5mTNXuhKwqeBCbJPKVt7+ -bYQLCIt+jerXmCHG8+c8eS9enNFMFY3h7CI3zJpDC5fcgJCNs2ebb0gIFVbPv/Er -fF6adulZkMV8gzURZVE= ------END CERTIFICATE----- - -# Issuer: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust -# Subject: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust -# Label: "Baltimore CyberTrust Root" -# Serial: 33554617 -# MD5 Fingerprint: ac:b6:94:a5:9c:17:e0:d7:91:52:9b:b1:97:06:a6:e4 -# SHA1 Fingerprint: d4:de:20:d0:5e:66:fc:53:fe:1a:50:88:2c:78:db:28:52:ca:e4:74 -# SHA256 Fingerprint: 16:af:57:a9:f6:76:b0:ab:12:60:95:aa:5e:ba:de:f2:2a:b3:11:19:d6:44:ac:95:cd:4b:93:db:f3:f2:6a:eb ------BEGIN CERTIFICATE----- -MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJ -RTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYD -VQQDExlCYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoX -DTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMCSUUxEjAQBgNVBAoTCUJhbHRpbW9y -ZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFsdGltb3JlIEN5YmVy -VHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKMEuyKr -mD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjr -IZ3AQSsBUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeK -mpYcqWe4PwzV9/lSEy/CG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSu -XmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9XbIGevOF6uvUA65ehD5f/xXtabz5OTZy -dc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjprl3RjM71oGDHweI12v/ye -jl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoIVDaGezq1 -BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3 -DQEBBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT92 -9hkTI7gQCvlYpNRhcL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3Wgx -jkzSswF07r51XgdIGn9w/xZchMB5hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0 -Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsaY71k5h+3zvDyny67G7fyUIhz -ksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9HRCwBXbsdtTLS -R9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp ------END CERTIFICATE----- - # Issuer: CN=Entrust Root Certification Authority O=Entrust, Inc. OU=www.entrust.net/CPS is incorporated by reference/(c) 2006 Entrust, Inc. # Subject: CN=Entrust Root Certification Authority O=Entrust, Inc. OU=www.entrust.net/CPS is incorporated by reference/(c) 2006 Entrust, Inc. # Label: "Entrust Root Certification Authority" @@ -125,39 +34,6 @@ eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0tHuu2guQOHXvgR1m 0vdXcDazv/wor3ElhVsT/h5/WrQ8 -----END CERTIFICATE----- -# Issuer: CN=AAA Certificate Services O=Comodo CA Limited -# Subject: CN=AAA Certificate Services O=Comodo CA Limited -# Label: "Comodo AAA Services root" -# Serial: 1 -# MD5 Fingerprint: 49:79:04:b0:eb:87:19:ac:47:b0:bc:11:51:9b:74:d0 -# SHA1 Fingerprint: d1:eb:23:a4:6d:17:d6:8f:d9:25:64:c2:f1:f1:60:17:64:d8:e3:49 -# SHA256 Fingerprint: d7:a7:a0:fb:5d:7e:27:31:d7:71:e9:48:4e:bc:de:f7:1d:5f:0c:3e:0a:29:48:78:2b:c8:3e:e0:ea:69:9e:f4 ------BEGIN CERTIFICATE----- -MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEb -MBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRow -GAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmlj -YXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAwMFoXDTI4MTIzMTIzNTk1OVowezEL -MAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE -BwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNVBAMM -GEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEP -ADCCAQoCggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQua -BtDFcCLNSS1UY8y2bmhGC1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe -3M/vg4aijJRPn2jymJBGhCfHdr/jzDUsi14HZGWCwEiwqJH5YZ92IFCokcdmtet4 -YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszWY19zjNoFmag4qMsXeDZR -rOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjHYpy+g8cm -ez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQU -oBEKIz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF -MAMBAf8wewYDVR0fBHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20v -QUFBQ2VydGlmaWNhdGVTZXJ2aWNlcy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29t -b2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2VzLmNybDANBgkqhkiG9w0BAQUF -AAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm7l3sAg9g1o1Q -GE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz -Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2 -G9w84FoVxp7Z8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsi -l2D4kF501KKaU73yqWjgom7C12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3 -smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg== ------END CERTIFICATE----- - # Issuer: CN=QuoVadis Root CA 2 O=QuoVadis Limited # Subject: CN=QuoVadis Root CA 2 O=QuoVadis Limited # Label: "QuoVadis Root CA 2" @@ -245,103 +121,6 @@ mJlglFwjz1onl14LBQaTNx47aTbrqZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK 4SVhM7JZG+Ju1zdXtg2pEto= -----END CERTIFICATE----- -# Issuer: CN=XRamp Global Certification Authority O=XRamp Security Services Inc OU=www.xrampsecurity.com -# Subject: CN=XRamp Global Certification Authority O=XRamp Security Services Inc OU=www.xrampsecurity.com -# Label: "XRamp Global CA Root" -# Serial: 107108908803651509692980124233745014957 -# MD5 Fingerprint: a1:0b:44:b3:ca:10:d8:00:6e:9d:0f:d8:0f:92:0a:d1 -# SHA1 Fingerprint: b8:01:86:d1:eb:9c:86:a5:41:04:cf:30:54:f3:4c:52:b7:e5:58:c6 -# SHA256 Fingerprint: ce:cd:dc:90:50:99:d8:da:df:c5:b1:d2:09:b7:37:cb:e2:c1:8c:fb:2c:10:c0:ff:0b:cf:0d:32:86:fc:1a:a2 ------BEGIN CERTIFICATE----- -MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCB -gjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEk -MCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRY -UmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQxMTAxMTcx -NDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3 -dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2Vy -dmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB -dXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS6 -38eMpSe2OAtp87ZOqCwuIR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCP -KZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMxfoArtYzAQDsRhtDLooY2YKTVMIJt2W7Q -DxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FEzG+gSqmUsE3a56k0enI4 -qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqsAxcZZPRa -JSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNVi -PvryxS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0P -BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASs -jVy16bYbMDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0 -eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQEwDQYJKoZIhvcNAQEFBQAD -ggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc/Kh4ZzXxHfAR -vbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt -qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLa -IR9NmXmd4c8nnxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSy -i6mx5O+aGtA9aZnuqCij4Tyz8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQ -O+7ETPTsJ3xCwnR8gooJybQDJbw= ------END CERTIFICATE----- - -# Issuer: O=The Go Daddy Group, Inc. OU=Go Daddy Class 2 Certification Authority -# Subject: O=The Go Daddy Group, Inc. OU=Go Daddy Class 2 Certification Authority -# Label: "Go Daddy Class 2 CA" -# Serial: 0 -# MD5 Fingerprint: 91:de:06:25:ab:da:fd:32:17:0c:bb:25:17:2a:84:67 -# SHA1 Fingerprint: 27:96:ba:e6:3f:18:01:e2:77:26:1b:a0:d7:77:70:02:8f:20:ee:e4 -# SHA256 Fingerprint: c3:84:6b:f2:4b:9e:93:ca:64:27:4c:0e:c6:7c:1e:cc:5e:02:4f:fc:ac:d2:d7:40:19:35:0e:81:fe:54:6a:e4 ------BEGIN CERTIFICATE----- -MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEh -MB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBE -YWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3 -MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkGA1UEBhMCVVMxITAfBgNVBAoTGFRo -ZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28gRGFkZHkgQ2xhc3Mg -MiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQADggEN -ADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCA -PVYYYwhv2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6w -wdhFJ2+qN1j3hybX2C32qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXi -EqITLdiOr18SPaAIBQi2XKVlOARFmR6jYGB0xUGlcmIbYsUfb18aQr4CUWWoriMY -avx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmYvLEHZ6IVDd2gWMZEewo+ -YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0OBBYEFNLE -sNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h -/t2oatTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5 -IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmlj -YXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQAD -ggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wimPQoZ+YeAEW5p5JYXMP80kWNy -OO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKtI3lpjbi2Tc7P -TMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ -HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mER -dEr/VxqHD3VILs9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5Cuf -ReYNnyicsbkqWletNw+vHX/bvZ8= ------END CERTIFICATE----- - -# Issuer: O=Starfield Technologies, Inc. OU=Starfield Class 2 Certification Authority -# Subject: O=Starfield Technologies, Inc. OU=Starfield Class 2 Certification Authority -# Label: "Starfield Class 2 CA" -# Serial: 0 -# MD5 Fingerprint: 32:4a:4b:bb:c8:63:69:9b:be:74:9a:c6:dd:1d:46:24 -# SHA1 Fingerprint: ad:7e:1c:28:b0:64:ef:8f:60:03:40:20:14:c3:d0:e3:37:0e:b5:8a -# SHA256 Fingerprint: 14:65:fa:20:53:97:b8:76:fa:a6:f0:a9:95:8e:55:90:e4:0f:cc:7f:aa:4f:b7:c2:c8:67:75:21:fb:5f:b6:58 ------BEGIN CERTIFICATE----- -MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzEl -MCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMp -U3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQw -NjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBoMQswCQYDVQQGEwJVUzElMCMGA1UE -ChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZp -ZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqGSIb3 -DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf -8MOh2tTYbitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN -+lq2cwQlZut3f+dZxkqZJRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0 -X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVmepsZGD3/cVE8MC5fvj13c7JdBmzDI1aa -K4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSNF4Azbl5KXZnJHoe0nRrA -1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HFMIHCMB0G -A1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fR -zt0fhvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0 -YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBD -bGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8w -DQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGsafPzWdqbAYcaT1epoXkJKtv3 -L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLMPUxA2IGvd56D -eruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl -xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynp -VSJYACPq4xJDKVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEY -WQPJIrSPnNVeKtelttQKbfi3QBFGmh95DmK/D5fs4C8fF5Q= ------END CERTIFICATE----- - # Issuer: CN=DigiCert Assured ID Root CA O=DigiCert Inc OU=www.digicert.com # Subject: CN=DigiCert Assured ID Root CA O=DigiCert Inc OU=www.digicert.com # Label: "DigiCert Assured ID Root CA" diff --git a/.venv/lib/python3.10/site-packages/cffi/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cffi/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index b6fef648..00000000 Binary files a/.venv/lib/python3.10/site-packages/cffi/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cffi/__pycache__/_imp_emulation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cffi/__pycache__/_imp_emulation.cpython-310.pyc deleted file mode 100644 index bda3a7b3..00000000 Binary files a/.venv/lib/python3.10/site-packages/cffi/__pycache__/_imp_emulation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cffi/__pycache__/_shimmed_dist_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cffi/__pycache__/_shimmed_dist_utils.cpython-310.pyc deleted file mode 100644 index 6f958e03..00000000 Binary files a/.venv/lib/python3.10/site-packages/cffi/__pycache__/_shimmed_dist_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cffi/__pycache__/api.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cffi/__pycache__/api.cpython-310.pyc deleted file mode 100644 index 4921e7f6..00000000 Binary files a/.venv/lib/python3.10/site-packages/cffi/__pycache__/api.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cffi/__pycache__/backend_ctypes.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cffi/__pycache__/backend_ctypes.cpython-310.pyc deleted file mode 100644 index 485390e0..00000000 Binary files a/.venv/lib/python3.10/site-packages/cffi/__pycache__/backend_ctypes.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cffi/__pycache__/cffi_opcode.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cffi/__pycache__/cffi_opcode.cpython-310.pyc deleted file mode 100644 index fcd70b0c..00000000 Binary files a/.venv/lib/python3.10/site-packages/cffi/__pycache__/cffi_opcode.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cffi/__pycache__/commontypes.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cffi/__pycache__/commontypes.cpython-310.pyc deleted file mode 100644 index c3f95de6..00000000 Binary files a/.venv/lib/python3.10/site-packages/cffi/__pycache__/commontypes.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cffi/__pycache__/cparser.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cffi/__pycache__/cparser.cpython-310.pyc deleted file mode 100644 index 4aa27afb..00000000 Binary files a/.venv/lib/python3.10/site-packages/cffi/__pycache__/cparser.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cffi/__pycache__/error.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cffi/__pycache__/error.cpython-310.pyc deleted file mode 100644 index 4217d5b3..00000000 Binary files a/.venv/lib/python3.10/site-packages/cffi/__pycache__/error.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cffi/__pycache__/ffiplatform.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cffi/__pycache__/ffiplatform.cpython-310.pyc deleted file mode 100644 index 3e9921dc..00000000 Binary files a/.venv/lib/python3.10/site-packages/cffi/__pycache__/ffiplatform.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cffi/__pycache__/lock.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cffi/__pycache__/lock.cpython-310.pyc deleted file mode 100644 index 7de20064..00000000 Binary files a/.venv/lib/python3.10/site-packages/cffi/__pycache__/lock.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cffi/__pycache__/model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cffi/__pycache__/model.cpython-310.pyc deleted file mode 100644 index 6a4bc24c..00000000 Binary files a/.venv/lib/python3.10/site-packages/cffi/__pycache__/model.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cffi/__pycache__/pkgconfig.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cffi/__pycache__/pkgconfig.cpython-310.pyc deleted file mode 100644 index 1af23972..00000000 Binary files a/.venv/lib/python3.10/site-packages/cffi/__pycache__/pkgconfig.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cffi/__pycache__/recompiler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cffi/__pycache__/recompiler.cpython-310.pyc deleted file mode 100644 index 10b28f83..00000000 Binary files a/.venv/lib/python3.10/site-packages/cffi/__pycache__/recompiler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cffi/__pycache__/setuptools_ext.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cffi/__pycache__/setuptools_ext.cpython-310.pyc deleted file mode 100644 index 2681a74b..00000000 Binary files a/.venv/lib/python3.10/site-packages/cffi/__pycache__/setuptools_ext.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cffi/__pycache__/vengine_cpy.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cffi/__pycache__/vengine_cpy.cpython-310.pyc deleted file mode 100644 index 3e42ce2c..00000000 Binary files a/.venv/lib/python3.10/site-packages/cffi/__pycache__/vengine_cpy.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cffi/__pycache__/vengine_gen.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cffi/__pycache__/vengine_gen.cpython-310.pyc deleted file mode 100644 index 963837cf..00000000 Binary files a/.venv/lib/python3.10/site-packages/cffi/__pycache__/vengine_gen.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cffi/__pycache__/verifier.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cffi/__pycache__/verifier.cpython-310.pyc deleted file mode 100644 index b146a40a..00000000 Binary files a/.venv/lib/python3.10/site-packages/cffi/__pycache__/verifier.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/__init__.cpython-310.pyc index 056d2c59..58044b51 100644 Binary files a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/__main__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/__main__.cpython-310.pyc deleted file mode 100644 index 2a0fc44c..00000000 Binary files a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/__main__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/api.cpython-310.pyc b/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/api.cpython-310.pyc index 061082f6..493b4413 100644 Binary files a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/api.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/api.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/cd.cpython-310.pyc b/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/cd.cpython-310.pyc index 6ad03797..8b01f9b3 100644 Binary files a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/cd.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/cd.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/constant.cpython-310.pyc b/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/constant.cpython-310.pyc index fa8eb6d1..62057463 100644 Binary files a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/constant.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/constant.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/legacy.cpython-310.pyc b/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/legacy.cpython-310.pyc index cc71fb71..2a6950c4 100644 Binary files a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/legacy.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/legacy.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/md.cpython-310.pyc b/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/md.cpython-310.pyc deleted file mode 100644 index 5739d645..00000000 Binary files a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/md.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/models.cpython-310.pyc index 8e1ade69..eed7d699 100644 Binary files a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/models.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/models.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/utils.cpython-310.pyc index 1d306c2f..7951a30e 100644 Binary files a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/version.cpython-310.pyc index 93ab640f..6c146b6c 100644 Binary files a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/charset_normalizer/cli/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/charset_normalizer/cli/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index dce7d405..00000000 Binary files a/.venv/lib/python3.10/site-packages/charset_normalizer/cli/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/charset_normalizer/cli/__pycache__/__main__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/charset_normalizer/cli/__pycache__/__main__.cpython-310.pyc deleted file mode 100644 index f70984c6..00000000 Binary files a/.venv/lib/python3.10/site-packages/charset_normalizer/cli/__pycache__/__main__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/click/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/click/__pycache__/__init__.cpython-310.pyc index f3b92d33..ae37ad97 100644 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/click/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/click/__pycache__/_compat.cpython-310.pyc b/.venv/lib/python3.10/site-packages/click/__pycache__/_compat.cpython-310.pyc index 627f7bbb..702b1c15 100644 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/_compat.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/click/__pycache__/_compat.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/click/__pycache__/_termui_impl.cpython-310.pyc b/.venv/lib/python3.10/site-packages/click/__pycache__/_termui_impl.cpython-310.pyc deleted file mode 100644 index 701cb798..00000000 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/_termui_impl.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/click/__pycache__/_textwrap.cpython-310.pyc b/.venv/lib/python3.10/site-packages/click/__pycache__/_textwrap.cpython-310.pyc deleted file mode 100644 index 94ab274d..00000000 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/_textwrap.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/click/__pycache__/_winconsole.cpython-310.pyc b/.venv/lib/python3.10/site-packages/click/__pycache__/_winconsole.cpython-310.pyc deleted file mode 100644 index e53384b1..00000000 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/_winconsole.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/click/__pycache__/core.cpython-310.pyc b/.venv/lib/python3.10/site-packages/click/__pycache__/core.cpython-310.pyc index bf13a1f3..44e23eb2 100644 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/core.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/click/__pycache__/core.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/click/__pycache__/decorators.cpython-310.pyc b/.venv/lib/python3.10/site-packages/click/__pycache__/decorators.cpython-310.pyc index 452484c6..cc33ede6 100644 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/decorators.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/click/__pycache__/decorators.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/click/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/click/__pycache__/exceptions.cpython-310.pyc index 1fb5175c..12b21b0b 100644 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/exceptions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/click/__pycache__/exceptions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/click/__pycache__/formatting.cpython-310.pyc b/.venv/lib/python3.10/site-packages/click/__pycache__/formatting.cpython-310.pyc index 1b5aaca0..a8015a7a 100644 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/formatting.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/click/__pycache__/formatting.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/click/__pycache__/globals.cpython-310.pyc b/.venv/lib/python3.10/site-packages/click/__pycache__/globals.cpython-310.pyc index c22f9474..5652ad78 100644 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/globals.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/click/__pycache__/globals.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/click/__pycache__/parser.cpython-310.pyc b/.venv/lib/python3.10/site-packages/click/__pycache__/parser.cpython-310.pyc index 9668be9c..8ec26d21 100644 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/parser.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/click/__pycache__/parser.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/click/__pycache__/shell_completion.cpython-310.pyc b/.venv/lib/python3.10/site-packages/click/__pycache__/shell_completion.cpython-310.pyc deleted file mode 100644 index a65f6bf4..00000000 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/shell_completion.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/click/__pycache__/termui.cpython-310.pyc b/.venv/lib/python3.10/site-packages/click/__pycache__/termui.cpython-310.pyc index 9b44ed09..05264c22 100644 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/termui.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/click/__pycache__/termui.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/click/__pycache__/testing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/click/__pycache__/testing.cpython-310.pyc deleted file mode 100644 index 655e85cd..00000000 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/testing.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/click/__pycache__/types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/click/__pycache__/types.cpython-310.pyc index d2724b6d..1e379265 100644 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/types.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/click/__pycache__/types.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/click/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/click/__pycache__/utils.cpython-310.pyc index bfe5c812..d5fbf60b 100644 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/click/__pycache__/utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/__pycache__/__about__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/__pycache__/__about__.cpython-310.pyc index 0549045b..75b55128 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/__pycache__/__about__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/__pycache__/__about__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/__pycache__/__init__.cpython-310.pyc index c6048d4a..f26e96dd 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/__pycache__/exceptions.cpython-310.pyc index 30bb3440..8b3674e6 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/__pycache__/exceptions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/__pycache__/exceptions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/__pycache__/fernet.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/__pycache__/fernet.cpython-310.pyc deleted file mode 100644 index 9d77ccb1..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/__pycache__/fernet.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/__pycache__/utils.cpython-310.pyc index 91050acd..5f7c2f39 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/__pycache__/utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/__pycache__/utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/__pycache__/__init__.cpython-310.pyc index 30211e3c..3e682cb3 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/__pycache__/_oid.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/__pycache__/_oid.cpython-310.pyc index 01a69506..93daf58a 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/__pycache__/_oid.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/__pycache__/_oid.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/__pycache__/__init__.cpython-310.pyc index 30daca01..cf19e1db 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/__pycache__/__init__.cpython-310.pyc index de58fb61..ab37aab9 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/__pycache__/backend.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/__pycache__/backend.cpython-310.pyc index 798f2c3f..f8c23d2f 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/__pycache__/backend.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/__pycache__/backend.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/__pycache__/__init__.cpython-310.pyc index c390808e..3c9e2bf3 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/__pycache__/__init__.cpython-310.pyc index 3c8beac2..a5f425f5 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/__pycache__/_conditional.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/__pycache__/_conditional.cpython-310.pyc index 2809fb7e..90555151 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/__pycache__/_conditional.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/__pycache__/_conditional.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/__pycache__/binding.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/__pycache__/binding.cpython-310.pyc index aacf94e4..f47820c1 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/__pycache__/binding.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/__pycache__/binding.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/decrepit/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/decrepit/__pycache__/__init__.cpython-310.pyc index 22ba6531..32cc6242 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/decrepit/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/decrepit/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/decrepit/ciphers/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/decrepit/ciphers/__pycache__/__init__.cpython-310.pyc index 286b5501..40fb8625 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/decrepit/ciphers/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/decrepit/ciphers/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/decrepit/ciphers/__pycache__/algorithms.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/decrepit/ciphers/__pycache__/algorithms.cpython-310.pyc index ae784436..63a932f6 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/decrepit/ciphers/__pycache__/algorithms.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/decrepit/ciphers/__pycache__/algorithms.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/__init__.cpython-310.pyc index 0745a625..735e4d8f 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/_asymmetric.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/_asymmetric.cpython-310.pyc index 57926d5b..5f2467fd 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/_asymmetric.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/_asymmetric.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/_cipheralgorithm.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/_cipheralgorithm.cpython-310.pyc index 2fa33162..1554ac8d 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/_cipheralgorithm.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/_cipheralgorithm.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/_serialization.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/_serialization.cpython-310.pyc index 564e1f36..39c7f19b 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/_serialization.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/_serialization.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/cmac.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/cmac.cpython-310.pyc deleted file mode 100644 index 79fab3d2..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/cmac.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/constant_time.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/constant_time.cpython-310.pyc index 9fac48b4..903a756c 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/constant_time.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/constant_time.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/hashes.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/hashes.cpython-310.pyc index 3c647399..b4b84577 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/hashes.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/hashes.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/hmac.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/hmac.cpython-310.pyc index 4bb4d2be..a56706de 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/hmac.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/hmac.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/keywrap.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/keywrap.cpython-310.pyc index 523bfef7..b5c778f8 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/keywrap.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/keywrap.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/padding.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/padding.cpython-310.pyc index 4037387d..856ce534 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/padding.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/padding.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/poly1305.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/poly1305.cpython-310.pyc deleted file mode 100644 index 3fe9b1ae..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/poly1305.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/__init__.cpython-310.pyc index 2280751f..bd9e5a1d 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/dh.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/dh.cpython-310.pyc index 9358b4d2..27a5f678 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/dh.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/dh.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/dsa.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/dsa.cpython-310.pyc index b7862274..9b466c2c 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/dsa.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/dsa.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/ec.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/ec.cpython-310.pyc index feecca3d..37f81d82 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/ec.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/ec.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/ed25519.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/ed25519.cpython-310.pyc index 1943b4d5..a3cd28b8 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/ed25519.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/ed25519.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/ed448.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/ed448.cpython-310.pyc index d69b204b..630693f6 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/ed448.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/ed448.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/padding.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/padding.cpython-310.pyc index e02e0329..89f4eb61 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/padding.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/padding.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/rsa.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/rsa.cpython-310.pyc index 2f813004..38d6f2ea 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/rsa.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/rsa.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/types.cpython-310.pyc index 6a84ef6f..972e6c44 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/types.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/types.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/utils.cpython-310.pyc index a99bf2af..3dc221ba 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/x25519.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/x25519.cpython-310.pyc index ef11c020..e11e128a 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/x25519.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/x25519.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/x448.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/x448.cpython-310.pyc index 10f06083..85262cf2 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/x448.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/x448.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/__init__.cpython-310.pyc index dc100b9e..33a20bdc 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/aead.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/aead.cpython-310.pyc deleted file mode 100644 index bba7775d..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/aead.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/algorithms.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/algorithms.cpython-310.pyc index df778d8a..7d50a569 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/algorithms.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/algorithms.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/base.cpython-310.pyc index 8d1548e4..9c60d70d 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/modes.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/modes.cpython-310.pyc index 14ea30f2..fadff9a7 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/modes.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/modes.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/__init__.cpython-310.pyc index 5124f913..a81fcadc 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/argon2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/argon2.cpython-310.pyc deleted file mode 100644 index 5ba84d39..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/argon2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/concatkdf.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/concatkdf.cpython-310.pyc index a9f306ef..84f0f5e5 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/concatkdf.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/concatkdf.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/hkdf.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/hkdf.cpython-310.pyc deleted file mode 100644 index 10cd2202..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/hkdf.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/kbkdf.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/kbkdf.cpython-310.pyc deleted file mode 100644 index b9c43db1..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/kbkdf.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/pbkdf2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/pbkdf2.cpython-310.pyc deleted file mode 100644 index 77a432c1..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/pbkdf2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/scrypt.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/scrypt.cpython-310.pyc deleted file mode 100644 index ab3fd7d6..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/scrypt.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/x963kdf.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/x963kdf.cpython-310.pyc deleted file mode 100644 index a1f38381..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/x963kdf.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/__init__.cpython-310.pyc index 84f5f810..01096116 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/base.cpython-310.pyc index 58abb4af..5ceb7eda 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/pkcs12.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/pkcs12.cpython-310.pyc deleted file mode 100644 index 5eef5a30..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/pkcs12.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/pkcs7.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/pkcs7.cpython-310.pyc deleted file mode 100644 index 526abf52..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/pkcs7.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/ssh.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/ssh.cpython-310.pyc index c3a25e27..cc7a14fd 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/ssh.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/ssh.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/twofactor/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/twofactor/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 79384448..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/twofactor/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/twofactor/__pycache__/hotp.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/twofactor/__pycache__/hotp.cpython-310.pyc deleted file mode 100644 index 31e7e306..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/twofactor/__pycache__/hotp.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/twofactor/__pycache__/totp.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/twofactor/__pycache__/totp.cpython-310.pyc deleted file mode 100644 index b232aea8..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/twofactor/__pycache__/totp.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/__init__.cpython-310.pyc index ac8681c5..0e345037 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/base.cpython-310.pyc index 4e5cd149..a12b6db8 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/certificate_transparency.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/certificate_transparency.cpython-310.pyc index fb9f3daf..0e109ff2 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/certificate_transparency.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/certificate_transparency.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/extensions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/extensions.cpython-310.pyc index dd4984e7..ad914526 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/extensions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/extensions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/general_name.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/general_name.cpython-310.pyc index 4c2b8fbc..16067dae 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/general_name.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/general_name.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/name.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/name.cpython-310.pyc index 88b8ed05..af817593 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/name.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/name.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/ocsp.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/ocsp.cpython-310.pyc deleted file mode 100644 index 5dfd8d68..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/ocsp.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/oid.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/oid.cpython-310.pyc index 0980925c..4ba6b31e 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/oid.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/oid.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/verification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/verification.cpython-310.pyc index 64f011cc..2e5b6a77 100644 Binary files a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/verification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/verification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/dateutil/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dateutil/__pycache__/__init__.cpython-310.pyc index 67c98a24..39e7a210 100644 Binary files a/.venv/lib/python3.10/site-packages/dateutil/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/dateutil/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/dateutil/__pycache__/_common.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dateutil/__pycache__/_common.cpython-310.pyc index 85c92c0e..e833d06d 100644 Binary files a/.venv/lib/python3.10/site-packages/dateutil/__pycache__/_common.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/dateutil/__pycache__/_common.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/dateutil/__pycache__/_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dateutil/__pycache__/_version.cpython-310.pyc index 22c9941f..6bd1b7c8 100644 Binary files a/.venv/lib/python3.10/site-packages/dateutil/__pycache__/_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/dateutil/__pycache__/_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/dateutil/__pycache__/easter.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dateutil/__pycache__/easter.cpython-310.pyc deleted file mode 100644 index 042de342..00000000 Binary files a/.venv/lib/python3.10/site-packages/dateutil/__pycache__/easter.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/dateutil/__pycache__/relativedelta.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dateutil/__pycache__/relativedelta.cpython-310.pyc index e5e74f40..07a510cf 100644 Binary files a/.venv/lib/python3.10/site-packages/dateutil/__pycache__/relativedelta.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/dateutil/__pycache__/relativedelta.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/dateutil/__pycache__/rrule.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dateutil/__pycache__/rrule.cpython-310.pyc deleted file mode 100644 index 31812931..00000000 Binary files a/.venv/lib/python3.10/site-packages/dateutil/__pycache__/rrule.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/dateutil/__pycache__/tzwin.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dateutil/__pycache__/tzwin.cpython-310.pyc deleted file mode 100644 index 2d47d889..00000000 Binary files a/.venv/lib/python3.10/site-packages/dateutil/__pycache__/tzwin.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/dateutil/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dateutil/__pycache__/utils.cpython-310.pyc deleted file mode 100644 index 507e21cc..00000000 Binary files a/.venv/lib/python3.10/site-packages/dateutil/__pycache__/utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/dateutil/parser/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dateutil/parser/__pycache__/__init__.cpython-310.pyc index 77b55053..64264746 100644 Binary files a/.venv/lib/python3.10/site-packages/dateutil/parser/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/dateutil/parser/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/dateutil/parser/__pycache__/_parser.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dateutil/parser/__pycache__/_parser.cpython-310.pyc index 49686fca..3e8bc53c 100644 Binary files a/.venv/lib/python3.10/site-packages/dateutil/parser/__pycache__/_parser.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/dateutil/parser/__pycache__/_parser.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/dateutil/parser/__pycache__/isoparser.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dateutil/parser/__pycache__/isoparser.cpython-310.pyc index b653c018..b5fbe5b4 100644 Binary files a/.venv/lib/python3.10/site-packages/dateutil/parser/__pycache__/isoparser.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/dateutil/parser/__pycache__/isoparser.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/__init__.cpython-310.pyc index 1aa79163..8a8df9ff 100644 Binary files a/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/_common.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/_common.cpython-310.pyc index 98ae55fd..320a77e7 100644 Binary files a/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/_common.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/_common.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/_factories.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/_factories.cpython-310.pyc index 84f9d85a..9667cf01 100644 Binary files a/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/_factories.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/_factories.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/tz.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/tz.cpython-310.pyc index 0b6dc8ae..32a34947 100644 Binary files a/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/tz.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/tz.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/win.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/win.cpython-310.pyc index 5f8dcec7..dfc3be78 100644 Binary files a/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/win.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/win.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/dateutil/zoneinfo/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dateutil/zoneinfo/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 2c4d4ade..00000000 Binary files a/.venv/lib/python3.10/site-packages/dateutil/zoneinfo/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/dateutil/zoneinfo/__pycache__/rebuild.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dateutil/zoneinfo/__pycache__/rebuild.cpython-310.pyc deleted file mode 100644 index 49deaaf0..00000000 Binary files a/.venv/lib/python3.10/site-packages/dateutil/zoneinfo/__pycache__/rebuild.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/deprecated/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/deprecated/__pycache__/__init__.cpython-310.pyc index e20f4b82..4652c1c8 100644 Binary files a/.venv/lib/python3.10/site-packages/deprecated/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/deprecated/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/deprecated/__pycache__/classic.cpython-310.pyc b/.venv/lib/python3.10/site-packages/deprecated/__pycache__/classic.cpython-310.pyc index b2e2ff18..04fe1e29 100644 Binary files a/.venv/lib/python3.10/site-packages/deprecated/__pycache__/classic.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/deprecated/__pycache__/classic.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/deprecated/__pycache__/sphinx.cpython-310.pyc b/.venv/lib/python3.10/site-packages/deprecated/__pycache__/sphinx.cpython-310.pyc deleted file mode 100644 index f160d26e..00000000 Binary files a/.venv/lib/python3.10/site-packages/deprecated/__pycache__/sphinx.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/distro/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/distro/__pycache__/__init__.cpython-310.pyc index 8543ca57..09c37bd5 100644 Binary files a/.venv/lib/python3.10/site-packages/distro/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/distro/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/distro/__pycache__/__main__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/distro/__pycache__/__main__.cpython-310.pyc deleted file mode 100644 index ebaa7df0..00000000 Binary files a/.venv/lib/python3.10/site-packages/distro/__pycache__/__main__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/distro/__pycache__/distro.cpython-310.pyc b/.venv/lib/python3.10/site-packages/distro/__pycache__/distro.cpython-310.pyc index fd1538c9..3aca0b5c 100644 Binary files a/.venv/lib/python3.10/site-packages/distro/__pycache__/distro.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/distro/__pycache__/distro.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 8d9b2cd3..00000000 Binary files a/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/attrdoc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/attrdoc.cpython-310.pyc deleted file mode 100644 index c1ebac99..00000000 Binary files a/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/attrdoc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/common.cpython-310.pyc b/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/common.cpython-310.pyc deleted file mode 100644 index e281a159..00000000 Binary files a/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/common.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/epydoc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/epydoc.cpython-310.pyc deleted file mode 100644 index 1332ae33..00000000 Binary files a/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/epydoc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/google.cpython-310.pyc b/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/google.cpython-310.pyc deleted file mode 100644 index 07ad3607..00000000 Binary files a/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/google.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/numpydoc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/numpydoc.cpython-310.pyc deleted file mode 100644 index 2b57e13f..00000000 Binary files a/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/numpydoc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/parser.cpython-310.pyc b/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/parser.cpython-310.pyc deleted file mode 100644 index 1373ee7a..00000000 Binary files a/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/parser.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/rest.cpython-310.pyc deleted file mode 100644 index 7169522c..00000000 Binary files a/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/rest.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/util.cpython-310.pyc b/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/util.cpython-310.pyc deleted file mode 100644 index 87769cc2..00000000 Binary files a/.venv/lib/python3.10/site-packages/docstring_parser/__pycache__/util.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 1b277e91..00000000 Binary files a/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/_pydoctor.cpython-310.pyc b/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/_pydoctor.cpython-310.pyc deleted file mode 100644 index e79702be..00000000 Binary files a/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/_pydoctor.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/test_epydoc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/test_epydoc.cpython-310.pyc deleted file mode 100644 index 19d9c7a5..00000000 Binary files a/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/test_epydoc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/test_google.cpython-310.pyc b/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/test_google.cpython-310.pyc deleted file mode 100644 index e84fa02b..00000000 Binary files a/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/test_google.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/test_numpydoc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/test_numpydoc.cpython-310.pyc deleted file mode 100644 index 6e3e9241..00000000 Binary files a/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/test_numpydoc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/test_parse_from_object.cpython-310.pyc b/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/test_parse_from_object.cpython-310.pyc deleted file mode 100644 index 1a41d0e6..00000000 Binary files a/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/test_parse_from_object.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/test_parser.cpython-310.pyc b/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/test_parser.cpython-310.pyc deleted file mode 100644 index a2e17a5f..00000000 Binary files a/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/test_parser.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/test_rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/test_rest.cpython-310.pyc deleted file mode 100644 index 5e1b910e..00000000 Binary files a/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/test_rest.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/test_util.cpython-310.pyc b/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/test_util.cpython-310.pyc deleted file mode 100644 index 19c1f248..00000000 Binary files a/.venv/lib/python3.10/site-packages/docstring_parser/tests/__pycache__/test_util.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/dotenv/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dotenv/__pycache__/__init__.cpython-310.pyc index 5d183836..ee3c4684 100644 Binary files a/.venv/lib/python3.10/site-packages/dotenv/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/dotenv/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/dotenv/__pycache__/__main__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dotenv/__pycache__/__main__.cpython-310.pyc deleted file mode 100644 index b11bb7e3..00000000 Binary files a/.venv/lib/python3.10/site-packages/dotenv/__pycache__/__main__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/dotenv/__pycache__/cli.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dotenv/__pycache__/cli.cpython-310.pyc deleted file mode 100644 index 9fdad95f..00000000 Binary files a/.venv/lib/python3.10/site-packages/dotenv/__pycache__/cli.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/dotenv/__pycache__/ipython.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dotenv/__pycache__/ipython.cpython-310.pyc deleted file mode 100644 index bda5e40e..00000000 Binary files a/.venv/lib/python3.10/site-packages/dotenv/__pycache__/ipython.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/dotenv/__pycache__/main.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dotenv/__pycache__/main.cpython-310.pyc index 6e1e8e60..0319926a 100644 Binary files a/.venv/lib/python3.10/site-packages/dotenv/__pycache__/main.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/dotenv/__pycache__/main.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/dotenv/__pycache__/parser.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dotenv/__pycache__/parser.cpython-310.pyc index 89ee2fae..51428968 100644 Binary files a/.venv/lib/python3.10/site-packages/dotenv/__pycache__/parser.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/dotenv/__pycache__/parser.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/dotenv/__pycache__/variables.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dotenv/__pycache__/variables.cpython-310.pyc index e7810de5..efa1dabe 100644 Binary files a/.venv/lib/python3.10/site-packages/dotenv/__pycache__/variables.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/dotenv/__pycache__/variables.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/dotenv/__pycache__/version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dotenv/__pycache__/version.cpython-310.pyc deleted file mode 100644 index 8db3568f..00000000 Binary files a/.venv/lib/python3.10/site-packages/dotenv/__pycache__/version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/__init__.cpython-310.pyc index 75a7110e..df8f44ff 100644 Binary files a/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_catch.cpython-310.pyc b/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_catch.cpython-310.pyc index cc9f5410..1a24b60c 100644 Binary files a/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_catch.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_catch.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_exceptions.cpython-310.pyc index 58b312ba..6e0abb5b 100644 Binary files a/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_exceptions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_exceptions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_formatting.cpython-310.pyc b/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_formatting.cpython-310.pyc index 163e0b5d..d73f2a6e 100644 Binary files a/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_formatting.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_formatting.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_suppress.cpython-310.pyc b/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_suppress.cpython-310.pyc index bf88ef1d..ce820acf 100644 Binary files a/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_suppress.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_suppress.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_version.cpython-310.pyc index da28b15a..2780e64c 100644 Binary files a/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/__init__.cpython-310.pyc index 7b5519e0..d00bd473 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/__main__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/__main__.cpython-310.pyc deleted file mode 100644 index c1c404d4..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/__main__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/_compat.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/_compat.cpython-310.pyc index f26ddc04..600ba8c1 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/_compat.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/_compat.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/applications.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/applications.cpython-310.pyc index 07e9f70a..8ecd09be 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/applications.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/applications.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/background.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/background.cpython-310.pyc index 77c1e4ea..14880f78 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/background.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/background.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/cli.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/cli.cpython-310.pyc deleted file mode 100644 index 96aa604f..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/cli.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/concurrency.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/concurrency.cpython-310.pyc index 1221035d..c0097983 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/concurrency.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/concurrency.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/datastructures.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/datastructures.cpython-310.pyc index 1330c99c..63438817 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/datastructures.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/datastructures.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/encoders.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/encoders.cpython-310.pyc index 1eed050e..67c8ba2b 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/encoders.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/encoders.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/exception_handlers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/exception_handlers.cpython-310.pyc index cae86453..f05de827 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/exception_handlers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/exception_handlers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/exceptions.cpython-310.pyc index b0c3f998..bcf4550b 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/exceptions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/exceptions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/logger.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/logger.cpython-310.pyc index bacabcb5..a6565cb4 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/logger.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/logger.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/param_functions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/param_functions.cpython-310.pyc index e89160f0..cb7a59c8 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/param_functions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/param_functions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/params.cpython-310.pyc index dae47b4f..b30fa613 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/params.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/params.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/requests.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/requests.cpython-310.pyc index 7116680b..1e693195 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/requests.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/requests.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/responses.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/responses.cpython-310.pyc index 6fc2b4fc..a35ea57d 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/responses.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/responses.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/routing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/routing.cpython-310.pyc index d66eade3..a53de39f 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/routing.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/routing.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/staticfiles.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/staticfiles.cpython-310.pyc deleted file mode 100644 index 2249d1a1..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/staticfiles.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/templating.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/templating.cpython-310.pyc deleted file mode 100644 index 4e3f8563..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/templating.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/testclient.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/testclient.cpython-310.pyc deleted file mode 100644 index 84e3ca51..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/testclient.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/types.cpython-310.pyc index 96ce4f9c..fae553ff 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/types.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/types.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/utils.cpython-310.pyc index 7749b8f9..43d151c2 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/websockets.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/websockets.cpython-310.pyc index 1cdc05ab..17aa7b29 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/websockets.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/__pycache__/websockets.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/dependencies/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/dependencies/__pycache__/__init__.cpython-310.pyc index a919a76f..0b7ae9d0 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/dependencies/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/dependencies/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/dependencies/__pycache__/models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/dependencies/__pycache__/models.cpython-310.pyc index 883b78e2..1942ad99 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/dependencies/__pycache__/models.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/dependencies/__pycache__/models.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/dependencies/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/dependencies/__pycache__/utils.cpython-310.pyc index 44c2d41f..decf8ff3 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/dependencies/__pycache__/utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/dependencies/__pycache__/utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/middleware/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/middleware/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 42561b9e..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/middleware/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/middleware/__pycache__/cors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/middleware/__pycache__/cors.cpython-310.pyc deleted file mode 100644 index 59fd2bac..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/middleware/__pycache__/cors.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/middleware/__pycache__/gzip.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/middleware/__pycache__/gzip.cpython-310.pyc deleted file mode 100644 index b504d87a..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/middleware/__pycache__/gzip.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/middleware/__pycache__/httpsredirect.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/middleware/__pycache__/httpsredirect.cpython-310.pyc deleted file mode 100644 index 70b9d7f9..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/middleware/__pycache__/httpsredirect.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/middleware/__pycache__/trustedhost.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/middleware/__pycache__/trustedhost.cpython-310.pyc deleted file mode 100644 index c2062b10..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/middleware/__pycache__/trustedhost.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/middleware/__pycache__/wsgi.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/middleware/__pycache__/wsgi.cpython-310.pyc deleted file mode 100644 index a989ffcf..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/middleware/__pycache__/wsgi.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/__init__.cpython-310.pyc index cf6871a9..f7cb0b7e 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/constants.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/constants.cpython-310.pyc index e77e2f63..5ddc73f6 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/constants.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/constants.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/docs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/docs.cpython-310.pyc index af6d748a..db4f927e 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/docs.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/docs.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/models.cpython-310.pyc index 0612d765..a36c5cfe 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/models.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/models.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/utils.cpython-310.pyc index b5df9f1a..17774329 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/__init__.cpython-310.pyc index 34a88170..76b67281 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/api_key.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/api_key.cpython-310.pyc index cb12aa60..84bb43ac 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/api_key.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/api_key.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/base.cpython-310.pyc index c79b1e74..4e44773d 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/http.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/http.cpython-310.pyc index f1730d9d..1c3ad1d1 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/http.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/http.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/oauth2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/oauth2.cpython-310.pyc index f2e4ff89..d37447fa 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/oauth2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/oauth2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/open_id_connect_url.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/open_id_connect_url.cpython-310.pyc index 65b98465..185b9ea2 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/open_id_connect_url.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/open_id_connect_url.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/utils.cpython-310.pyc index 9d5ad2b8..989530f3 100644 Binary files a/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/filelock/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/filelock/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index ebc09971..00000000 Binary files a/.venv/lib/python3.10/site-packages/filelock/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/filelock/__pycache__/_api.cpython-310.pyc b/.venv/lib/python3.10/site-packages/filelock/__pycache__/_api.cpython-310.pyc deleted file mode 100644 index 6d5503c2..00000000 Binary files a/.venv/lib/python3.10/site-packages/filelock/__pycache__/_api.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/filelock/__pycache__/_error.cpython-310.pyc b/.venv/lib/python3.10/site-packages/filelock/__pycache__/_error.cpython-310.pyc deleted file mode 100644 index 9c15f61e..00000000 Binary files a/.venv/lib/python3.10/site-packages/filelock/__pycache__/_error.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/filelock/__pycache__/_soft.cpython-310.pyc b/.venv/lib/python3.10/site-packages/filelock/__pycache__/_soft.cpython-310.pyc deleted file mode 100644 index 48823fd3..00000000 Binary files a/.venv/lib/python3.10/site-packages/filelock/__pycache__/_soft.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/filelock/__pycache__/_unix.cpython-310.pyc b/.venv/lib/python3.10/site-packages/filelock/__pycache__/_unix.cpython-310.pyc deleted file mode 100644 index 4e6b6cfa..00000000 Binary files a/.venv/lib/python3.10/site-packages/filelock/__pycache__/_unix.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/filelock/__pycache__/_util.cpython-310.pyc b/.venv/lib/python3.10/site-packages/filelock/__pycache__/_util.cpython-310.pyc deleted file mode 100644 index 18aaae07..00000000 Binary files a/.venv/lib/python3.10/site-packages/filelock/__pycache__/_util.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/filelock/__pycache__/_windows.cpython-310.pyc b/.venv/lib/python3.10/site-packages/filelock/__pycache__/_windows.cpython-310.pyc deleted file mode 100644 index d4bea0fb..00000000 Binary files a/.venv/lib/python3.10/site-packages/filelock/__pycache__/_windows.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/filelock/__pycache__/asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/filelock/__pycache__/asyncio.cpython-310.pyc deleted file mode 100644 index 9a4dd27c..00000000 Binary files a/.venv/lib/python3.10/site-packages/filelock/__pycache__/asyncio.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/filelock/__pycache__/version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/filelock/__pycache__/version.cpython-310.pyc deleted file mode 100644 index 2f88de6e..00000000 Binary files a/.venv/lib/python3.10/site-packages/filelock/__pycache__/version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/frozenlist/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/frozenlist/__pycache__/__init__.cpython-310.pyc index aecdf157..f78da488 100644 Binary files a/.venv/lib/python3.10/site-packages/frozenlist/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/frozenlist/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index d657d2c0..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/__pycache__/_version.cpython-310.pyc deleted file mode 100644 index 4a937c0b..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/_version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/archive.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/__pycache__/archive.cpython-310.pyc deleted file mode 100644 index 3bd332d3..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/archive.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/asyn.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/__pycache__/asyn.cpython-310.pyc deleted file mode 100644 index 3352104d..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/asyn.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/caching.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/__pycache__/caching.cpython-310.pyc deleted file mode 100644 index 87ce1a04..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/caching.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/callbacks.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/__pycache__/callbacks.cpython-310.pyc deleted file mode 100644 index 3593ac09..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/callbacks.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/compression.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/__pycache__/compression.cpython-310.pyc deleted file mode 100644 index b6dd5bbe..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/compression.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/__pycache__/config.cpython-310.pyc deleted file mode 100644 index 1838bdfd..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/config.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/conftest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/__pycache__/conftest.cpython-310.pyc deleted file mode 100644 index 487cc335..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/conftest.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/core.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/__pycache__/core.cpython-310.pyc deleted file mode 100644 index 1dbb4dc4..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/core.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/dircache.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/__pycache__/dircache.cpython-310.pyc deleted file mode 100644 index 187d54b8..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/dircache.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/__pycache__/exceptions.cpython-310.pyc deleted file mode 100644 index c1cdc15f..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/exceptions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/fuse.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/__pycache__/fuse.cpython-310.pyc deleted file mode 100644 index ce841c6e..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/fuse.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/generic.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/__pycache__/generic.cpython-310.pyc deleted file mode 100644 index 8f67b6b1..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/generic.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/gui.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/__pycache__/gui.cpython-310.pyc deleted file mode 100644 index f4af44c3..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/gui.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/json.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/__pycache__/json.cpython-310.pyc deleted file mode 100644 index 3e620ab0..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/json.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/mapping.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/__pycache__/mapping.cpython-310.pyc deleted file mode 100644 index a4d36ea7..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/mapping.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/parquet.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/__pycache__/parquet.cpython-310.pyc deleted file mode 100644 index a76499f4..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/parquet.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/registry.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/__pycache__/registry.cpython-310.pyc deleted file mode 100644 index 2999a35d..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/registry.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/spec.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/__pycache__/spec.cpython-310.pyc deleted file mode 100644 index f50ac28c..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/spec.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/transaction.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/__pycache__/transaction.cpython-310.pyc deleted file mode 100644 index 3a6b5e56..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/transaction.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/__pycache__/utils.cpython-310.pyc deleted file mode 100644 index ab044b90..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/__pycache__/utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index aa7925a8..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/arrow.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/arrow.cpython-310.pyc deleted file mode 100644 index 442089c8..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/arrow.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/asyn_wrapper.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/asyn_wrapper.cpython-310.pyc deleted file mode 100644 index c0eb779f..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/asyn_wrapper.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/cache_mapper.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/cache_mapper.cpython-310.pyc deleted file mode 100644 index 7d32019f..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/cache_mapper.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/cache_metadata.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/cache_metadata.cpython-310.pyc deleted file mode 100644 index 7ab4365b..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/cache_metadata.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/cached.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/cached.cpython-310.pyc deleted file mode 100644 index a507240a..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/cached.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/dask.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/dask.cpython-310.pyc deleted file mode 100644 index 27b05319..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/dask.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/data.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/data.cpython-310.pyc deleted file mode 100644 index f355ae64..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/data.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/dbfs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/dbfs.cpython-310.pyc deleted file mode 100644 index f8c3c613..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/dbfs.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/dirfs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/dirfs.cpython-310.pyc deleted file mode 100644 index f3745fd8..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/dirfs.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/ftp.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/ftp.cpython-310.pyc deleted file mode 100644 index b4f5123b..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/ftp.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/git.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/git.cpython-310.pyc deleted file mode 100644 index 5dfd6326..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/git.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/github.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/github.cpython-310.pyc deleted file mode 100644 index f1151f84..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/github.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/http.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/http.cpython-310.pyc deleted file mode 100644 index ee572ffc..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/http.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/http_sync.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/http_sync.cpython-310.pyc deleted file mode 100644 index f7fe4820..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/http_sync.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/jupyter.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/jupyter.cpython-310.pyc deleted file mode 100644 index 429bc0b8..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/jupyter.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/libarchive.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/libarchive.cpython-310.pyc deleted file mode 100644 index 17de362b..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/libarchive.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/local.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/local.cpython-310.pyc deleted file mode 100644 index d43bfcd6..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/local.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/memory.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/memory.cpython-310.pyc deleted file mode 100644 index 0ab0fcfb..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/memory.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/reference.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/reference.cpython-310.pyc deleted file mode 100644 index af501f78..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/reference.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/sftp.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/sftp.cpython-310.pyc deleted file mode 100644 index 954109f2..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/sftp.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/smb.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/smb.cpython-310.pyc deleted file mode 100644 index 0ad2b192..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/smb.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/tar.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/tar.cpython-310.pyc deleted file mode 100644 index 981aefe5..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/tar.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/webhdfs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/webhdfs.cpython-310.pyc deleted file mode 100644 index d1d02c7a..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/webhdfs.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/zip.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/zip.cpython-310.pyc deleted file mode 100644 index d720bf1e..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/implementations/__pycache__/zip.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 38461cb4..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/common.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/common.cpython-310.pyc deleted file mode 100644 index 7d416fd5..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/common.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/copy.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/copy.cpython-310.pyc deleted file mode 100644 index e6587f09..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/copy.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/get.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/get.cpython-310.pyc deleted file mode 100644 index 89e4e990..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/get.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/mv.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/mv.cpython-310.pyc deleted file mode 100644 index 451469f8..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/mv.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/open.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/open.cpython-310.pyc deleted file mode 100644 index a2c099ea..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/open.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/pipe.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/pipe.cpython-310.pyc deleted file mode 100644 index 0f59a311..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/pipe.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/put.cpython-310.pyc b/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/put.cpython-310.pyc deleted file mode 100644 index 9ff5cdb4..00000000 Binary files a/.venv/lib/python3.10/site-packages/fsspec/tests/abstract/__pycache__/put.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/_async_resumable_media/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/_async_resumable_media/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index ec477627..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/_async_resumable_media/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/_async_resumable_media/__pycache__/_download.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/_async_resumable_media/__pycache__/_download.cpython-310.pyc deleted file mode 100644 index 591dcc0c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/_async_resumable_media/__pycache__/_download.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/_async_resumable_media/__pycache__/_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/_async_resumable_media/__pycache__/_helpers.cpython-310.pyc deleted file mode 100644 index 032a2b67..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/_async_resumable_media/__pycache__/_helpers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/_async_resumable_media/__pycache__/_upload.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/_async_resumable_media/__pycache__/_upload.cpython-310.pyc deleted file mode 100644 index 6c0484ee..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/_async_resumable_media/__pycache__/_upload.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/_async_resumable_media/requests/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/_async_resumable_media/requests/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 61702440..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/_async_resumable_media/requests/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/_async_resumable_media/requests/__pycache__/_request_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/_async_resumable_media/requests/__pycache__/_request_helpers.cpython-310.pyc deleted file mode 100644 index 0213040d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/_async_resumable_media/requests/__pycache__/_request_helpers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/_async_resumable_media/requests/__pycache__/download.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/_async_resumable_media/requests/__pycache__/download.cpython-310.pyc deleted file mode 100644 index 8193df33..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/_async_resumable_media/requests/__pycache__/download.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/_async_resumable_media/requests/__pycache__/upload.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/_async_resumable_media/requests/__pycache__/upload.cpython-310.pyc deleted file mode 100644 index 1ceaa8c7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/_async_resumable_media/requests/__pycache__/upload.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/_upb/_message.abi3.so b/.venv/lib/python3.10/site-packages/google/_upb/_message.abi3.so old mode 100755 new mode 100644 index b559107d..8f9ed854 Binary files a/.venv/lib/python3.10/site-packages/google/_upb/_message.abi3.so and b/.venv/lib/python3.10/site-packages/google/_upb/_message.abi3.so differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/__pycache__/__init__.cpython-310.pyc index 61e1b70f..49f9192e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/__pycache__/runners.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/__pycache__/runners.cpython-310.pyc index fe8aeff0..74362880 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/__pycache__/runners.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/__pycache__/runners.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/__pycache__/telemetry.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/__pycache__/telemetry.cpython-310.pyc index b21357b5..acb6d15d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/__pycache__/telemetry.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/__pycache__/telemetry.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/__pycache__/version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/__pycache__/version.cpython-310.pyc index aed16f35..a1379d10 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/__pycache__/version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/__pycache__/version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/__init__.cpython-310.pyc index 7bb27bcc..9eceb8ec 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/active_streaming_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/active_streaming_tool.cpython-310.pyc index 10ec2f02..8a0ab1b5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/active_streaming_tool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/active_streaming_tool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/base_agent.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/base_agent.cpython-310.pyc index 0408104f..8318ae8f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/base_agent.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/base_agent.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/callback_context.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/callback_context.cpython-310.pyc index a6268231..8852007a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/callback_context.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/callback_context.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/invocation_context.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/invocation_context.cpython-310.pyc index f966cf2e..e4bf68b7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/invocation_context.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/invocation_context.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/langgraph_agent.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/langgraph_agent.cpython-310.pyc deleted file mode 100644 index 0fcc6a11..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/langgraph_agent.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/live_request_queue.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/live_request_queue.cpython-310.pyc index a55af23e..da56da2b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/live_request_queue.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/live_request_queue.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/llm_agent.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/llm_agent.cpython-310.pyc index afdecdf1..d8c2c320 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/llm_agent.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/llm_agent.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/loop_agent.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/loop_agent.cpython-310.pyc index f415ae13..cc724ab8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/loop_agent.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/loop_agent.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/parallel_agent.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/parallel_agent.cpython-310.pyc index a96ab8f1..79af2ad9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/parallel_agent.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/parallel_agent.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/readonly_context.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/readonly_context.cpython-310.pyc index a5ab37e2..b51e4156 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/readonly_context.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/readonly_context.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/remote_agent.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/remote_agent.cpython-310.pyc deleted file mode 100644 index 131e2581..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/remote_agent.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/run_config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/run_config.cpython-310.pyc index 5bb539b0..5bb3865d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/run_config.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/run_config.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/sequential_agent.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/sequential_agent.cpython-310.pyc index fe3b193c..2d92a75c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/sequential_agent.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/sequential_agent.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/transcription_entry.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/transcription_entry.cpython-310.pyc index 8893d692..9ee96248 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/transcription_entry.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/transcription_entry.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/artifacts/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/artifacts/__pycache__/__init__.cpython-310.pyc index 699d35ad..9a341167 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/artifacts/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/artifacts/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/artifacts/__pycache__/base_artifact_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/artifacts/__pycache__/base_artifact_service.cpython-310.pyc index 86c36a25..fad77f39 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/artifacts/__pycache__/base_artifact_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/artifacts/__pycache__/base_artifact_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/artifacts/__pycache__/gcs_artifact_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/artifacts/__pycache__/gcs_artifact_service.cpython-310.pyc index fa1a7c7d..68bcb6a4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/artifacts/__pycache__/gcs_artifact_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/artifacts/__pycache__/gcs_artifact_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/artifacts/__pycache__/in_memory_artifact_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/artifacts/__pycache__/in_memory_artifact_service.cpython-310.pyc index 9e5482d5..18b453c5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/artifacts/__pycache__/in_memory_artifact_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/artifacts/__pycache__/in_memory_artifact_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/__init__.cpython-310.pyc index 7f146e87..3c58cd11 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_credential.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_credential.cpython-310.pyc index 43a2aa98..60574e75 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_credential.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_credential.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_handler.cpython-310.pyc index 9f43bcf2..fd8c4af5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_preprocessor.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_preprocessor.cpython-310.pyc index 59752759..3f0e6b8f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_preprocessor.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_preprocessor.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_schemes.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_schemes.cpython-310.pyc index 33065c62..23bd2e66 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_schemes.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_schemes.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_tool.cpython-310.pyc index 92e8b7ae..a52ec2eb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_tool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_tool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 877f40ae..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/__main__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/__main__.cpython-310.pyc deleted file mode 100644 index cdde507f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/__main__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/agent_graph.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/agent_graph.cpython-310.pyc deleted file mode 100644 index 3813e377..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/agent_graph.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/cli.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/cli.cpython-310.pyc deleted file mode 100644 index 39fc03c0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/cli.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/cli_create.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/cli_create.cpython-310.pyc deleted file mode 100644 index 473f81c1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/cli_create.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/cli_deploy.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/cli_deploy.cpython-310.pyc deleted file mode 100644 index 7e64d448..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/cli_deploy.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/cli_eval.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/cli_eval.cpython-310.pyc deleted file mode 100644 index e3a6b585..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/cli_eval.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/cli_tools_click.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/cli_tools_click.cpython-310.pyc deleted file mode 100644 index 65cd4141..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/cli_tools_click.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/fast_api.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/fast_api.cpython-310.pyc deleted file mode 100644 index b309f871..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/cli/__pycache__/fast_api.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/cli/utils/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/cli/utils/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 8a8420f2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/cli/utils/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/cli/utils/__pycache__/envs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/cli/utils/__pycache__/envs.cpython-310.pyc deleted file mode 100644 index 5ea43eb1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/cli/utils/__pycache__/envs.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/cli/utils/__pycache__/evals.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/cli/utils/__pycache__/evals.cpython-310.pyc deleted file mode 100644 index 3dbdc4bb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/cli/utils/__pycache__/evals.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/cli/utils/__pycache__/logs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/cli/utils/__pycache__/logs.cpython-310.pyc deleted file mode 100644 index d9366b7d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/cli/utils/__pycache__/logs.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/__init__.cpython-310.pyc index 791b9b44..ec9c33fa 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/base_code_executor.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/base_code_executor.cpython-310.pyc index e3e96afa..f8d606f7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/base_code_executor.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/base_code_executor.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/code_execution_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/code_execution_utils.cpython-310.pyc index 017d783f..4612f42a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/code_execution_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/code_execution_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/code_executor_context.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/code_executor_context.cpython-310.pyc index deb4e336..d9e5c0a8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/code_executor_context.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/code_executor_context.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/container_code_executor.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/container_code_executor.cpython-310.pyc index ed74ba43..1a03504b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/container_code_executor.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/container_code_executor.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/unsafe_local_code_executor.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/unsafe_local_code_executor.cpython-310.pyc index 69d9fd33..d3bc32ad 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/unsafe_local_code_executor.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/unsafe_local_code_executor.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/vertex_ai_code_executor.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/vertex_ai_code_executor.cpython-310.pyc index b56dcbb7..f5f11f8f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/vertex_ai_code_executor.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/vertex_ai_code_executor.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/evaluation/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/evaluation/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 0c43f122..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/evaluation/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/evaluation/__pycache__/agent_evaluator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/evaluation/__pycache__/agent_evaluator.cpython-310.pyc deleted file mode 100644 index d06e7e1d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/evaluation/__pycache__/agent_evaluator.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/evaluation/__pycache__/evaluation_constants.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/evaluation/__pycache__/evaluation_constants.cpython-310.pyc deleted file mode 100644 index e688f7c3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/evaluation/__pycache__/evaluation_constants.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/evaluation/__pycache__/evaluation_generator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/evaluation/__pycache__/evaluation_generator.cpython-310.pyc deleted file mode 100644 index 799c8699..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/evaluation/__pycache__/evaluation_generator.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/evaluation/__pycache__/response_evaluator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/evaluation/__pycache__/response_evaluator.cpython-310.pyc deleted file mode 100644 index 4d928452..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/evaluation/__pycache__/response_evaluator.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/evaluation/__pycache__/trajectory_evaluator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/evaluation/__pycache__/trajectory_evaluator.cpython-310.pyc deleted file mode 100644 index 7e67f58d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/evaluation/__pycache__/trajectory_evaluator.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/events/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/events/__pycache__/__init__.cpython-310.pyc index ebaba757..f0c069da 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/events/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/events/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/events/__pycache__/event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/events/__pycache__/event.cpython-310.pyc index 4f2c5add..f866d118 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/events/__pycache__/event.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/events/__pycache__/event.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/events/__pycache__/event_actions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/events/__pycache__/event_actions.cpython-310.pyc index 9073f33e..d2052f70 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/events/__pycache__/event_actions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/events/__pycache__/event_actions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/__init__.cpython-310.pyc index 20ca0758..e6de50d0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/base_example_provider.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/base_example_provider.cpython-310.pyc index 436156aa..2b350a56 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/base_example_provider.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/base_example_provider.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/example.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/example.cpython-310.pyc index bd6b0802..9f2628de 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/example.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/example.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/example_util.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/example_util.cpython-310.pyc index 34bd3c4b..59bc7fd7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/example_util.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/example_util.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/vertex_ai_example_store.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/vertex_ai_example_store.cpython-310.pyc index a5245dd8..8210921a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/vertex_ai_example_store.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/vertex_ai_example_store.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/flows/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/flows/__pycache__/__init__.cpython-310.pyc index ca154409..301c8f7c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/flows/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/__init__.cpython-310.pyc index 7f6e77a0..c78f0063 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/_base_llm_processor.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/_base_llm_processor.cpython-310.pyc index b8265176..64301a5f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/_base_llm_processor.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/_base_llm_processor.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/_code_execution.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/_code_execution.cpython-310.pyc index efa8143c..2c129858 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/_code_execution.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/_code_execution.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/_nl_planning.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/_nl_planning.cpython-310.pyc index 9ada2054..f7256ee9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/_nl_planning.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/_nl_planning.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/agent_transfer.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/agent_transfer.cpython-310.pyc index 5d143bfd..6d192f05 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/agent_transfer.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/agent_transfer.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/audio_transcriber.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/audio_transcriber.cpython-310.pyc deleted file mode 100644 index ce302784..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/audio_transcriber.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/auto_flow.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/auto_flow.cpython-310.pyc index 3184c23f..154bb524 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/auto_flow.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/auto_flow.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/base_llm_flow.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/base_llm_flow.cpython-310.pyc index 51f28a7e..fabb3840 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/base_llm_flow.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/base_llm_flow.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/basic.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/basic.cpython-310.pyc index aaa65194..d72e1232 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/basic.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/basic.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/contents.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/contents.cpython-310.pyc index f2eddf91..173a975c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/contents.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/contents.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/functions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/functions.cpython-310.pyc index 66a31a61..a9f0e0c6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/functions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/functions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/identity.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/identity.cpython-310.pyc index c43077cf..edea6a28 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/identity.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/identity.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/instructions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/instructions.cpython-310.pyc index 105465f0..a3e004e4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/instructions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/instructions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/single_flow.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/single_flow.cpython-310.pyc index 05f7b4ca..503687b6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/single_flow.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/single_flow.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/memory/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/memory/__pycache__/__init__.cpython-310.pyc index 6dc0c9f6..64aab746 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/memory/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/memory/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/memory/__pycache__/base_memory_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/memory/__pycache__/base_memory_service.cpython-310.pyc index 15970904..02e15aae 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/memory/__pycache__/base_memory_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/memory/__pycache__/base_memory_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/memory/__pycache__/in_memory_memory_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/memory/__pycache__/in_memory_memory_service.cpython-310.pyc index cd25423e..182d03f2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/memory/__pycache__/in_memory_memory_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/memory/__pycache__/in_memory_memory_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/memory/__pycache__/vertex_ai_rag_memory_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/memory/__pycache__/vertex_ai_rag_memory_service.cpython-310.pyc index 516e1d73..b112257e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/memory/__pycache__/vertex_ai_rag_memory_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/memory/__pycache__/vertex_ai_rag_memory_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/__init__.cpython-310.pyc index 5dbb45eb..57fb07b7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/anthropic_llm.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/anthropic_llm.cpython-310.pyc deleted file mode 100644 index 9e04d0c9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/anthropic_llm.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/base_llm.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/base_llm.cpython-310.pyc index 8f05f387..68985a90 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/base_llm.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/base_llm.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/base_llm_connection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/base_llm_connection.cpython-310.pyc index db10217d..32a948da 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/base_llm_connection.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/base_llm_connection.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/gemini_llm_connection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/gemini_llm_connection.cpython-310.pyc index cb1d6143..60b2eb30 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/gemini_llm_connection.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/gemini_llm_connection.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/google_llm.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/google_llm.cpython-310.pyc index 0f888d86..71aa21c1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/google_llm.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/google_llm.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/lite_llm.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/lite_llm.cpython-310.pyc index e6c9d037..8d1816d0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/lite_llm.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/lite_llm.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/llm_request.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/llm_request.cpython-310.pyc index d52feb4c..edd5f026 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/llm_request.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/llm_request.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/llm_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/llm_response.cpython-310.pyc index 96b82b0c..353dbe51 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/llm_response.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/llm_response.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/registry.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/registry.cpython-310.pyc index 0a7ec2da..f4508b25 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/registry.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/registry.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/planners/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/planners/__pycache__/__init__.cpython-310.pyc index 246f4539..a41ffc34 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/planners/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/planners/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/planners/__pycache__/base_planner.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/planners/__pycache__/base_planner.cpython-310.pyc index 3eecd71c..92bc694a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/planners/__pycache__/base_planner.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/planners/__pycache__/base_planner.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/planners/__pycache__/built_in_planner.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/planners/__pycache__/built_in_planner.cpython-310.pyc index 1347abd5..500bc299 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/planners/__pycache__/built_in_planner.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/planners/__pycache__/built_in_planner.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/planners/__pycache__/plan_re_act_planner.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/planners/__pycache__/plan_re_act_planner.cpython-310.pyc index b188e272..370247ff 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/planners/__pycache__/plan_re_act_planner.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/planners/__pycache__/plan_re_act_planner.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/__init__.cpython-310.pyc index 8a186cf0..50a2188d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/base_session_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/base_session_service.cpython-310.pyc index 46b31212..5c43cfc8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/base_session_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/base_session_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/database_session_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/database_session_service.cpython-310.pyc index 02414fac..99776571 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/database_session_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/database_session_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/in_memory_session_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/in_memory_session_service.cpython-310.pyc index 3f4d0b4c..0b3e0dfc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/in_memory_session_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/in_memory_session_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/session.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/session.cpython-310.pyc index f78e4522..32ab95c6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/session.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/session.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/state.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/state.cpython-310.pyc index 4ecc5075..ab0b1956 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/state.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/state.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/vertex_ai_session_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/vertex_ai_session_service.cpython-310.pyc index 05d7869b..877333d3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/vertex_ai_session_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/vertex_ai_session_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/__init__.cpython-310.pyc index 1f5f9fdc..29bdbb01 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/_automatic_function_calling_util.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/_automatic_function_calling_util.cpython-310.pyc index 14868117..a45a6ee8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/_automatic_function_calling_util.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/_automatic_function_calling_util.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/agent_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/agent_tool.cpython-310.pyc deleted file mode 100644 index d1748634..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/agent_tool.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/base_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/base_tool.cpython-310.pyc index 8cf34e64..34bd26fd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/base_tool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/base_tool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/built_in_code_execution_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/built_in_code_execution_tool.cpython-310.pyc index df6f6a8f..eb345d3d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/built_in_code_execution_tool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/built_in_code_execution_tool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/crewai_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/crewai_tool.cpython-310.pyc deleted file mode 100644 index a5695a16..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/crewai_tool.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/example_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/example_tool.cpython-310.pyc index c0969f67..e2f20abb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/example_tool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/example_tool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/exit_loop_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/exit_loop_tool.cpython-310.pyc index c0af415e..a16977da 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/exit_loop_tool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/exit_loop_tool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/function_parameter_parse_util.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/function_parameter_parse_util.cpython-310.pyc index 446e93d8..829312cb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/function_parameter_parse_util.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/function_parameter_parse_util.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/function_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/function_tool.cpython-310.pyc index 2b61ed1f..d4698809 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/function_tool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/function_tool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/get_user_choice_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/get_user_choice_tool.cpython-310.pyc index 8f1c6f82..58a9d280 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/get_user_choice_tool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/get_user_choice_tool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/google_search_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/google_search_tool.cpython-310.pyc index 44fbb48f..a966e154 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/google_search_tool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/google_search_tool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/langchain_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/langchain_tool.cpython-310.pyc deleted file mode 100644 index 004e4afd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/langchain_tool.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/load_artifacts_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/load_artifacts_tool.cpython-310.pyc index a0edc055..ac49b414 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/load_artifacts_tool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/load_artifacts_tool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/load_memory_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/load_memory_tool.cpython-310.pyc index 0c5c7031..2038541a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/load_memory_tool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/load_memory_tool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/load_web_page.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/load_web_page.cpython-310.pyc deleted file mode 100644 index 4c5e62a9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/load_web_page.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/long_running_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/long_running_tool.cpython-310.pyc index 627a3b81..48fe90b6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/long_running_tool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/long_running_tool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/preload_memory_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/preload_memory_tool.cpython-310.pyc index 9511a5f8..7fb90bc4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/preload_memory_tool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/preload_memory_tool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/tool_context.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/tool_context.cpython-310.pyc index 9b8edacd..f6a518f1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/tool_context.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/tool_context.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/toolbox_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/toolbox_tool.cpython-310.pyc deleted file mode 100644 index c6adc3df..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/toolbox_tool.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/transfer_to_agent_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/transfer_to_agent_tool.cpython-310.pyc index 372093d1..f6fa0d70 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/transfer_to_agent_tool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/transfer_to_agent_tool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/vertex_ai_search_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/vertex_ai_search_tool.cpython-310.pyc index 27ddf77e..84169c24 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/vertex_ai_search_tool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/vertex_ai_search_tool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/__pycache__/__init__.cpython-310.pyc index 728a5276..281a96e2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/__pycache__/apihub_toolset.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/__pycache__/apihub_toolset.cpython-310.pyc index ba7b775d..fa408b40 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/__pycache__/apihub_toolset.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/__pycache__/apihub_toolset.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/clients/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/clients/__pycache__/__init__.cpython-310.pyc index daebd091..de3acc03 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/clients/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/clients/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/clients/__pycache__/apihub_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/clients/__pycache__/apihub_client.cpython-310.pyc index 574eb984..ab252cf5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/clients/__pycache__/apihub_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/clients/__pycache__/apihub_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/clients/__pycache__/secret_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/clients/__pycache__/secret_client.cpython-310.pyc deleted file mode 100644 index b03fd1ed..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/clients/__pycache__/secret_client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/application_integration_tool/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/application_integration_tool/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 2a89535e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/application_integration_tool/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/application_integration_tool/__pycache__/application_integration_toolset.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/application_integration_tool/__pycache__/application_integration_toolset.cpython-310.pyc deleted file mode 100644 index fd5e58dd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/application_integration_tool/__pycache__/application_integration_toolset.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/application_integration_tool/clients/__pycache__/connections_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/application_integration_tool/clients/__pycache__/connections_client.cpython-310.pyc deleted file mode 100644 index 5bd69e6d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/application_integration_tool/clients/__pycache__/connections_client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/application_integration_tool/clients/__pycache__/integration_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/application_integration_tool/clients/__pycache__/integration_client.cpython-310.pyc deleted file mode 100644 index fc8cf250..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/application_integration_tool/clients/__pycache__/integration_client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/google_api_tool/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/google_api_tool/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 289bbcf3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/google_api_tool/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/google_api_tool/__pycache__/google_api_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/google_api_tool/__pycache__/google_api_tool.cpython-310.pyc deleted file mode 100644 index 29c437ad..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/google_api_tool/__pycache__/google_api_tool.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/google_api_tool/__pycache__/google_api_tool_set.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/google_api_tool/__pycache__/google_api_tool_set.cpython-310.pyc deleted file mode 100644 index c2e94b63..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/google_api_tool/__pycache__/google_api_tool_set.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/google_api_tool/__pycache__/google_api_tool_sets.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/google_api_tool/__pycache__/google_api_tool_sets.cpython-310.pyc deleted file mode 100644 index b8e7252b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/google_api_tool/__pycache__/google_api_tool_sets.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/google_api_tool/__pycache__/googleapi_to_openapi_converter.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/google_api_tool/__pycache__/googleapi_to_openapi_converter.cpython-310.pyc deleted file mode 100644 index 293004d4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/google_api_tool/__pycache__/googleapi_to_openapi_converter.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/__init__.cpython-310.pyc index 2613fb4a..7ccf0b2b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/conversion_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/conversion_utils.cpython-310.pyc index b9676041..36dd0521 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/conversion_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/conversion_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/mcp_session_manager.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/mcp_session_manager.cpython-310.pyc index 1d34a344..a362618f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/mcp_session_manager.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/mcp_session_manager.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/mcp_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/mcp_tool.cpython-310.pyc index 0040fc7f..fd05cd06 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/mcp_tool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/mcp_tool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/mcp_toolset.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/mcp_toolset.cpython-310.pyc index f698db03..b3a71262 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/mcp_toolset.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/mcp_toolset.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/__pycache__/__init__.cpython-310.pyc index 1529128d..e4bc06a7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/__pycache__/__init__.cpython-310.pyc index 4e851b7b..75e34c0d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/__pycache__/auth_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/__pycache__/auth_helpers.cpython-310.pyc index 5f1da995..d256a872 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/__pycache__/auth_helpers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/__pycache__/auth_helpers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/credential_exchangers/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/credential_exchangers/__pycache__/__init__.cpython-310.pyc index fd346794..51f1b3ac 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/credential_exchangers/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/credential_exchangers/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/credential_exchangers/__pycache__/auto_auth_credential_exchanger.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/credential_exchangers/__pycache__/auto_auth_credential_exchanger.cpython-310.pyc index 41e34cc6..ddb23171 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/credential_exchangers/__pycache__/auto_auth_credential_exchanger.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/credential_exchangers/__pycache__/auto_auth_credential_exchanger.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/credential_exchangers/__pycache__/base_credential_exchanger.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/credential_exchangers/__pycache__/base_credential_exchanger.cpython-310.pyc index c24d98ac..164636a5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/credential_exchangers/__pycache__/base_credential_exchanger.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/credential_exchangers/__pycache__/base_credential_exchanger.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/credential_exchangers/__pycache__/oauth2_exchanger.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/credential_exchangers/__pycache__/oauth2_exchanger.cpython-310.pyc index a034a6f9..ae4cd798 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/credential_exchangers/__pycache__/oauth2_exchanger.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/credential_exchangers/__pycache__/oauth2_exchanger.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/credential_exchangers/__pycache__/service_account_exchanger.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/credential_exchangers/__pycache__/service_account_exchanger.cpython-310.pyc index 06554a6e..197d8b52 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/credential_exchangers/__pycache__/service_account_exchanger.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/credential_exchangers/__pycache__/service_account_exchanger.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/common/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/common/__pycache__/__init__.cpython-310.pyc index 25533f13..a221ab73 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/common/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/common/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/common/__pycache__/common.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/common/__pycache__/common.cpython-310.pyc index 609b768f..2dc028d7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/common/__pycache__/common.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/common/__pycache__/common.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/__init__.cpython-310.pyc index acfb4ee8..b73930cc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/openapi_spec_parser.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/openapi_spec_parser.cpython-310.pyc index e071094e..6a8abd4b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/openapi_spec_parser.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/openapi_spec_parser.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/openapi_toolset.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/openapi_toolset.cpython-310.pyc index 6e4f8a65..00113674 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/openapi_toolset.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/openapi_toolset.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/operation_parser.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/operation_parser.cpython-310.pyc index 057779b5..6adfae60 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/operation_parser.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/operation_parser.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/rest_api_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/rest_api_tool.cpython-310.pyc index 93d16c83..f51616e3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/rest_api_tool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/rest_api_tool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/tool_auth_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/tool_auth_handler.cpython-310.pyc index 23288b61..9c098671 100644 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/tool_auth_handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/tool_auth_handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/retrieval/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/retrieval/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 9b851042..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/retrieval/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/retrieval/__pycache__/base_retrieval_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/retrieval/__pycache__/base_retrieval_tool.cpython-310.pyc deleted file mode 100644 index e731dee0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/retrieval/__pycache__/base_retrieval_tool.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/retrieval/__pycache__/files_retrieval.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/retrieval/__pycache__/files_retrieval.cpython-310.pyc deleted file mode 100644 index 02600cf8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/retrieval/__pycache__/files_retrieval.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/retrieval/__pycache__/llama_index_retrieval.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/retrieval/__pycache__/llama_index_retrieval.cpython-310.pyc deleted file mode 100644 index 8cc13264..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/retrieval/__pycache__/llama_index_retrieval.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/adk/tools/retrieval/__pycache__/vertex_ai_rag_retrieval.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/adk/tools/retrieval/__pycache__/vertex_ai_rag_retrieval.cpython-310.pyc deleted file mode 100644 index b45935c5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/retrieval/__pycache__/vertex_ai_rag_retrieval.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/annotations_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/annotations_pb2.cpython-310.pyc index ccfac219..8ea39841 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/annotations_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api/__pycache__/annotations_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/auth_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/auth_pb2.cpython-310.pyc deleted file mode 100644 index 476db1dc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/auth_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/backend_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/backend_pb2.cpython-310.pyc deleted file mode 100644 index bac137d0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/backend_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/billing_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/billing_pb2.cpython-310.pyc deleted file mode 100644 index 199d5c33..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/billing_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/client_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/client_pb2.cpython-310.pyc index 8b29882f..6a968290 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/client_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api/__pycache__/client_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/config_change_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/config_change_pb2.cpython-310.pyc deleted file mode 100644 index 767b9302..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/config_change_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/consumer_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/consumer_pb2.cpython-310.pyc deleted file mode 100644 index e7c935db..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/consumer_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/context_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/context_pb2.cpython-310.pyc deleted file mode 100644 index 65fd10bd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/context_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/control_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/control_pb2.cpython-310.pyc deleted file mode 100644 index ca78bc41..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/control_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/distribution_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/distribution_pb2.cpython-310.pyc deleted file mode 100644 index b9293856..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/distribution_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/documentation_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/documentation_pb2.cpython-310.pyc deleted file mode 100644 index 211b494b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/documentation_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/endpoint_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/endpoint_pb2.cpython-310.pyc deleted file mode 100644 index 59e6f622..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/endpoint_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/error_reason_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/error_reason_pb2.cpython-310.pyc deleted file mode 100644 index c8876837..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/error_reason_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/field_behavior_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/field_behavior_pb2.cpython-310.pyc index 8f1fa1c7..3e22fbe0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/field_behavior_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api/__pycache__/field_behavior_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/field_info_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/field_info_pb2.cpython-310.pyc deleted file mode 100644 index 19ed00a9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/field_info_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/http_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/http_pb2.cpython-310.pyc index 1a227c0f..8e5631bc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/http_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api/__pycache__/http_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/httpbody_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/httpbody_pb2.cpython-310.pyc index 2509c332..6e7b698e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/httpbody_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api/__pycache__/httpbody_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/label_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/label_pb2.cpython-310.pyc deleted file mode 100644 index 0d0764b5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/label_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/launch_stage_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/launch_stage_pb2.cpython-310.pyc index db0a3cb6..4a9da7fd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/launch_stage_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api/__pycache__/launch_stage_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/log_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/log_pb2.cpython-310.pyc deleted file mode 100644 index e3d1e313..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/log_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/logging_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/logging_pb2.cpython-310.pyc deleted file mode 100644 index 99fffb27..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/logging_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/metric_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/metric_pb2.cpython-310.pyc deleted file mode 100644 index f9aee631..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/metric_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/monitored_resource_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/monitored_resource_pb2.cpython-310.pyc deleted file mode 100644 index ef10668d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/monitored_resource_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/monitoring_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/monitoring_pb2.cpython-310.pyc deleted file mode 100644 index 0a95bef1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/monitoring_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/policy_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/policy_pb2.cpython-310.pyc deleted file mode 100644 index 3f56db7c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/policy_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/quota_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/quota_pb2.cpython-310.pyc deleted file mode 100644 index f2febd25..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/quota_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/resource_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/resource_pb2.cpython-310.pyc index 57f8ac03..c456d617 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/resource_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api/__pycache__/resource_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/routing_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/routing_pb2.cpython-310.pyc deleted file mode 100644 index 77bdd7a1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/routing_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/service_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/service_pb2.cpython-310.pyc deleted file mode 100644 index a041f960..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/service_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/source_info_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/source_info_pb2.cpython-310.pyc deleted file mode 100644 index 95f7e814..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/source_info_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/system_parameter_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/system_parameter_pb2.cpython-310.pyc deleted file mode 100644 index 7c487d47..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/system_parameter_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/usage_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/usage_pb2.cpython-310.pyc deleted file mode 100644 index a0fb7e75..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/usage_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api/__pycache__/visibility_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api/__pycache__/visibility_pb2.cpython-310.pyc deleted file mode 100644 index e5e10493..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/visibility_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/__init__.cpython-310.pyc index a49d69a4..48d409f4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/_rest_streaming_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/_rest_streaming_base.cpython-310.pyc index e4d7d80a..c8a60741 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/_rest_streaming_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/_rest_streaming_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/bidi.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/bidi.cpython-310.pyc deleted file mode 100644 index 6f940333..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/bidi.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/client_info.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/client_info.cpython-310.pyc index ba1291b2..31c27621 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/client_info.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/client_info.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/client_logging.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/client_logging.cpython-310.pyc index 9afe026d..8300c9fe 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/client_logging.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/client_logging.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/client_options.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/client_options.cpython-310.pyc index 1da91280..437b420d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/client_options.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/client_options.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/datetime_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/datetime_helpers.cpython-310.pyc index f0d9dced..5b0187aa 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/datetime_helpers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/datetime_helpers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/exceptions.cpython-310.pyc index bec5bc57..086bdb09 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/exceptions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/exceptions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/extended_operation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/extended_operation.cpython-310.pyc deleted file mode 100644 index c52fcf81..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/extended_operation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/general_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/general_helpers.cpython-310.pyc deleted file mode 100644 index 0fbf1d94..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/general_helpers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/grpc_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/grpc_helpers.cpython-310.pyc index 5d5e2baf..8c04d423 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/grpc_helpers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/grpc_helpers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/grpc_helpers_async.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/grpc_helpers_async.cpython-310.pyc index e6d2237e..7c33a6cb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/grpc_helpers_async.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/grpc_helpers_async.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/iam.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/iam.cpython-310.pyc index 9981dc75..b8e98a7e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/iam.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/iam.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/operation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/operation.cpython-310.pyc index ea393fa9..e601480a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/operation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/operation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/operation_async.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/operation_async.cpython-310.pyc index f606a6c2..216c8c56 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/operation_async.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/operation_async.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/page_iterator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/page_iterator.cpython-310.pyc index 3657e309..59f9a022 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/page_iterator.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/page_iterator.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/page_iterator_async.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/page_iterator_async.cpython-310.pyc index 4cf96dac..6a27403e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/page_iterator_async.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/page_iterator_async.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/path_template.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/path_template.cpython-310.pyc index be3365e2..8bf058d3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/path_template.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/path_template.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/protobuf_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/protobuf_helpers.cpython-310.pyc index d46d60e2..7d5c1873 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/protobuf_helpers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/protobuf_helpers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/rest_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/rest_helpers.cpython-310.pyc index 03ea7f06..23612d7b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/rest_helpers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/rest_helpers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/rest_streaming.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/rest_streaming.cpython-310.pyc index 1ccdaf95..73e81f6c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/rest_streaming.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/rest_streaming.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/rest_streaming_async.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/rest_streaming_async.cpython-310.pyc index e03c9c3f..5bd1e290 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/rest_streaming_async.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/rest_streaming_async.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/retry_async.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/retry_async.cpython-310.pyc index fda677ff..1f539e11 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/retry_async.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/retry_async.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/timeout.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/timeout.cpython-310.pyc index 46927494..eec300cb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/timeout.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/timeout.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/universe.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/universe.cpython-310.pyc deleted file mode 100644 index e13054a9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/universe.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/version.cpython-310.pyc index 88bd6957..d6727832 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/version_header.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/version_header.cpython-310.pyc deleted file mode 100644 index 99e2d24e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/version_header.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/__init__.cpython-310.pyc index 3ea4f198..198f195a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/_helpers.cpython-310.pyc index 9feb9116..791e282a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/_helpers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/_helpers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/async_future.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/async_future.cpython-310.pyc index 7dcacbe3..80fc9d85 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/async_future.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/async_future.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/base.cpython-310.pyc index e13c066c..6ae76356 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/polling.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/polling.cpython-310.pyc index 171b764f..fa70b717 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/polling.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/polling.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/__init__.cpython-310.pyc index 02eda84b..7ad7d6b7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/client_info.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/client_info.cpython-310.pyc index b5581624..7e99d3fb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/client_info.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/client_info.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/config.cpython-310.pyc index ad31536e..40e8c1b3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/config.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/config.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/config_async.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/config_async.cpython-310.pyc index 21cbc610..0962969c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/config_async.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/config_async.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/method.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/method.cpython-310.pyc index 10610c5d..963707d1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/method.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/method.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/method_async.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/method_async.cpython-310.pyc index 61f43f99..888fd458 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/method_async.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/method_async.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/routing_header.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/routing_header.cpython-310.pyc index 16f960c8..356b84b3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/routing_header.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/routing_header.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/__init__.cpython-310.pyc index 048064c0..342e27bb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/abstract_operations_base_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/abstract_operations_base_client.cpython-310.pyc index e0f2add8..aa258bc6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/abstract_operations_base_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/abstract_operations_base_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/abstract_operations_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/abstract_operations_client.cpython-310.pyc index 6bb86b80..7ec40e68 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/abstract_operations_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/abstract_operations_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/operations_async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/operations_async_client.cpython-310.pyc index 5dbfecd7..a61f139b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/operations_async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/operations_async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/operations_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/operations_client.cpython-310.pyc index e754edd2..ce8d9b4f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/operations_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/operations_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/operations_client_config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/operations_client_config.cpython-310.pyc deleted file mode 100644 index 85084aea..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/operations_client_config.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/operations_rest_client_async.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/operations_rest_client_async.cpython-310.pyc index c44015a3..856eecec 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/operations_rest_client_async.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/operations_rest_client_async.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/pagers.cpython-310.pyc index 82a2ad96..35fc137f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/pagers_async.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/pagers_async.cpython-310.pyc index 2efee521..1586bc64 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/pagers_async.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/pagers_async.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/pagers_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/pagers_base.cpython-310.pyc index 5d3eed14..6e8eb272 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/pagers_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/pagers_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/transports/__pycache__/__init__.cpython-310.pyc index 0f60e9fe..041790d7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/transports/__pycache__/base.cpython-310.pyc index 10b2134b..7d43ed85 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/transports/__pycache__/rest.cpython-310.pyc index b3afb681..64ba3a2a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/transports/__pycache__/rest_asyncio.cpython-310.pyc index 513e05a1..7c751866 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/__init__.cpython-310.pyc index 547bb33a..dd37bae5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_base.cpython-310.pyc index dd571b34..af6cd9ba 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_streaming.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_streaming.cpython-310.pyc index b093e40e..7e0c2e3e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_streaming.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_streaming.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_streaming_async.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_streaming_async.cpython-310.pyc index 681b55c1..30ec0e02 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_streaming_async.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_streaming_async.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_unary.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_unary.cpython-310.pyc index efebfa1b..83f4db88 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_unary.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_unary.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_unary_async.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_unary_async.cpython-310.pyc index 65a42b3c..21107c8f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_unary_async.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_unary_async.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/__init__.cpython-310.pyc index b2b648f0..6e2fc72b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_cloud_sdk.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_cloud_sdk.cpython-310.pyc index 68a615f6..87af8708 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_cloud_sdk.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_cloud_sdk.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_credentials_async.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_credentials_async.cpython-310.pyc deleted file mode 100644 index 2a267111..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_credentials_async.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_credentials_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_credentials_base.cpython-310.pyc index 9b28f41f..9ea3c2f2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_credentials_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_credentials_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_default.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_default.cpython-310.pyc index da68af09..619f1f31 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_default.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_default.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_default_async.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_default_async.cpython-310.pyc deleted file mode 100644 index 958df5cf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_default_async.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_exponential_backoff.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_exponential_backoff.cpython-310.pyc index be6b8e80..ee5622ef 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_exponential_backoff.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_exponential_backoff.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_helpers.cpython-310.pyc index ddf31e43..1227263f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_helpers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_helpers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_jwt_async.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_jwt_async.cpython-310.pyc deleted file mode 100644 index b1e4aee3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_jwt_async.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_oauth2client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_oauth2client.cpython-310.pyc deleted file mode 100644 index 7128909e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_oauth2client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_refresh_worker.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_refresh_worker.cpython-310.pyc index 601e65b8..b4612b14 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_refresh_worker.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_refresh_worker.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_service_account_info.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_service_account_info.cpython-310.pyc index e64040d2..7be098c4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_service_account_info.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_service_account_info.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/api_key.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/api_key.cpython-310.pyc index 14f4b7ee..2819684e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/api_key.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/api_key.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/app_engine.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/app_engine.cpython-310.pyc deleted file mode 100644 index fdf73798..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/app_engine.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/aws.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/aws.cpython-310.pyc deleted file mode 100644 index 821c9cd9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/aws.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/credentials.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/credentials.cpython-310.pyc index 8752b10b..bec701e4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/credentials.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/credentials.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/downscoped.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/downscoped.cpython-310.pyc deleted file mode 100644 index 11ccde32..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/downscoped.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/environment_vars.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/environment_vars.cpython-310.pyc index 0b3a05b0..e4157d1d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/environment_vars.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/environment_vars.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/exceptions.cpython-310.pyc index 016f099e..8f29a183 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/exceptions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/exceptions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/external_account.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/external_account.cpython-310.pyc deleted file mode 100644 index 18d350d9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/external_account.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/external_account_authorized_user.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/external_account_authorized_user.cpython-310.pyc deleted file mode 100644 index 3d43891f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/external_account_authorized_user.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/iam.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/iam.cpython-310.pyc index 9bbc9edd..9f6a3ff3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/iam.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/iam.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/identity_pool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/identity_pool.cpython-310.pyc deleted file mode 100644 index b35c350e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/identity_pool.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/impersonated_credentials.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/impersonated_credentials.cpython-310.pyc deleted file mode 100644 index 7e81a009..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/impersonated_credentials.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/jwt.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/jwt.cpython-310.pyc index 6d05051d..ccd54352 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/jwt.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/jwt.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/metrics.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/metrics.cpython-310.pyc index dad90754..5a1550c3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/metrics.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/metrics.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/pluggable.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/pluggable.cpython-310.pyc deleted file mode 100644 index 6aea28ea..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/pluggable.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/version.cpython-310.pyc index a486ba44..53b944e0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/__pycache__/version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/aio/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/aio/__pycache__/__init__.cpython-310.pyc index 8aad65d7..07d11eab 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/aio/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/aio/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/aio/__pycache__/credentials.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/aio/__pycache__/credentials.cpython-310.pyc index 2b0d27d5..4ff136f6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/aio/__pycache__/credentials.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/aio/__pycache__/credentials.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/aio/transport/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/aio/transport/__pycache__/__init__.cpython-310.pyc index b4db002c..b73f9c98 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/aio/transport/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/aio/transport/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/aio/transport/__pycache__/aiohttp.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/aio/transport/__pycache__/aiohttp.cpython-310.pyc index faf24dff..bb8e8ce8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/aio/transport/__pycache__/aiohttp.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/aio/transport/__pycache__/aiohttp.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/aio/transport/__pycache__/sessions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/aio/transport/__pycache__/sessions.cpython-310.pyc index 131bb383..c279af80 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/aio/transport/__pycache__/sessions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/aio/transport/__pycache__/sessions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/compute_engine/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/compute_engine/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 44688452..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/compute_engine/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/compute_engine/__pycache__/_metadata.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/compute_engine/__pycache__/_metadata.cpython-310.pyc deleted file mode 100644 index d03e7eaa..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/compute_engine/__pycache__/_metadata.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/compute_engine/__pycache__/credentials.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/compute_engine/__pycache__/credentials.cpython-310.pyc deleted file mode 100644 index 8727aac4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/compute_engine/__pycache__/credentials.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/__init__.cpython-310.pyc index ac00be68..2758525a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/_cryptography_rsa.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/_cryptography_rsa.cpython-310.pyc index baec403c..29d8c464 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/_cryptography_rsa.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/_cryptography_rsa.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/_helpers.cpython-310.pyc deleted file mode 100644 index f8501558..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/_helpers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/_python_rsa.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/_python_rsa.cpython-310.pyc deleted file mode 100644 index 17d848ab..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/_python_rsa.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/base.cpython-310.pyc index 25cf0437..a613c2bf 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/es256.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/es256.cpython-310.pyc index b4b66c11..6bb5154d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/es256.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/es256.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/rsa.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/rsa.cpython-310.pyc index ac65b37a..c9899f15 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/rsa.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/rsa.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/__init__.cpython-310.pyc index 1c6aeba0..54d3c9cd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/_aiohttp_requests.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/_aiohttp_requests.cpython-310.pyc deleted file mode 100644 index 7804fd68..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/_aiohttp_requests.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/_custom_tls_signer.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/_custom_tls_signer.cpython-310.pyc deleted file mode 100644 index 29f3139a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/_custom_tls_signer.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/_http_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/_http_client.cpython-310.pyc index 7d4a57c5..13130eba 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/_http_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/_http_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/_mtls_helper.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/_mtls_helper.cpython-310.pyc index b2f2406c..7de4619d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/_mtls_helper.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/_mtls_helper.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/_requests_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/_requests_base.cpython-310.pyc deleted file mode 100644 index ba7e2401..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/_requests_base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/grpc.cpython-310.pyc index e52a22c3..9b947373 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/mtls.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/mtls.cpython-310.pyc index 99d1ce3e..f35eb62d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/mtls.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/mtls.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/requests.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/requests.cpython-310.pyc index eb0ff83d..265e23a4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/requests.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/requests.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/urllib3.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/urllib3.cpython-310.pyc deleted file mode 100644 index 0c3d5095..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/urllib3.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/__pycache__/extended_operations_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/__pycache__/extended_operations_pb2.cpython-310.pyc deleted file mode 100644 index 6e8288e3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/__pycache__/extended_operations_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/__pycache__/version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/__pycache__/version.cpython-310.pyc index 7207f205..77e785c9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/__pycache__/version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/__pycache__/version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/_helpers/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/_helpers/__pycache__/__init__.cpython-310.pyc index 64426de1..77553129 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/_helpers/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/_helpers/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/_http/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/_http/__pycache__/__init__.cpython-310.pyc index 36afcb48..0ffa8ae1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/_http/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/_http/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/_testing/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/_testing/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index ff03c987..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/_testing/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/__init__.cpython-310.pyc index 5b53f140..2438f5b5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/_publisher_models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/_publisher_models.cpython-310.pyc index 6d8c2e60..97e85b83 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/_publisher_models.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/_publisher_models.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/_streaming_prediction.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/_streaming_prediction.cpython-310.pyc deleted file mode 100644 index 70bbc3b2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/_streaming_prediction.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/base.cpython-310.pyc index 50ba2a47..2afd3829 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/gapic_version.cpython-310.pyc deleted file mode 100644 index de1f3b8a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/gapic_version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/hyperparameter_tuning.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/hyperparameter_tuning.cpython-310.pyc index c8977fb3..c5db52f7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/hyperparameter_tuning.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/hyperparameter_tuning.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/initializer.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/initializer.cpython-310.pyc index 0fd15d85..0baebbcf 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/initializer.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/initializer.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/jobs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/jobs.cpython-310.pyc index 5b78a4d6..189787a2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/jobs.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/jobs.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/models.cpython-310.pyc index 0e5283e1..ca2cc344 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/models.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/models.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/persistent_resource.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/persistent_resource.cpython-310.pyc deleted file mode 100644 index b4d141f2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/persistent_resource.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/pipeline_job_schedules.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/pipeline_job_schedules.cpython-310.pyc index 951467f5..7d9c60b3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/pipeline_job_schedules.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/pipeline_job_schedules.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/pipeline_jobs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/pipeline_jobs.cpython-310.pyc index 5659a862..206465cc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/pipeline_jobs.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/pipeline_jobs.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/schedules.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/schedules.cpython-310.pyc index 4c3eaedb..4951e8bf 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/schedules.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/schedules.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/schema.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/schema.cpython-310.pyc index 44e88519..18be666c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/schema.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/schema.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/telemetry.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/telemetry.cpython-310.pyc index 89178775..29bdaf37 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/telemetry.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/telemetry.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/training_jobs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/training_jobs.cpython-310.pyc index e958f890..51b9803a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/training_jobs.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/training_jobs.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/version.cpython-310.pyc index 32679a0a..d262226e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/_mlflow_plugin/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/_mlflow_plugin/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 48bf8318..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/_mlflow_plugin/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/_mlflow_plugin/__pycache__/_vertex_mlflow_tracking.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/_mlflow_plugin/__pycache__/_vertex_mlflow_tracking.cpython-310.pyc deleted file mode 100644 index b6da80dc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/_mlflow_plugin/__pycache__/_vertex_mlflow_tracking.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/_pipeline_based_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/_pipeline_based_service/__pycache__/__init__.cpython-310.pyc index dc579142..cc6287cf 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/_pipeline_based_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/_pipeline_based_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/_pipeline_based_service/__pycache__/pipeline_based_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/_pipeline_based_service/__pycache__/pipeline_based_service.cpython-310.pyc index 070297b9..ed9204e1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/_pipeline_based_service/__pycache__/pipeline_based_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/_pipeline_based_service/__pycache__/pipeline_based_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/compat/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/compat/__pycache__/__init__.cpython-310.pyc index e2a84ae7..65c7ac7f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/compat/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/compat/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/compat/services/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/compat/services/__pycache__/__init__.cpython-310.pyc index 1f148d4a..ba336047 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/compat/services/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/compat/services/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/compat/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/compat/types/__pycache__/__init__.cpython-310.pyc index b03b56e7..4a6af32c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/compat/types/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/compat/types/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/__init__.cpython-310.pyc index c351ef5b..a4505bda 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/base.cpython-310.pyc index f50803a4..e43457b6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/pipeline.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/pipeline.cpython-310.pyc index e09163da..38e2c98f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/pipeline.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/pipeline.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/prediction.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/prediction.cpython-310.pyc index ef9de35c..1a75f6a0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/prediction.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/prediction.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/schedule.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/schedule.cpython-310.pyc index 27eae5fc..29b24401 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/schedule.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/schedule.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/__init__.cpython-310.pyc index a9e4913f..a71d0df4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/_datasources.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/_datasources.cpython-310.pyc index 403857db..86d5a7b4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/_datasources.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/_datasources.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/column_names_dataset.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/column_names_dataset.cpython-310.pyc index 89365933..2b3a5a7b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/column_names_dataset.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/column_names_dataset.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/dataset.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/dataset.cpython-310.pyc index f5dae19e..c9e0c85a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/dataset.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/dataset.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/image_dataset.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/image_dataset.cpython-310.pyc index a6fae314..a3471bb8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/image_dataset.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/image_dataset.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/tabular_dataset.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/tabular_dataset.cpython-310.pyc index c7add475..f77faf6e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/tabular_dataset.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/tabular_dataset.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/text_dataset.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/text_dataset.cpython-310.pyc index a695335b..97ba93cc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/text_dataset.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/text_dataset.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/time_series_dataset.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/time_series_dataset.cpython-310.pyc index 7220a7c4..4086447a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/time_series_dataset.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/time_series_dataset.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/video_dataset.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/video_dataset.cpython-310.pyc index 31edf5fb..1cd8949b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/video_dataset.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/video_dataset.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/docker_utils/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/docker_utils/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 72997bdf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/docker_utils/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/docker_utils/__pycache__/build.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/docker_utils/__pycache__/build.cpython-310.pyc deleted file mode 100644 index 6fe07dda..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/docker_utils/__pycache__/build.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/docker_utils/__pycache__/errors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/docker_utils/__pycache__/errors.cpython-310.pyc deleted file mode 100644 index e02fc73b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/docker_utils/__pycache__/errors.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/docker_utils/__pycache__/local_util.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/docker_utils/__pycache__/local_util.cpython-310.pyc deleted file mode 100644 index e6c5bb7d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/docker_utils/__pycache__/local_util.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/docker_utils/__pycache__/run.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/docker_utils/__pycache__/run.cpython-310.pyc deleted file mode 100644 index fda84c1b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/docker_utils/__pycache__/run.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/docker_utils/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/docker_utils/__pycache__/utils.cpython-310.pyc deleted file mode 100644 index 94734046..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/docker_utils/__pycache__/utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/__pycache__/__init__.cpython-310.pyc index a3eb10cf..96d0f4d2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/__pycache__/lit.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/__pycache__/lit.cpython-310.pyc deleted file mode 100644 index be0ecbe2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/__pycache__/lit.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/metadata/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/metadata/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 5661b3af..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/metadata/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/metadata/__pycache__/metadata_builder.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/metadata/__pycache__/metadata_builder.cpython-310.pyc deleted file mode 100644 index bfdc1ffd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/metadata/__pycache__/metadata_builder.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/metadata/tf/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/metadata/tf/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index a852b273..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/metadata/tf/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/metadata/tf/v1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/metadata/tf/v1/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index da194a69..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/metadata/tf/v1/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/metadata/tf/v1/__pycache__/saved_model_metadata_builder.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/metadata/tf/v1/__pycache__/saved_model_metadata_builder.cpython-310.pyc deleted file mode 100644 index a9a9f5f3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/metadata/tf/v1/__pycache__/saved_model_metadata_builder.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/metadata/tf/v2/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/metadata/tf/v2/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 801a6b47..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/metadata/tf/v2/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/metadata/tf/v2/__pycache__/saved_model_metadata_builder.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/metadata/tf/v2/__pycache__/saved_model_metadata_builder.cpython-310.pyc deleted file mode 100644 index 2be416d9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/metadata/tf/v2/__pycache__/saved_model_metadata_builder.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/__init__.cpython-310.pyc index 4ce90dea..7a0cf5ce 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/_entity_type.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/_entity_type.cpython-310.pyc index 58952291..47a78257 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/_entity_type.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/_entity_type.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/entity_type.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/entity_type.cpython-310.pyc index 72827621..f5c0d01c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/entity_type.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/entity_type.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/feature.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/feature.cpython-310.pyc index f262330b..cf0a935d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/feature.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/feature.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/featurestore.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/featurestore.cpython-310.pyc index 5d081089..62103b22 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/featurestore.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/featurestore.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/gapic/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/gapic/__pycache__/__init__.cpython-310.pyc index ba6cb65c..fa151641 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/gapic/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/gapic/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/gapic/schema/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/gapic/schema/__pycache__/__init__.cpython-310.pyc index fb5056c8..694e3616 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/gapic/schema/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/gapic/schema/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/helpers/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/helpers/__pycache__/__init__.cpython-310.pyc index 3a662c7a..c1a13f3a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/helpers/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/helpers/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/helpers/__pycache__/container_uri_builders.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/helpers/__pycache__/container_uri_builders.cpython-310.pyc index 9ecaf240..e4fcffc0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/helpers/__pycache__/container_uri_builders.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/helpers/__pycache__/container_uri_builders.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/__pycache__/__init__.cpython-310.pyc index 4720b27d..1110c440 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/__pycache__/matching_engine_index.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/__pycache__/matching_engine_index.cpython-310.pyc index 611e4694..67b23d59 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/__pycache__/matching_engine_index.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/__pycache__/matching_engine_index.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/__pycache__/matching_engine_index_config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/__pycache__/matching_engine_index_config.cpython-310.pyc index 6f8a1de5..98719b07 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/__pycache__/matching_engine_index_config.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/__pycache__/matching_engine_index_config.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/__pycache__/matching_engine_index_endpoint.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/__pycache__/matching_engine_index_endpoint.cpython-310.pyc index 86c87574..163c8e41 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/__pycache__/matching_engine_index_endpoint.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/__pycache__/matching_engine_index_endpoint.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/_protos/__pycache__/match_service_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/_protos/__pycache__/match_service_pb2.cpython-310.pyc index 645c2647..a11012cd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/_protos/__pycache__/match_service_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/_protos/__pycache__/match_service_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/_protos/__pycache__/match_service_pb2_grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/_protos/__pycache__/match_service_pb2_grpc.cpython-310.pyc index 773f0402..336e1226 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/_protos/__pycache__/match_service_pb2_grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/_protos/__pycache__/match_service_pb2_grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/__init__.cpython-310.pyc index a749515b..fa16dbfe 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/_models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/_models.cpython-310.pyc index 947c37d0..534679ff 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/_models.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/_models.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/artifact.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/artifact.cpython-310.pyc index 1fdf1543..ffd3b733 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/artifact.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/artifact.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/constants.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/constants.cpython-310.pyc index 98ab10fc..9556fbf8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/constants.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/constants.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/context.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/context.cpython-310.pyc index 5ff50a8d..01ab539d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/context.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/context.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/execution.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/execution.cpython-310.pyc index 7432326d..9435d0bc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/execution.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/execution.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/experiment_resources.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/experiment_resources.cpython-310.pyc index f7f74253..e4634f42 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/experiment_resources.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/experiment_resources.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/experiment_run_resource.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/experiment_run_resource.cpython-310.pyc index 7df0152a..a73b5235 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/experiment_run_resource.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/experiment_run_resource.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/metadata.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/metadata.cpython-310.pyc index 2af0da87..61864fc1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/metadata.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/metadata.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/metadata_store.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/metadata_store.cpython-310.pyc index 9915be8f..e0f5c4c8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/metadata_store.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/metadata_store.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/resource.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/resource.cpython-310.pyc index 6929571c..da6a8b20 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/resource.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/resource.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/utils.cpython-310.pyc index 87645e9f..4ca5a918 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/__pycache__/base_artifact.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/__pycache__/base_artifact.cpython-310.pyc index e1487be0..c86c6053 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/__pycache__/base_artifact.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/__pycache__/base_artifact.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/__pycache__/base_context.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/__pycache__/base_context.cpython-310.pyc deleted file mode 100644 index 97345091..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/__pycache__/base_context.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/__pycache__/base_execution.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/__pycache__/base_execution.cpython-310.pyc deleted file mode 100644 index 6048e55d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/__pycache__/base_execution.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/__pycache__/utils.cpython-310.pyc index 315b9095..20a60b76 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/__pycache__/utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/__pycache__/utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/google/__pycache__/artifact_schema.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/google/__pycache__/artifact_schema.cpython-310.pyc index 4df8ffd5..694f2e4a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/google/__pycache__/artifact_schema.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/google/__pycache__/artifact_schema.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/system/__pycache__/artifact_schema.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/system/__pycache__/artifact_schema.cpython-310.pyc deleted file mode 100644 index 30a7d245..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/system/__pycache__/artifact_schema.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/system/__pycache__/context_schema.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/system/__pycache__/context_schema.cpython-310.pyc deleted file mode 100644 index 664fa77a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/system/__pycache__/context_schema.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/system/__pycache__/execution_schema.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/system/__pycache__/execution_schema.cpython-310.pyc deleted file mode 100644 index 19d2e919..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/system/__pycache__/execution_schema.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_evaluation/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_evaluation/__pycache__/__init__.cpython-310.pyc index f634e716..44063db4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_evaluation/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_evaluation/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_evaluation/__pycache__/model_evaluation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_evaluation/__pycache__/model_evaluation.cpython-310.pyc index 93dfc1f2..18d14e85 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_evaluation/__pycache__/model_evaluation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_evaluation/__pycache__/model_evaluation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_evaluation/__pycache__/model_evaluation_job.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_evaluation/__pycache__/model_evaluation_job.cpython-310.pyc index 95e1140a..9e9590b7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_evaluation/__pycache__/model_evaluation_job.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_evaluation/__pycache__/model_evaluation_job.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/__init__.cpython-310.pyc index 0675a443..e52759e7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/alert.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/alert.cpython-310.pyc index cfcf52c2..273891d5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/alert.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/alert.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/objective.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/objective.cpython-310.pyc index 73349e3a..8aabc49f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/objective.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/objective.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/sampling.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/sampling.cpython-310.pyc index aa247790..4141e0da 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/sampling.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/sampling.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/schedule.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/schedule.cpython-310.pyc index 0a9c4f1a..2ca9f6af 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/schedule.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/schedule.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 5aa419aa..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/handler.cpython-310.pyc deleted file mode 100644 index 5a9c709d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/handler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/handler_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/handler_utils.cpython-310.pyc deleted file mode 100644 index 16517f64..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/handler_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/local_endpoint.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/local_endpoint.cpython-310.pyc deleted file mode 100644 index 60f007ba..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/local_endpoint.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/local_model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/local_model.cpython-310.pyc deleted file mode 100644 index 03cc321b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/local_model.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/model_server.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/model_server.cpython-310.pyc deleted file mode 100644 index 35df3b9c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/model_server.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/predictor.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/predictor.cpython-310.pyc deleted file mode 100644 index a16afae6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/predictor.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/serializer.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/serializer.cpython-310.pyc deleted file mode 100644 index 2db60af0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/__pycache__/serializer.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/sklearn/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/sklearn/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 6b82a6a3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/sklearn/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/sklearn/__pycache__/predictor.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/sklearn/__pycache__/predictor.cpython-310.pyc deleted file mode 100644 index 986cced3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/sklearn/__pycache__/predictor.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/xgboost/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/xgboost/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 6e098f71..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/xgboost/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/xgboost/__pycache__/predictor.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/xgboost/__pycache__/predictor.cpython-310.pyc deleted file mode 100644 index a98dc8cf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/prediction/xgboost/__pycache__/predictor.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/__pycache__/datasets.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/__pycache__/datasets.cpython-310.pyc deleted file mode 100644 index 36fd9df5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/__pycache__/datasets.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/__pycache__/jobs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/__pycache__/jobs.cpython-310.pyc deleted file mode 100644 index 0f03c2a6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/__pycache__/jobs.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/__pycache__/models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/__pycache__/models.cpython-310.pyc deleted file mode 100644 index 94b7c3cf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/__pycache__/models.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/__pycache__/persistent_resource.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/__pycache__/persistent_resource.cpython-310.pyc deleted file mode 100644 index 275a74a3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/__pycache__/persistent_resource.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/__pycache__/resource_pool_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/__pycache__/resource_pool_utils.cpython-310.pyc deleted file mode 100644 index 7f1a218b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/__pycache__/resource_pool_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/featurestore/__pycache__/entity_type.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/featurestore/__pycache__/entity_type.cpython-310.pyc index 2d6dd1e6..d69c683b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/featurestore/__pycache__/entity_type.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/featurestore/__pycache__/entity_type.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/pipelinejob/__pycache__/pipeline_jobs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/pipelinejob/__pycache__/pipeline_jobs.cpython-310.pyc deleted file mode 100644 index 3820d35c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/pipelinejob/__pycache__/pipeline_jobs.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/pipelinejobschedule/__pycache__/pipeline_job_schedules.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/pipelinejobschedule/__pycache__/pipeline_job_schedules.cpython-310.pyc deleted file mode 100644 index fdcd3740..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/pipelinejobschedule/__pycache__/pipeline_job_schedules.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/schedule/__pycache__/schedules.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/schedule/__pycache__/schedules.cpython-310.pyc deleted file mode 100644 index 3d00c9e0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/schedule/__pycache__/schedules.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/vertex_ray/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/vertex_ray/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 58eb7ee5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/vertex_ray/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/vertex_ray/predict/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/vertex_ray/predict/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index bb549517..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/vertex_ray/predict/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/vertex_ray/predict/sklearn/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/vertex_ray/predict/sklearn/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index b22ce8c1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/vertex_ray/predict/sklearn/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/vertex_ray/predict/tensorflow/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/vertex_ray/predict/tensorflow/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index f5a6d2a1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/vertex_ray/predict/tensorflow/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/vertex_ray/predict/torch/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/vertex_ray/predict/torch/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index d42164d9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/vertex_ray/predict/torch/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/vertex_ray/predict/xgboost/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/vertex_ray/predict/xgboost/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index de4a849e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/vertex_ray/predict/xgboost/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/__init__.cpython-310.pyc index fe3d3f2a..e8d3a0ea 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/logdir_loader.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/logdir_loader.cpython-310.pyc deleted file mode 100644 index 66a5a9b9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/logdir_loader.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/tensorboard_resource.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/tensorboard_resource.cpython-310.pyc index 6bd731cd..3ea96ea3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/tensorboard_resource.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/tensorboard_resource.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/upload_tracker.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/upload_tracker.cpython-310.pyc deleted file mode 100644 index 71b8bab3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/upload_tracker.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/uploader.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/uploader.cpython-310.pyc deleted file mode 100644 index 88241d30..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/uploader.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/uploader_constants.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/uploader_constants.cpython-310.pyc deleted file mode 100644 index 827ac9cc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/uploader_constants.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/uploader_main.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/uploader_main.cpython-310.pyc deleted file mode 100644 index c555078d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/uploader_main.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/uploader_tracker.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/uploader_tracker.cpython-310.pyc index 1945f609..f7df880d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/uploader_tracker.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/uploader_tracker.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/uploader_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/uploader_utils.cpython-310.pyc deleted file mode 100644 index 9081c970..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/uploader_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/plugins/tf_profiler/__pycache__/profile_uploader.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/plugins/tf_profiler/__pycache__/profile_uploader.cpython-310.pyc deleted file mode 100644 index 2c4725de..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/plugins/tf_profiler/__pycache__/profile_uploader.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 7ed0098a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/__pycache__/environment_variables.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/__pycache__/environment_variables.cpython-310.pyc deleted file mode 100644 index b637a362..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/__pycache__/environment_variables.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 222cc512..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/__pycache__/cloud_profiler_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/__pycache__/cloud_profiler_utils.cpython-310.pyc deleted file mode 100644 index e8d2fc75..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/__pycache__/cloud_profiler_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/__pycache__/initializer.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/__pycache__/initializer.cpython-310.pyc deleted file mode 100644 index d637189d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/__pycache__/initializer.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/__pycache__/webserver.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/__pycache__/webserver.cpython-310.pyc deleted file mode 100644 index 0354926b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/__pycache__/webserver.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/__pycache__/wsgi_types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/__pycache__/wsgi_types.cpython-310.pyc deleted file mode 100644 index 70d6c5ab..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/__pycache__/wsgi_types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/plugins/__pycache__/base_plugin.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/plugins/__pycache__/base_plugin.cpython-310.pyc deleted file mode 100644 index c07b4728..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/plugins/__pycache__/base_plugin.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/plugins/tensorflow/__pycache__/tensorboard_api.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/plugins/tensorflow/__pycache__/tensorboard_api.cpython-310.pyc deleted file mode 100644 index 0cb0472d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/plugins/tensorflow/__pycache__/tensorboard_api.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/plugins/tensorflow/__pycache__/tf_profiler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/plugins/tensorflow/__pycache__/tf_profiler.cpython-310.pyc deleted file mode 100644 index ca0e0ce6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/training_utils/cloud_profiler/plugins/tensorflow/__pycache__/tf_profiler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/__init__.cpython-310.pyc index 41f7bffb..593720f1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/_explanation_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/_explanation_utils.cpython-310.pyc index a57fb96d..01b14405 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/_explanation_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/_explanation_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/_ipython_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/_ipython_utils.cpython-310.pyc index 4a9b32f0..be868799 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/_ipython_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/_ipython_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/autologging_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/autologging_utils.cpython-310.pyc index fbd4c817..8aeabdbe 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/autologging_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/autologging_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/column_transformations_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/column_transformations_utils.cpython-310.pyc index 55993c49..c59e9bc6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/column_transformations_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/column_transformations_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/console_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/console_utils.cpython-310.pyc index ca657594..c5e7fe69 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/console_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/console_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/featurestore_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/featurestore_utils.cpython-310.pyc index 760bd680..3b6efd27 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/featurestore_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/featurestore_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/gcs_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/gcs_utils.cpython-310.pyc index 818d49d3..1c8acb6d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/gcs_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/gcs_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/path_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/path_utils.cpython-310.pyc deleted file mode 100644 index 68eccb8c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/path_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/pipeline_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/pipeline_utils.cpython-310.pyc index 6a66684e..fd1a0136 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/pipeline_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/pipeline_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/prediction_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/prediction_utils.cpython-310.pyc deleted file mode 100644 index 68d2f480..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/prediction_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/resource_manager_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/resource_manager_utils.cpython-310.pyc index 8d68b066..993efaf3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/resource_manager_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/resource_manager_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/rest_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/rest_utils.cpython-310.pyc index 98f9071c..56370edc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/rest_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/rest_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/source_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/source_utils.cpython-310.pyc index 74441ff9..7c254ac4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/source_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/source_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/tensorboard_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/tensorboard_utils.cpython-310.pyc deleted file mode 100644 index f75dd992..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/tensorboard_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/worker_spec_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/worker_spec_utils.cpython-310.pyc index e07d7009..7dc5975d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/worker_spec_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/worker_spec_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/yaml_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/yaml_utils.cpython-310.pyc index e71821bd..fe91b661 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/yaml_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/yaml_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/enhanced_library/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/enhanced_library/__pycache__/__init__.cpython-310.pyc index b451e544..ff677c4a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/enhanced_library/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/enhanced_library/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/enhanced_library/__pycache__/_decorators.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/enhanced_library/__pycache__/_decorators.cpython-310.pyc index 196422f0..083cc937 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/enhanced_library/__pycache__/_decorators.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/enhanced_library/__pycache__/_decorators.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/enhanced_library/__pycache__/value_converter.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/enhanced_library/__pycache__/value_converter.cpython-310.pyc index ab858a0b..260e9bdf 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/enhanced_library/__pycache__/value_converter.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/enhanced_library/__pycache__/value_converter.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/__pycache__/__init__.cpython-310.pyc index 5b14b625..882c9f79 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/__pycache__/__init__.cpython-310.pyc index b5d1068a..84ea5f45 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance/__pycache__/__init__.cpython-310.pyc index ab9286c6..d10bcff5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance/__pycache__/gapic_version.cpython-310.pyc index 7771f212..e3bb753f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance/__pycache__/gapic_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance/__pycache__/gapic_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/__pycache__/__init__.cpython-310.pyc index 540918cc..4939ce3c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/__pycache__/gapic_version.cpython-310.pyc index 5a4c571c..8579d729 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/__pycache__/gapic_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/__pycache__/gapic_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/__init__.cpython-310.pyc index 6eeefb93..c0cb1d5b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/image_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/image_classification.cpython-310.pyc index a516dcd9..884df418 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/image_classification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/image_classification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/image_object_detection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/image_object_detection.cpython-310.pyc index 1b84306b..3d59cbb4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/image_object_detection.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/image_object_detection.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/image_segmentation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/image_segmentation.cpython-310.pyc index 33a9b14a..44c8b37c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/image_segmentation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/image_segmentation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/text_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/text_classification.cpython-310.pyc index 23af0465..a86cf47a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/text_classification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/text_classification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/text_extraction.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/text_extraction.cpython-310.pyc index a89ef7c0..5ed1d5f4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/text_extraction.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/text_extraction.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/text_sentiment.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/text_sentiment.cpython-310.pyc index 32635ec4..1b0143b9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/text_sentiment.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/text_sentiment.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/video_action_recognition.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/video_action_recognition.cpython-310.pyc index ba9b7d60..37c12f0e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/video_action_recognition.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/video_action_recognition.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/video_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/video_classification.cpython-310.pyc index 1906b083..ec184962 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/video_classification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/video_classification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/video_object_tracking.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/video_object_tracking.cpython-310.pyc index a8182f87..001e25c1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/video_object_tracking.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/video_object_tracking.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params/__pycache__/__init__.cpython-310.pyc index 14058cba..afd92a60 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params/__pycache__/gapic_version.cpython-310.pyc index f78a903e..e6f45edb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params/__pycache__/gapic_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params/__pycache__/gapic_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/__pycache__/__init__.cpython-310.pyc index ae4d4dea..36169a9b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/__pycache__/gapic_version.cpython-310.pyc index 3cd04a03..38f5705d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/__pycache__/gapic_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/__pycache__/gapic_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/__init__.cpython-310.pyc index 5ac3edd1..6d47d7a8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/image_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/image_classification.cpython-310.pyc index 0aa30db0..ba109d42 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/image_classification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/image_classification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/image_object_detection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/image_object_detection.cpython-310.pyc index ebb749b5..daa665c2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/image_object_detection.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/image_object_detection.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/image_segmentation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/image_segmentation.cpython-310.pyc index af04f68c..9e937107 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/image_segmentation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/image_segmentation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/video_action_recognition.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/video_action_recognition.cpython-310.pyc index bdb03759..b7675e12 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/video_action_recognition.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/video_action_recognition.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/video_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/video_classification.cpython-310.pyc index af1738fa..83fc6e14 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/video_classification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/video_classification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/video_object_tracking.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/video_object_tracking.cpython-310.pyc index 7a73c807..05af89e6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/video_object_tracking.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/video_object_tracking.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction/__pycache__/__init__.cpython-310.pyc index f1308c9b..e77b22d7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction/__pycache__/gapic_version.cpython-310.pyc index 662bd413..a6ffc94c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction/__pycache__/gapic_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction/__pycache__/gapic_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/__pycache__/__init__.cpython-310.pyc index 3b746604..19f5e322 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/__pycache__/gapic_version.cpython-310.pyc index f2fbfdfd..b2a79d3c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/__pycache__/gapic_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/__pycache__/gapic_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/__init__.cpython-310.pyc index 08b76812..bbeebe3f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/classification.cpython-310.pyc index e28d166f..0f50bca8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/classification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/classification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/image_object_detection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/image_object_detection.cpython-310.pyc index 3c6ad175..6f9271dd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/image_object_detection.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/image_object_detection.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/image_segmentation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/image_segmentation.cpython-310.pyc index 0646677c..93856559 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/image_segmentation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/image_segmentation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/tabular_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/tabular_classification.cpython-310.pyc index c2a1d956..d27eb28f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/tabular_classification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/tabular_classification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/tabular_regression.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/tabular_regression.cpython-310.pyc index d674f601..eaba1268 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/tabular_regression.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/tabular_regression.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/text_extraction.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/text_extraction.cpython-310.pyc index 3989ad67..6c58fbce 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/text_extraction.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/text_extraction.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/text_sentiment.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/text_sentiment.cpython-310.pyc index 87a0c424..c3a8d86c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/text_sentiment.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/text_sentiment.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/video_action_recognition.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/video_action_recognition.cpython-310.pyc index 7c526b4e..66197b6e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/video_action_recognition.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/video_action_recognition.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/video_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/video_classification.cpython-310.pyc index 1186fd16..cfdd1024 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/video_classification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/video_classification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/video_object_tracking.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/video_object_tracking.cpython-310.pyc index cfa4ba4c..1725e85c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/video_object_tracking.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/video_object_tracking.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/__pycache__/__init__.cpython-310.pyc index 8bbbe560..be14f04f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition/__pycache__/__init__.cpython-310.pyc index f27ef1ad..f15c916c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition/__pycache__/gapic_version.cpython-310.pyc index a3138a28..ee81e7f8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition/__pycache__/gapic_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition/__pycache__/gapic_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/__pycache__/__init__.cpython-310.pyc index 5260dd10..0536fbc9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/__pycache__/gapic_version.cpython-310.pyc index a9a185ac..c1fc1e4a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/__pycache__/gapic_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/__pycache__/gapic_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/__init__.cpython-310.pyc index bf2eb417..fbdb748e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_image_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_image_classification.cpython-310.pyc index eee9430c..afcc20a4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_image_classification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_image_classification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_image_object_detection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_image_object_detection.cpython-310.pyc index 69ce0575..c65e89ae 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_image_object_detection.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_image_object_detection.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_image_segmentation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_image_segmentation.cpython-310.pyc index e43367a7..e016d416 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_image_segmentation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_image_segmentation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_tables.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_tables.cpython-310.pyc index 415ff865..18e9f145 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_tables.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_tables.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_text_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_text_classification.cpython-310.pyc index 21025127..593baa0f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_text_classification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_text_classification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_text_extraction.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_text_extraction.cpython-310.pyc index 60dfd4aa..5390fa55 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_text_extraction.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_text_extraction.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_text_sentiment.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_text_sentiment.cpython-310.pyc index a2e14d6b..93cd8713 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_text_sentiment.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_text_sentiment.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_video_action_recognition.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_video_action_recognition.cpython-310.pyc index 1c0a7544..248f5352 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_video_action_recognition.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_video_action_recognition.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_video_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_video_classification.cpython-310.pyc index 47a321ec..aa72f596 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_video_classification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_video_classification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_video_object_tracking.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_video_object_tracking.cpython-310.pyc index e41bbc97..b8e49776 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_video_object_tracking.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/automl_video_object_tracking.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/export_evaluated_data_items_config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/export_evaluated_data_items_config.cpython-310.pyc index 17fd5aa8..522f68a3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/export_evaluated_data_items_config.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/export_evaluated_data_items_config.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/__pycache__/__init__.cpython-310.pyc index f79ccba9..7b261f1c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/__pycache__/__init__.cpython-310.pyc index bb93121f..e2061aee 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance/__pycache__/__init__.cpython-310.pyc index 1e77c1a8..fff24669 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance/__pycache__/gapic_version.cpython-310.pyc index 2320923a..d7448d26 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance/__pycache__/gapic_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance/__pycache__/gapic_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/__pycache__/__init__.cpython-310.pyc index 856a5942..39e04af1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/__pycache__/gapic_version.cpython-310.pyc index 919c44cc..72166913 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/__pycache__/gapic_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/__pycache__/gapic_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/__init__.cpython-310.pyc index ec1996a3..3b099ed4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/image_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/image_classification.cpython-310.pyc index 1a8c5a30..619056e4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/image_classification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/image_classification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/image_object_detection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/image_object_detection.cpython-310.pyc index 5bdc629d..7f564261 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/image_object_detection.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/image_object_detection.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/image_segmentation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/image_segmentation.cpython-310.pyc index b6ac0a1b..0bd134cc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/image_segmentation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/image_segmentation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/text_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/text_classification.cpython-310.pyc index 197f291a..1f6d501c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/text_classification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/text_classification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/text_extraction.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/text_extraction.cpython-310.pyc index 0d541048..cbc5a329 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/text_extraction.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/text_extraction.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/text_sentiment.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/text_sentiment.cpython-310.pyc index e78bd96b..7eb3ad12 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/text_sentiment.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/text_sentiment.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/video_action_recognition.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/video_action_recognition.cpython-310.pyc index 53e6a60b..67b72002 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/video_action_recognition.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/video_action_recognition.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/video_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/video_classification.cpython-310.pyc index 768a2e45..f7ec96d4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/video_classification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/video_classification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/video_object_tracking.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/video_object_tracking.cpython-310.pyc index c34ca5ca..9976a6ca 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/video_object_tracking.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/video_object_tracking.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params/__pycache__/__init__.cpython-310.pyc index a973c9f9..0ea14197 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params/__pycache__/gapic_version.cpython-310.pyc index c034bc92..08de4b5e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params/__pycache__/gapic_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params/__pycache__/gapic_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/__pycache__/__init__.cpython-310.pyc index da165d63..536d9291 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/__pycache__/gapic_version.cpython-310.pyc index 929996fb..6a4b4129 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/__pycache__/gapic_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/__pycache__/gapic_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/__init__.cpython-310.pyc index d28cc248..8653bff6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/image_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/image_classification.cpython-310.pyc index edb04698..7f0dfcf1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/image_classification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/image_classification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/image_object_detection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/image_object_detection.cpython-310.pyc index 2de57f6a..60235d23 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/image_object_detection.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/image_object_detection.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/image_segmentation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/image_segmentation.cpython-310.pyc index e8c271be..34774614 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/image_segmentation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/image_segmentation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/video_action_recognition.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/video_action_recognition.cpython-310.pyc index d1d9e620..32f9f2dc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/video_action_recognition.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/video_action_recognition.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/video_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/video_classification.cpython-310.pyc index d69f81b4..8a32b0a6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/video_classification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/video_classification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/video_object_tracking.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/video_object_tracking.cpython-310.pyc index 2ba22e25..9daeae9f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/video_object_tracking.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/video_object_tracking.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction/__pycache__/__init__.cpython-310.pyc index dd7b4b9c..ebe9c30a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction/__pycache__/gapic_version.cpython-310.pyc index 25d19df9..f60775c0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction/__pycache__/gapic_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction/__pycache__/gapic_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/__pycache__/__init__.cpython-310.pyc index 5ee7ef59..36d76e59 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/__pycache__/gapic_version.cpython-310.pyc index c6405862..f77ac0db 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/__pycache__/gapic_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/__pycache__/gapic_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/__init__.cpython-310.pyc index f6734af5..ee82ecb4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/classification.cpython-310.pyc index 82dedcf3..5cfa24c9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/classification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/classification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/image_object_detection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/image_object_detection.cpython-310.pyc index 6e6f7750..3624033b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/image_object_detection.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/image_object_detection.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/image_segmentation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/image_segmentation.cpython-310.pyc index 75d8f5e1..d0a18059 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/image_segmentation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/image_segmentation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/tabular_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/tabular_classification.cpython-310.pyc index f5872f8d..68023e86 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/tabular_classification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/tabular_classification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/tabular_regression.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/tabular_regression.cpython-310.pyc index 79864af2..0950a284 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/tabular_regression.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/tabular_regression.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/text_extraction.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/text_extraction.cpython-310.pyc index 36f226ec..e27f170e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/text_extraction.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/text_extraction.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/text_sentiment.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/text_sentiment.cpython-310.pyc index 5c859e20..9c54b2be 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/text_sentiment.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/text_sentiment.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/time_series_forecasting.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/time_series_forecasting.cpython-310.pyc index e2653520..226979f8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/time_series_forecasting.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/time_series_forecasting.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/video_action_recognition.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/video_action_recognition.cpython-310.pyc index e9cd75cf..6f761577 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/video_action_recognition.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/video_action_recognition.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/video_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/video_classification.cpython-310.pyc index dc41942c..0b5b1eb6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/video_classification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/video_classification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/video_object_tracking.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/video_object_tracking.cpython-310.pyc index a6eb36ee..dae7edcc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/video_object_tracking.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/video_object_tracking.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/__pycache__/__init__.cpython-310.pyc index a8e5a233..eb1de499 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/__pycache__/__init__.cpython-310.pyc index 083809d6..0628da68 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/__pycache__/gapic_version.cpython-310.pyc index d035fd67..276342a9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/__pycache__/gapic_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/__pycache__/gapic_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/__pycache__/__init__.cpython-310.pyc index 41fef70a..0952df88 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/__pycache__/gapic_version.cpython-310.pyc index f44a6290..b3da0edd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/__pycache__/gapic_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/__pycache__/gapic_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/__init__.cpython-310.pyc index e1db5d8d..50e35b17 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_forecasting.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_forecasting.cpython-310.pyc deleted file mode 100644 index 350f187c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_forecasting.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_image_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_image_classification.cpython-310.pyc index 6735e4be..0d9085b2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_image_classification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_image_classification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_image_object_detection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_image_object_detection.cpython-310.pyc index 8a3652a2..8b1e80f0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_image_object_detection.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_image_object_detection.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_image_segmentation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_image_segmentation.cpython-310.pyc index d34081d3..eff49f5d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_image_segmentation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_image_segmentation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_tables.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_tables.cpython-310.pyc index f9e33974..fd4d1941 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_tables.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_tables.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_text_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_text_classification.cpython-310.pyc index de4ef330..87b5815d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_text_classification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_text_classification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_text_extraction.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_text_extraction.cpython-310.pyc index 8f446605..0ff5bb33 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_text_extraction.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_text_extraction.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_text_sentiment.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_text_sentiment.cpython-310.pyc index aacfb515..f5881803 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_text_sentiment.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_text_sentiment.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_time_series_forecasting.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_time_series_forecasting.cpython-310.pyc index c91729a5..b47797c3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_time_series_forecasting.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_time_series_forecasting.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_video_action_recognition.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_video_action_recognition.cpython-310.pyc index 23168324..c3d8157e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_video_action_recognition.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_video_action_recognition.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_video_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_video_classification.cpython-310.pyc index bfd3afca..eebfd123 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_video_classification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_video_classification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_video_object_tracking.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_video_object_tracking.cpython-310.pyc index 587377f0..e2280a11 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_video_object_tracking.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/automl_video_object_tracking.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/export_evaluated_data_items_config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/export_evaluated_data_items_config.cpython-310.pyc index 61767669..e8661b52 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/export_evaluated_data_items_config.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/export_evaluated_data_items_config.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 6ec28dee..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/bigquery_datasink.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/bigquery_datasink.cpython-310.pyc deleted file mode 100644 index 18ac6ca8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/bigquery_datasink.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/bigquery_datasource.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/bigquery_datasource.cpython-310.pyc deleted file mode 100644 index ddb9fd4e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/bigquery_datasource.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/client_builder.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/client_builder.cpython-310.pyc deleted file mode 100644 index 74cb637d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/client_builder.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/cluster_init.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/cluster_init.cpython-310.pyc deleted file mode 100644 index 95044215..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/cluster_init.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/dashboard_sdk.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/dashboard_sdk.cpython-310.pyc deleted file mode 100644 index cb826bf9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/dashboard_sdk.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/data.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/data.cpython-310.pyc deleted file mode 100644 index 9108562a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/data.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/render.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/render.cpython-310.pyc deleted file mode 100644 index b50badfc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/__pycache__/render.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 905ee046..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/sklearn/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/sklearn/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index dfe11fa3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/sklearn/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/sklearn/__pycache__/register.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/sklearn/__pycache__/register.cpython-310.pyc deleted file mode 100644 index cd9096e3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/sklearn/__pycache__/register.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/tensorflow/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/tensorflow/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 36709c67..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/tensorflow/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/tensorflow/__pycache__/register.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/tensorflow/__pycache__/register.cpython-310.pyc deleted file mode 100644 index 94aefe20..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/tensorflow/__pycache__/register.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/torch/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/torch/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index d931a454..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/torch/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/torch/__pycache__/register.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/torch/__pycache__/register.cpython-310.pyc deleted file mode 100644 index 7e13a427..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/torch/__pycache__/register.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/util/__pycache__/constants.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/util/__pycache__/constants.cpython-310.pyc deleted file mode 100644 index 4e1aef86..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/util/__pycache__/constants.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/util/__pycache__/predict_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/util/__pycache__/predict_utils.cpython-310.pyc deleted file mode 100644 index 07decd4a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/util/__pycache__/predict_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/xgboost/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/xgboost/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index b4873e65..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/xgboost/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/xgboost/__pycache__/register.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/xgboost/__pycache__/register.cpython-310.pyc deleted file mode 100644 index 667c005a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/predict/xgboost/__pycache__/register.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/util/__pycache__/_gapic_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/util/__pycache__/_gapic_utils.cpython-310.pyc deleted file mode 100644 index 32aa33ff..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/util/__pycache__/_gapic_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/util/__pycache__/_validation_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/util/__pycache__/_validation_utils.cpython-310.pyc deleted file mode 100644 index 32110d8a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/util/__pycache__/_validation_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/util/__pycache__/resources.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/util/__pycache__/resources.cpython-310.pyc deleted file mode 100644 index 91ff8ed5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vertex_ray/util/__pycache__/resources.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 42e96775..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/__pycache__/client_abc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/__pycache__/client_abc.cpython-310.pyc deleted file mode 100644 index 06f5ae20..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/__pycache__/client_abc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/__pycache__/study.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/__pycache__/study.cpython-310.pyc deleted file mode 100644 index 8595299b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/__pycache__/study.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/__pycache__/trial.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/__pycache__/trial.cpython-310.pyc deleted file mode 100644 index c2ff84b3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/__pycache__/trial.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/pyvizier/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/pyvizier/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 1967f03a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/pyvizier/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/pyvizier/__pycache__/automated_stopping.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/pyvizier/__pycache__/automated_stopping.cpython-310.pyc deleted file mode 100644 index f86915da..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/pyvizier/__pycache__/automated_stopping.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/pyvizier/__pycache__/proto_converters.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/pyvizier/__pycache__/proto_converters.cpython-310.pyc deleted file mode 100644 index 998f3005..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/pyvizier/__pycache__/proto_converters.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/pyvizier/__pycache__/study_config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/pyvizier/__pycache__/study_config.cpython-310.pyc deleted file mode 100644 index 380b726a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/vizier/pyvizier/__pycache__/study_config.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/__pycache__/__init__.cpython-310.pyc index 6f95c819..bacfc78a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/__pycache__/gapic_version.cpython-310.pyc index dff9e4e9..39c9d028 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/__pycache__/gapic_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/__pycache__/gapic_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/__pycache__/__init__.cpython-310.pyc index e82fdff0..da4678ce 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/__pycache__/__init__.cpython-310.pyc index ce7aef2b..62f5cc8c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/__pycache__/async_client.cpython-310.pyc index 41fb3342..b833126e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/__pycache__/client.cpython-310.pyc index b9bd1400..53922182 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/__pycache__/pagers.cpython-310.pyc index 4506cec2..1bf960ce 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/__init__.cpython-310.pyc index 331a6842..e394ef38 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/base.cpython-310.pyc index 2bf72298..a12ab5f0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/grpc.cpython-310.pyc index c3fb7e59..2bb343cd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 7c9b8c7d..8c965704 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/rest.cpython-310.pyc index 024c8e75..e7fd6f53 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index f59aec06..aa063585 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/rest_base.cpython-310.pyc index 00f71aa9..2eb9f515 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/__pycache__/__init__.cpython-310.pyc index 900b5750..3f0c759c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/__pycache__/async_client.cpython-310.pyc index d5f942ce..dfd95d2b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/__pycache__/client.cpython-310.pyc index 0c7a57e9..3722fe8a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/__pycache__/pagers.cpython-310.pyc index 3c8d772a..e5938d18 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/__init__.cpython-310.pyc index 09dbe9f4..5e7a969c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/base.cpython-310.pyc index db7b8df4..6ecefd0c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/grpc.cpython-310.pyc index 26d419c6..20c0d4bd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index c5bfea00..1c0ea959 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/rest.cpython-310.pyc index d22cb89c..ec5ad32e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index cd8d717e..aa27e9a6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/rest_base.cpython-310.pyc index 05e699e2..5db67841 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/__pycache__/__init__.cpython-310.pyc index 6d32a473..be1bde2e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/__pycache__/async_client.cpython-310.pyc index d50964b1..05befe22 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/__pycache__/client.cpython-310.pyc index 83b11c7e..d4de5654 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/__pycache__/pagers.cpython-310.pyc index b9f327a4..9c0a67b3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/__init__.cpython-310.pyc index 97a65c90..f7a2cb81 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/base.cpython-310.pyc index bcbfae50..5399952c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/grpc.cpython-310.pyc index ba820cb3..d5b8ce8a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index d7440e73..45c6077a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/rest.cpython-310.pyc index 044bac69..ad3c68f1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 3668b145..15c58793 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/rest_base.cpython-310.pyc index 1837170b..e72252ed 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/__pycache__/__init__.cpython-310.pyc index 534bae1e..0a1f9315 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/__pycache__/async_client.cpython-310.pyc index da701bd1..53b00dff 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/__pycache__/client.cpython-310.pyc index 9a268055..fdcd91de 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/__init__.cpython-310.pyc index f6e60dbf..8e0de8ed 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/base.cpython-310.pyc index 6eaa92f4..93e3b1f5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/grpc.cpython-310.pyc index 148d3346..cfaef987 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 5cf901c2..91225e14 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/rest.cpython-310.pyc index a877041b..ca799395 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 7db7a661..0a741316 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/rest_base.cpython-310.pyc index 59bcbabd..84560ba4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/__pycache__/__init__.cpython-310.pyc index 6e91f17a..c34b87df 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/__pycache__/async_client.cpython-310.pyc index 7c96b571..e90480e3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/__pycache__/client.cpython-310.pyc index 8872bf84..04665e9f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/__pycache__/pagers.cpython-310.pyc index 2ca66c47..1fe23e15 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/__init__.cpython-310.pyc index 42b68a2a..d39e8803 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/base.cpython-310.pyc index 15afb4ae..60285c9e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/grpc.cpython-310.pyc index fd80f50c..22a76027 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 6bff5467..e3adec07 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/rest.cpython-310.pyc index 58458e82..afee951b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index d479532a..ce114cc0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/rest_base.cpython-310.pyc index d0c96fae..01bf6630 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_admin_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/__pycache__/__init__.cpython-310.pyc index 9ab95a56..99c87fbb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/__pycache__/async_client.cpython-310.pyc index c51e6609..2f3e774e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/__pycache__/client.cpython-310.pyc index bdcda0db..0b442ecf 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/__init__.cpython-310.pyc index 58f0c7be..9225a18a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/base.cpython-310.pyc index 78552fa1..5c32f181 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/grpc.cpython-310.pyc index 412fcb62..0a885f81 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index b5e3f3bd..ad0e2850 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/rest.cpython-310.pyc index 668498ed..1c4f8fa6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index ac4ae52f..691dc3bc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/rest_base.cpython-310.pyc index accb71b1..f562d447 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/__pycache__/__init__.cpython-310.pyc index 8cf3eb60..df27f93c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/__pycache__/async_client.cpython-310.pyc index e364dcda..6cd39459 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/__pycache__/client.cpython-310.pyc index 2acce0a4..a892df71 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/__pycache__/pagers.cpython-310.pyc index e6279737..5b00677b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/__init__.cpython-310.pyc index 06c198c7..3b744a4b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/base.cpython-310.pyc index b58fc206..e60db9e0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/grpc.cpython-310.pyc index d9b36f5b..e6c0d7fe 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 1f154206..a99e7604 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/rest.cpython-310.pyc index 135bf5ae..7aedb141 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 23b0dd23..93a87ba6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/rest_base.cpython-310.pyc index 04ecb3c3..cdd235ad 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/__pycache__/__init__.cpython-310.pyc index cf00bb58..5eaf6621 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/__pycache__/async_client.cpython-310.pyc index e8405afc..54735f9c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/__pycache__/client.cpython-310.pyc index 81f57999..beb4c3b7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/__init__.cpython-310.pyc index 6c1a90aa..e94b88f2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/base.cpython-310.pyc index ab2968c8..ac49bbe9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/grpc.cpython-310.pyc index a3adf5ef..9c884256 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 2d4a9f38..8b39f963 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/rest.cpython-310.pyc index 6bdec8fc..3d3d82f6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 11e50970..b81888bd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/rest_base.cpython-310.pyc index 88680866..a0180a60 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/__pycache__/__init__.cpython-310.pyc index 8e6eb1f2..c19179f7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/__pycache__/async_client.cpython-310.pyc index 63d1f431..4f72feb2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/__pycache__/client.cpython-310.pyc index fd29ca3f..ccafd402 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/__pycache__/pagers.cpython-310.pyc index afb46932..c8651e8b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/__init__.cpython-310.pyc index c41506ea..d71de4c7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/base.cpython-310.pyc index a935a2da..6c6bf25e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/grpc.cpython-310.pyc index 443a6fc2..69930777 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index b2b73cad..4ba092a5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/rest.cpython-310.pyc index a38f3bca..28f314fb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 94f2c9ee..9c1db280 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/rest_base.cpython-310.pyc index 3e8c09fd..77709370 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/__pycache__/__init__.cpython-310.pyc index 5668c8a3..5aadf820 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/__pycache__/async_client.cpython-310.pyc index ce32b09e..ff8eab43 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/__pycache__/client.cpython-310.pyc index 54193f89..11b8b5a2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/__pycache__/pagers.cpython-310.pyc index 08910abb..dd9332e9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/__init__.cpython-310.pyc index 583ab84c..f115dc31 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/base.cpython-310.pyc index bf6149ed..6dee7b44 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/grpc.cpython-310.pyc index f26cda8b..ac00453b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 6110e187..86fc5dda 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/rest.cpython-310.pyc index 8aed991f..ef640d20 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 90bc4f68..115d8a5b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/rest_base.cpython-310.pyc index 7d5dcc2e..a0968294 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/__pycache__/__init__.cpython-310.pyc index df64b918..25fdf841 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/__pycache__/async_client.cpython-310.pyc index 8beccf3a..cfea3224 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/__pycache__/client.cpython-310.pyc index 5024bce5..4840d2a2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/__pycache__/pagers.cpython-310.pyc index c7b0c9ec..a4bf73b9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/__init__.cpython-310.pyc index 82d264c5..c123cab9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/base.cpython-310.pyc index c27389d2..df408313 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/grpc.cpython-310.pyc index feb1eb07..f7d978e5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 8483dfb6..96520a39 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/rest.cpython-310.pyc index 4abe9ec1..ed32ab8e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 41feb76c..52951087 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/rest_base.cpython-310.pyc index b0ce8089..34b6b4c1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/__pycache__/__init__.cpython-310.pyc index 11b3b786..8cd512bc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/__pycache__/async_client.cpython-310.pyc index d27125e1..6c339c91 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/__pycache__/client.cpython-310.pyc index 45301c78..f5fcf164 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/__pycache__/pagers.cpython-310.pyc index 2553f788..e2160918 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/__init__.cpython-310.pyc index bc4ea6ce..df689fdd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/base.cpython-310.pyc index 7160aee9..f4f364ad 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/grpc.cpython-310.pyc index 1a7ab6cd..f47a3bb6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 501cdee8..977a373c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/rest.cpython-310.pyc index 6b428c9e..1b873cc7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 95002ce4..d89e034c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/rest_base.cpython-310.pyc index 8da3b659..fd52cfe3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/__pycache__/__init__.cpython-310.pyc index c645a0d7..46d145a2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/__pycache__/async_client.cpython-310.pyc index 1886f2d6..6f8230b0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/__pycache__/client.cpython-310.pyc index d3095bf2..9f78acdf 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/__pycache__/pagers.cpython-310.pyc index 5705d126..9c7d3185 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/__init__.cpython-310.pyc index 22d8c03c..9177e270 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/base.cpython-310.pyc index e57a144c..0070f605 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/grpc.cpython-310.pyc index 5a0af791..6fbed0d1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 99b400d8..4675f3e9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/rest.cpython-310.pyc index 283d3c22..62f3962d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index b5696d61..dd5b75df 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/rest_base.cpython-310.pyc index c415b7c1..f2c9cef9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/__pycache__/__init__.cpython-310.pyc index 681023f3..54cf497e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/__pycache__/async_client.cpython-310.pyc index 254f0d44..5c054156 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/__pycache__/client.cpython-310.pyc index 5dc6a9f5..86ad1b15 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/__pycache__/pagers.cpython-310.pyc index 2ed93052..7e8aa5c2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/__init__.cpython-310.pyc index 28304450..16550014 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/base.cpython-310.pyc index 9272b968..114184cb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/grpc.cpython-310.pyc index c1071495..53c93455 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 8d46c705..0281f3f6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/rest.cpython-310.pyc index 2a31205b..00d7cae8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 9028325d..bba2d36b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/rest_base.cpython-310.pyc index 044d7f75..b9313835 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/__pycache__/__init__.cpython-310.pyc index 4fb5ddfd..94570f9e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/__pycache__/async_client.cpython-310.pyc index 4f1fafa9..fe406c33 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/__pycache__/client.cpython-310.pyc index fca862dd..29624c7c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/__init__.cpython-310.pyc index 173794ed..0f7e414d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/base.cpython-310.pyc index 15fcb884..3dfddf7a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/grpc.cpython-310.pyc index ba206d00..365306ab 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 175712d9..c4af0aa3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/rest.cpython-310.pyc index dd6faa38..dd8d0b34 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 9a5df3e8..823a7114 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/rest_base.cpython-310.pyc index c853e107..c0c8e0b3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/__pycache__/__init__.cpython-310.pyc index 28004afd..7508875b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/__pycache__/async_client.cpython-310.pyc index 1236a48a..f9c95973 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/__pycache__/client.cpython-310.pyc index 387323ae..a09fa9c5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/__init__.cpython-310.pyc index ae4b3a88..48bd1b10 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/base.cpython-310.pyc index 54d0f57d..cfdf996c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/grpc.cpython-310.pyc index 74e36374..87a92350 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 76616b63..d1d51b95 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/rest.cpython-310.pyc index 131bab5d..bf59ebc1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index e6947e61..a66a7aaf 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/rest_base.cpython-310.pyc index 5dd6d52f..307c04d6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/__pycache__/__init__.cpython-310.pyc index 362296a7..5f6de185 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/__pycache__/async_client.cpython-310.pyc index 4fa47fd6..ed4abd86 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/__pycache__/client.cpython-310.pyc index 25d94af3..cd02cc36 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/__pycache__/pagers.cpython-310.pyc index cd63d1e2..811f212f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/__init__.cpython-310.pyc index 2b2bc05e..fbf3b1ae 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/base.cpython-310.pyc index a340130b..63227470 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/grpc.cpython-310.pyc index 645234c1..bcc8ec23 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index e4b6c37a..1db698b1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/rest.cpython-310.pyc index d13c626c..b9d8a4f7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 4eb8e090..19a761fa 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/rest_base.cpython-310.pyc index 34b6e4f1..b25b1e32 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/__pycache__/__init__.cpython-310.pyc index 80e47128..2fa1fa63 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/__pycache__/async_client.cpython-310.pyc index f3877860..c7f1503d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/__pycache__/client.cpython-310.pyc index 49c36820..c6d74c4a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/__pycache__/pagers.cpython-310.pyc index cfaa751e..9be1275c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/__init__.cpython-310.pyc index e204a2db..637583b4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/base.cpython-310.pyc index 2f23a8da..d930ca77 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/grpc.cpython-310.pyc index 97ea1ceb..4f34c193 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index eae1955d..d9369d4c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/rest.cpython-310.pyc index e3b4a362..eb719b02 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 977f0841..0bb74d14 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/rest_base.cpython-310.pyc index 4d8b9ed0..d54d8d0b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/__pycache__/__init__.cpython-310.pyc index 05fdf3d0..266ea157 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/__pycache__/async_client.cpython-310.pyc index b602ac3f..73243fd6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/__pycache__/client.cpython-310.pyc index aba4c7c2..4394be4b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/__init__.cpython-310.pyc index b0eaa21c..73e6d47c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/base.cpython-310.pyc index f5a6c3be..4c85b727 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/grpc.cpython-310.pyc index 9505fdfa..f8a01768 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 15f21670..d74c51c3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/rest.cpython-310.pyc index 6756aac5..dca10f00 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index edc1c8a3..5d432b26 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/rest_base.cpython-310.pyc index c2549e6d..ecbe4e80 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/__pycache__/__init__.cpython-310.pyc index 04a2b3d8..855588c2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/__pycache__/async_client.cpython-310.pyc index 05d63290..d43b7b75 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/__pycache__/client.cpython-310.pyc index 5f0809ad..d6af216e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/__pycache__/pagers.cpython-310.pyc index fe9a0f3b..ce459eae 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/__init__.cpython-310.pyc index 98bca1d7..ae53e641 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/base.cpython-310.pyc index 987aec34..d98bea26 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/grpc.cpython-310.pyc index 82ee36fe..f619a935 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 87570ca8..189df8e5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/rest.cpython-310.pyc index 016ca26c..f4ab0cfd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 9129b653..cc4cb8fb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/rest_base.cpython-310.pyc index 2c054fba..3c8583f8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/__pycache__/__init__.cpython-310.pyc index 2ded778c..80d93182 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/__pycache__/async_client.cpython-310.pyc index 5a5e53a3..41329871 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/__pycache__/client.cpython-310.pyc index 8c517859..78022704 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/__pycache__/pagers.cpython-310.pyc index 1eb1a641..1fcfb68f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/__init__.cpython-310.pyc index a00d77dc..19d0107b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/base.cpython-310.pyc index 0979fefb..0483de93 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/grpc.cpython-310.pyc index 9fc2e5bc..9080fbe3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 557e2fff..d69e25aa 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/rest.cpython-310.pyc index e0cf0203..4f1fb5de 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 0e2e36c9..9bdf1789 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/rest_base.cpython-310.pyc index 7e07ae57..d85ab42b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/__pycache__/__init__.cpython-310.pyc index d8a626ef..6e76d136 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/__pycache__/async_client.cpython-310.pyc index 3b3e4430..a51c837b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/__pycache__/client.cpython-310.pyc index b069450c..d67a45de 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/__pycache__/pagers.cpython-310.pyc index 40015626..1c6e9e77 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/__init__.cpython-310.pyc index c388d853..f89f5fbf 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/base.cpython-310.pyc index 2e4b4241..e08661c6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/grpc.cpython-310.pyc index f5389948..4134dc8c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index d909290b..619b73e6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/rest.cpython-310.pyc index 11db9603..62e64e82 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 8fe5f25f..c218ef76 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/rest_base.cpython-310.pyc index 3d1a4597..02c2a4a0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/__pycache__/__init__.cpython-310.pyc index feada3e9..61fa6a83 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/__pycache__/async_client.cpython-310.pyc index 3c7d6212..1c1f5a81 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/__pycache__/client.cpython-310.pyc index 54b14e52..074864b1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/__pycache__/pagers.cpython-310.pyc index 9ca0ed8d..ff0a28e9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/__init__.cpython-310.pyc index 5d96ebaa..a2c85fa6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/base.cpython-310.pyc index ea6d1728..6e01d5ac 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/grpc.cpython-310.pyc index 1d8e7883..cc8572e1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 69e4bb83..30e9c902 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/rest.cpython-310.pyc index c1247425..18ffa61c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index fcc5e53c..f35b68ab 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/rest_base.cpython-310.pyc index c7bfa913..b78dde8e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/__pycache__/__init__.cpython-310.pyc index 81f411fe..9b6c6d89 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/__pycache__/async_client.cpython-310.pyc index 33c8714e..ea93a870 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/__pycache__/client.cpython-310.pyc index 518eaaeb..a02065f9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/__init__.cpython-310.pyc index 1be14fa0..fe11f213 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/base.cpython-310.pyc index 40fe3ca6..58d8b16e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/grpc.cpython-310.pyc index 87b417ea..c3ec848b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 401802f3..7f40d394 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/rest.cpython-310.pyc index 9dc63a4b..1e6934f7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 20a7dee6..b2ae1dba 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/rest_base.cpython-310.pyc index 17f019c4..33a4fc7e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/__pycache__/__init__.cpython-310.pyc index 49522bd5..e8a50b8c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/__pycache__/async_client.cpython-310.pyc index 837b6d9d..cf830599 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/__pycache__/client.cpython-310.pyc index 0f94be6e..b9019c9d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/__init__.cpython-310.pyc index 3e9ebfca..0619a3e4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/base.cpython-310.pyc index 7191fb8c..e6a92c54 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/grpc.cpython-310.pyc index d7813daf..b841e5dc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 4d8df1f6..10eb3149 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/rest.cpython-310.pyc index 79aa30e5..20a3218d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index e4ac54af..05ee9cfa 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/rest_base.cpython-310.pyc index e0006dc1..1b87de89 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/__pycache__/__init__.cpython-310.pyc index a4c2b30a..dbb9b2e5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/__pycache__/async_client.cpython-310.pyc index 955338ea..08c90c39 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/__pycache__/client.cpython-310.pyc index 92599f54..228fed88 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/__pycache__/pagers.cpython-310.pyc index 2e95ca08..73e1805d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/__init__.cpython-310.pyc index d36554b3..94a1b6b4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/base.cpython-310.pyc index 2ec52f32..1e89a2d7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/grpc.cpython-310.pyc index f63a417c..273f3811 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 6155c687..a444f5cf 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/rest.cpython-310.pyc index 59c86051..8058ff1c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index cab678f8..ccefc918 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/rest_base.cpython-310.pyc index 3953a144..80710a10 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/__pycache__/__init__.cpython-310.pyc index 8138503c..06d88cd9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/__pycache__/async_client.cpython-310.pyc index f47ff50e..713d70c3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/__pycache__/client.cpython-310.pyc index be999fdc..fb44a6be 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/__pycache__/pagers.cpython-310.pyc index 4ad266ba..6d0744df 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/__init__.cpython-310.pyc index 57cbdc37..5762c053 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/base.cpython-310.pyc index 4d1aeb80..55f64b50 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/grpc.cpython-310.pyc index 07863a56..f0e97bcd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 7aba3820..35fc2302 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/rest.cpython-310.pyc index 8922dda3..4285f63c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index dabc3936..e49e3314 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/rest_base.cpython-310.pyc index 4dff04b2..c29cd2c5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/__pycache__/__init__.cpython-310.pyc index 7d507f22..8e837765 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/__pycache__/async_client.cpython-310.pyc index 114c3c87..b4521ec7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/__pycache__/client.cpython-310.pyc index 36a90127..34d699ec 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/__pycache__/pagers.cpython-310.pyc index d782861b..e9c6bf7b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/__init__.cpython-310.pyc index 3fdf1bd3..e061ab14 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/base.cpython-310.pyc index d565ff64..7576b0cd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/grpc.cpython-310.pyc index b3de06ca..0cdf03e5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index d5de7f6d..c0f786f5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/rest.cpython-310.pyc index dc056fb6..d208e910 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index ad975667..b149a35e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/rest_base.cpython-310.pyc index c25e046d..0a8b8204 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/__pycache__/__init__.cpython-310.pyc index 53e8c3ca..74541d4b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/__pycache__/async_client.cpython-310.pyc index c973c4f3..d04be920 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/__pycache__/client.cpython-310.pyc index 3458ffe9..4b2f0ebf 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/__pycache__/pagers.cpython-310.pyc index c5348c67..bbda5041 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/__init__.cpython-310.pyc index 9ec44e1c..03134076 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/base.cpython-310.pyc index 44c1d6ac..ff8e782a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/grpc.cpython-310.pyc index f4dcb7db..718a9110 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 656c138b..af3559c4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/rest.cpython-310.pyc index 8e89823c..283936e1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index efdfa3dd..4988602a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/rest_base.cpython-310.pyc index 7d4350b3..bb5dd384 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/__pycache__/__init__.cpython-310.pyc index 4b5f101a..ce568198 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/__pycache__/async_client.cpython-310.pyc index 6fd378fb..900bf008 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/__pycache__/client.cpython-310.pyc index b46f4c48..d4f64d55 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/__pycache__/pagers.cpython-310.pyc index e9d1c215..ddc21104 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/__init__.cpython-310.pyc index 8677b2d5..c20680d3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/base.cpython-310.pyc index a2903931..a4b2b36e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/grpc.cpython-310.pyc index a7a3511d..4725eefd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 6d31a5e6..7672273b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/rest.cpython-310.pyc index 2f6d7caf..0a9c4f94 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 7278447f..aaa408ea 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/rest_base.cpython-310.pyc index dce3cfbe..e8f156d5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/__pycache__/__init__.cpython-310.pyc index 7f6a6fd3..aa9ee19f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/__pycache__/async_client.cpython-310.pyc index b2f897c5..53e6d1d5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/__pycache__/client.cpython-310.pyc index ee0dd7cf..4dbd90ce 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/__init__.cpython-310.pyc index ea9e96db..ea73a9c6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/base.cpython-310.pyc index 2668f65f..3e91082c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/grpc.cpython-310.pyc index b4e4f3ee..128961e2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 7f48a359..7598ce20 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/rest.cpython-310.pyc index c6ecd34b..f6d34007 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index a47c46fd..8d39bca1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/rest_base.cpython-310.pyc index 52fa8c3c..f351f8d8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/__pycache__/__init__.cpython-310.pyc index 51256b51..e81b18b5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/__pycache__/async_client.cpython-310.pyc index 656ff809..5a1bf757 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/__pycache__/client.cpython-310.pyc index 6f340d53..da157fef 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/__pycache__/pagers.cpython-310.pyc index e2db75fa..5171dea4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/__init__.cpython-310.pyc index 4f8dc1f8..cce74825 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/base.cpython-310.pyc index d4829c81..fb2fbdbb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/grpc.cpython-310.pyc index fd4abd2f..8f85aae7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 735b4d37..2e33dd64 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/rest.cpython-310.pyc index b92d0185..3447e6ec 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index a99c93b0..85a6aa74 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/rest_base.cpython-310.pyc index 9a88b2c0..f587e40e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/__init__.cpython-310.pyc index b9ca0da5..d4f0a832 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/accelerator_type.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/accelerator_type.cpython-310.pyc index 9815d8fc..e50bd921 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/accelerator_type.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/accelerator_type.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/annotation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/annotation.cpython-310.pyc index 88fcfc50..3d2549b8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/annotation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/annotation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/annotation_spec.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/annotation_spec.cpython-310.pyc index a948f158..538f538b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/annotation_spec.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/annotation_spec.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/api_auth.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/api_auth.cpython-310.pyc index acb70f73..396025a1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/api_auth.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/api_auth.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/artifact.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/artifact.cpython-310.pyc index 74d827df..aaab279f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/artifact.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/artifact.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/batch_prediction_job.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/batch_prediction_job.cpython-310.pyc index 78970e41..0f0db3a5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/batch_prediction_job.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/batch_prediction_job.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/cached_content.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/cached_content.cpython-310.pyc index 176403a2..bbd7b3db 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/cached_content.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/cached_content.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/completion_stats.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/completion_stats.cpython-310.pyc index 7bc92f0e..9d1fae42 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/completion_stats.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/completion_stats.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/content.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/content.cpython-310.pyc index e8d5d67f..8aa24978 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/content.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/content.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/context.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/context.cpython-310.pyc index f957a40a..83036947 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/context.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/context.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/custom_job.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/custom_job.cpython-310.pyc index 50a43ce8..8fddea6d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/custom_job.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/custom_job.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/data_item.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/data_item.cpython-310.pyc index 56688164..f66f9509 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/data_item.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/data_item.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/data_labeling_job.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/data_labeling_job.cpython-310.pyc index 99fb4269..c210b140 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/data_labeling_job.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/data_labeling_job.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/dataset.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/dataset.cpython-310.pyc index aa5694e9..dc85d8f4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/dataset.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/dataset.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/dataset_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/dataset_service.cpython-310.pyc index 2ebf177f..96934903 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/dataset_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/dataset_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/dataset_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/dataset_version.cpython-310.pyc index 51a07e04..692a6e5b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/dataset_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/dataset_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/deployed_index_ref.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/deployed_index_ref.cpython-310.pyc index bd1dc27d..71e808d6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/deployed_index_ref.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/deployed_index_ref.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/deployed_model_ref.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/deployed_model_ref.cpython-310.pyc index dffa9b30..ba7fb6f4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/deployed_model_ref.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/deployed_model_ref.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/deployment_resource_pool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/deployment_resource_pool.cpython-310.pyc index 827376a3..918c5113 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/deployment_resource_pool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/deployment_resource_pool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/deployment_resource_pool_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/deployment_resource_pool_service.cpython-310.pyc index e87f1223..7a07d7bd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/deployment_resource_pool_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/deployment_resource_pool_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/encryption_spec.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/encryption_spec.cpython-310.pyc index 865265df..0febcc65 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/encryption_spec.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/encryption_spec.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/endpoint.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/endpoint.cpython-310.pyc index 845507bf..4d84edf8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/endpoint.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/endpoint.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/endpoint_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/endpoint_service.cpython-310.pyc index a9e71798..59371799 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/endpoint_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/endpoint_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/entity_type.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/entity_type.cpython-310.pyc index c9e26d25..f9c23001 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/entity_type.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/entity_type.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/env_var.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/env_var.cpython-310.pyc index 207da5b6..5b58c334 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/env_var.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/env_var.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/evaluated_annotation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/evaluated_annotation.cpython-310.pyc index 48d6181b..ace96584 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/evaluated_annotation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/evaluated_annotation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/evaluation_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/evaluation_service.cpython-310.pyc index a2f4d771..467eb3aa 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/evaluation_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/evaluation_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/event.cpython-310.pyc index 86e6ba16..e07cee1b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/event.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/event.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/execution.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/execution.cpython-310.pyc index 8e28a1c8..efc0d29b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/execution.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/execution.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/explanation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/explanation.cpython-310.pyc index a67e9371..3209b63d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/explanation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/explanation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/explanation_metadata.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/explanation_metadata.cpython-310.pyc index ae7b68a3..ba3513f9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/explanation_metadata.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/explanation_metadata.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature.cpython-310.pyc index 9e6bd57a..d167f10b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_group.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_group.cpython-310.pyc index 75d30131..9ca0ea20 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_group.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_group.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_monitoring_stats.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_monitoring_stats.cpython-310.pyc index 09d25ded..34fd8ba4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_monitoring_stats.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_monitoring_stats.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_online_store.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_online_store.cpython-310.pyc index 67b071e9..093b7a75 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_online_store.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_online_store.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_online_store_admin_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_online_store_admin_service.cpython-310.pyc index ddac3be0..57523666 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_online_store_admin_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_online_store_admin_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_online_store_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_online_store_service.cpython-310.pyc index ff4e8b84..c193a3ed 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_online_store_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_online_store_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_registry_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_registry_service.cpython-310.pyc index e0b00193..bc5e672b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_registry_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_registry_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_selector.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_selector.cpython-310.pyc index ecfed8d9..c204b79d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_selector.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_selector.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_view.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_view.cpython-310.pyc index c126e8d6..6ad217e8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_view.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_view.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_view_sync.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_view_sync.cpython-310.pyc index 806a78de..950e4e9a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_view_sync.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_view_sync.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/featurestore.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/featurestore.cpython-310.pyc index 02058afe..d8b22118 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/featurestore.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/featurestore.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/featurestore_monitoring.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/featurestore_monitoring.cpython-310.pyc index 89a2b7d0..d2d66898 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/featurestore_monitoring.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/featurestore_monitoring.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/featurestore_online_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/featurestore_online_service.cpython-310.pyc index fffb7fcf..483d0022 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/featurestore_online_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/featurestore_online_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/featurestore_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/featurestore_service.cpython-310.pyc index bbb99c09..92328e85 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/featurestore_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/featurestore_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/gen_ai_cache_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/gen_ai_cache_service.cpython-310.pyc index c74c7965..a9a604b5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/gen_ai_cache_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/gen_ai_cache_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/genai_tuning_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/genai_tuning_service.cpython-310.pyc index 02014ff3..10e3b53a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/genai_tuning_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/genai_tuning_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/hyperparameter_tuning_job.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/hyperparameter_tuning_job.cpython-310.pyc index 0d0dc110..b1aa9080 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/hyperparameter_tuning_job.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/hyperparameter_tuning_job.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/index.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/index.cpython-310.pyc index 25b674dc..dab14bb2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/index.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/index.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/index_endpoint.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/index_endpoint.cpython-310.pyc index 87a2100d..cb5fa21a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/index_endpoint.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/index_endpoint.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/index_endpoint_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/index_endpoint_service.cpython-310.pyc index b39efbbb..23dc6df1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/index_endpoint_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/index_endpoint_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/index_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/index_service.cpython-310.pyc index 621e8e08..711e613b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/index_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/index_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/io.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/io.cpython-310.pyc index b517f1a5..50616b47 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/io.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/io.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/job_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/job_service.cpython-310.pyc index b54330f0..55013064 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/job_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/job_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/job_state.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/job_state.cpython-310.pyc index 4e857207..8d95bf3d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/job_state.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/job_state.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/lineage_subgraph.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/lineage_subgraph.cpython-310.pyc index 3dcd5e32..7e45cc2f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/lineage_subgraph.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/lineage_subgraph.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/llm_utility_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/llm_utility_service.cpython-310.pyc index 4f13ff10..84733978 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/llm_utility_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/llm_utility_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/machine_resources.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/machine_resources.cpython-310.pyc index bae76d0f..45646ac7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/machine_resources.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/machine_resources.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/manual_batch_tuning_parameters.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/manual_batch_tuning_parameters.cpython-310.pyc index e7aca2c7..f1e15202 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/manual_batch_tuning_parameters.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/manual_batch_tuning_parameters.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/match_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/match_service.cpython-310.pyc index 8db00859..abd13aa7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/match_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/match_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/metadata_schema.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/metadata_schema.cpython-310.pyc index 04a19b04..7b99b079 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/metadata_schema.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/metadata_schema.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/metadata_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/metadata_service.cpython-310.pyc index 495a7307..74241f5c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/metadata_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/metadata_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/metadata_store.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/metadata_store.cpython-310.pyc index da9601d0..d04e91e9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/metadata_store.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/metadata_store.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/migratable_resource.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/migratable_resource.cpython-310.pyc index d5719252..f24c45c7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/migratable_resource.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/migratable_resource.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/migration_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/migration_service.cpython-310.pyc index 6e0720ed..dda583a2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/migration_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/migration_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model.cpython-310.pyc index f402fbd3..fb410816 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_deployment_monitoring_job.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_deployment_monitoring_job.cpython-310.pyc index 96a72251..9aaecca5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_deployment_monitoring_job.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_deployment_monitoring_job.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_evaluation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_evaluation.cpython-310.pyc index 6cef47ca..339e5139 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_evaluation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_evaluation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_evaluation_slice.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_evaluation_slice.cpython-310.pyc index f235bad7..5fec5b48 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_evaluation_slice.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_evaluation_slice.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_garden_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_garden_service.cpython-310.pyc index c20e41fd..40ee5598 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_garden_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_garden_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_monitoring.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_monitoring.cpython-310.pyc index 43fa560e..0e844b99 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_monitoring.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_monitoring.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_service.cpython-310.pyc index 363438ad..ed6f1199 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/nas_job.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/nas_job.cpython-310.pyc index 2d5ed87a..16ed6695 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/nas_job.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/nas_job.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/network_spec.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/network_spec.cpython-310.pyc index 78a44061..7c075909 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/network_spec.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/network_spec.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_euc_config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_euc_config.cpython-310.pyc index 25c4e63f..45801b26 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_euc_config.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_euc_config.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_execution_job.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_execution_job.cpython-310.pyc index ce7b5b3f..128bfede 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_execution_job.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_execution_job.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_idle_shutdown_config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_idle_shutdown_config.cpython-310.pyc index 18560a12..4a957555 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_idle_shutdown_config.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_idle_shutdown_config.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_runtime.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_runtime.cpython-310.pyc index a22e10ef..a246c796 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_runtime.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_runtime.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_runtime_template_ref.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_runtime_template_ref.cpython-310.pyc index 6963776f..25021aa9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_runtime_template_ref.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_runtime_template_ref.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_service.cpython-310.pyc index 8666ff6d..846260f0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_software_config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_software_config.cpython-310.pyc index 4d1c95f8..a30a303e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_software_config.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_software_config.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/openapi.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/openapi.cpython-310.pyc index 443710ba..c4d1d978 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/openapi.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/openapi.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/operation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/operation.cpython-310.pyc index 8cf0048d..69b6af21 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/operation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/operation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/persistent_resource.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/persistent_resource.cpython-310.pyc index 37cf415c..8f74aec1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/persistent_resource.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/persistent_resource.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/persistent_resource_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/persistent_resource_service.cpython-310.pyc index 2608c6c2..e0823cc7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/persistent_resource_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/persistent_resource_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/pipeline_failure_policy.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/pipeline_failure_policy.cpython-310.pyc index 1bdb3d0e..5c3d6caa 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/pipeline_failure_policy.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/pipeline_failure_policy.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/pipeline_job.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/pipeline_job.cpython-310.pyc index 7abad813..a9dc3033 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/pipeline_job.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/pipeline_job.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/pipeline_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/pipeline_service.cpython-310.pyc index bfff46a9..505184e3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/pipeline_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/pipeline_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/pipeline_state.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/pipeline_state.cpython-310.pyc index bd400298..029918fc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/pipeline_state.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/pipeline_state.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/prediction_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/prediction_service.cpython-310.pyc index 618f9e40..29ec9648 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/prediction_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/prediction_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/publisher_model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/publisher_model.cpython-310.pyc index f1184b7b..f457293d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/publisher_model.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/publisher_model.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/reasoning_engine.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/reasoning_engine.cpython-310.pyc index c12aed71..f31726cf 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/reasoning_engine.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/reasoning_engine.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/reasoning_engine_execution_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/reasoning_engine_execution_service.cpython-310.pyc index 9410cce0..f19aebea 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/reasoning_engine_execution_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/reasoning_engine_execution_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/reasoning_engine_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/reasoning_engine_service.cpython-310.pyc index f0de3d9e..7dbc58c9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/reasoning_engine_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/reasoning_engine_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/reservation_affinity.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/reservation_affinity.cpython-310.pyc index 79172b76..0488f45e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/reservation_affinity.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/reservation_affinity.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/saved_query.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/saved_query.cpython-310.pyc index e5ed7e1c..f1d3a39a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/saved_query.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/saved_query.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/schedule.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/schedule.cpython-310.pyc index 9e968fa6..7a070d32 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/schedule.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/schedule.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/schedule_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/schedule_service.cpython-310.pyc index 09eb1142..840e9a88 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/schedule_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/schedule_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/service_networking.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/service_networking.cpython-310.pyc index e5bb5b82..ba393c25 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/service_networking.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/service_networking.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/specialist_pool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/specialist_pool.cpython-310.pyc index f1efd1d0..c54de453 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/specialist_pool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/specialist_pool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/specialist_pool_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/specialist_pool_service.cpython-310.pyc index c5332fa6..760e9c68 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/specialist_pool_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/specialist_pool_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/study.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/study.cpython-310.pyc index 21143941..55ae2a76 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/study.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/study.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard.cpython-310.pyc index 688e1e7d..8b4dddb2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_data.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_data.cpython-310.pyc index d9c9db54..aea203e9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_data.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_data.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_experiment.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_experiment.cpython-310.pyc index a2785a48..f83c77de 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_experiment.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_experiment.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_run.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_run.cpython-310.pyc index a9214e29..ececbd81 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_run.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_run.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_service.cpython-310.pyc index 2bd930cd..77fa9834 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_time_series.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_time_series.cpython-310.pyc index 5b5712bb..482ebcd2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_time_series.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_time_series.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tool.cpython-310.pyc index a2e87a8e..2c544f22 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/training_pipeline.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/training_pipeline.cpython-310.pyc index 1d612c88..672f7be0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/training_pipeline.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/training_pipeline.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tuning_job.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tuning_job.cpython-310.pyc index 64b430b9..180b1c68 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tuning_job.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tuning_job.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/types.cpython-310.pyc index 0e283632..48a2bbdf 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/types.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/types.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/unmanaged_container_model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/unmanaged_container_model.cpython-310.pyc index f671aa86..d2df9f03 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/unmanaged_container_model.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/unmanaged_container_model.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/user_action_reference.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/user_action_reference.cpython-310.pyc index aa5fd55a..51ce0ffc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/user_action_reference.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/user_action_reference.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/value.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/value.cpython-310.pyc index 97f5417c..bd8629cb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/value.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/value.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/vertex_rag_data.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/vertex_rag_data.cpython-310.pyc index f5747dbd..c2a74cce 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/vertex_rag_data.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/vertex_rag_data.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/vertex_rag_data_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/vertex_rag_data_service.cpython-310.pyc index 950fe0bf..372ddf46 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/vertex_rag_data_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/vertex_rag_data_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/vertex_rag_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/vertex_rag_service.cpython-310.pyc index b1697200..030c46ac 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/vertex_rag_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/vertex_rag_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/vizier_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/vizier_service.cpython-310.pyc index 7c1a8923..b624a427 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/vizier_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/vizier_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/__pycache__/__init__.cpython-310.pyc index d11d9baf..84d88a0c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/__pycache__/gapic_version.cpython-310.pyc index 0c013d36..5b6a88f8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/__pycache__/gapic_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/__pycache__/gapic_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/__pycache__/__init__.cpython-310.pyc index 5620e250..ce40d8e3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/__pycache__/__init__.cpython-310.pyc index d9489d99..f8709d00 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/__pycache__/async_client.cpython-310.pyc index a6042e41..dd3dcf78 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/__pycache__/client.cpython-310.pyc index ad2e786a..b65ffb5a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/__pycache__/pagers.cpython-310.pyc index 1728f78d..58578f20 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/__init__.cpython-310.pyc index 21d30431..b89a4d52 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/base.cpython-310.pyc index 714ad20b..aee2ac70 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/grpc.cpython-310.pyc index 76fc6e6e..128151fe 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 7adf8c0c..9f4045b3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/rest.cpython-310.pyc index 1e98636f..b107c379 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 0d2a25b1..4c9c9108 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/rest_base.cpython-310.pyc index 5d81a7c4..d34d6a66 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/__pycache__/__init__.cpython-310.pyc index 90f42747..43eb4e9f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/__pycache__/async_client.cpython-310.pyc index 3ae9dcd9..211b301b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/__pycache__/client.cpython-310.pyc index 866a109a..fce9cc47 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/__pycache__/pagers.cpython-310.pyc index d49dbc9e..2ed9454c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/__init__.cpython-310.pyc index e74eed9f..5c02cbef 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/base.cpython-310.pyc index 90b2cb5d..7441f766 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/grpc.cpython-310.pyc index e087b3c7..b143eb12 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 9e7ad7ae..4ec729a7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/rest.cpython-310.pyc index d300bf4c..9846f1ab 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index f2290d31..72cbc347 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/rest_base.cpython-310.pyc index 2c3ca700..6a12f0a5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/__pycache__/__init__.cpython-310.pyc index b46fdb6b..b9e43b4f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/__pycache__/async_client.cpython-310.pyc index 16f0a2fe..67f1162d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/__pycache__/client.cpython-310.pyc index 02ba6a0f..4895c156 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/__pycache__/pagers.cpython-310.pyc index 325774f5..2bc6a48d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/__init__.cpython-310.pyc index cdf617b0..5aa7bb2b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/base.cpython-310.pyc index f2b957d8..efb6d63b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/grpc.cpython-310.pyc index 7d875197..d457387d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 1cbc73e0..f193b114 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/rest.cpython-310.pyc index 2044e271..b1fdf952 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index e3279216..254260ed 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/rest_base.cpython-310.pyc index 314321ad..d493338f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/__pycache__/__init__.cpython-310.pyc index 9b156c1b..ad1bfcbf 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/__pycache__/async_client.cpython-310.pyc index cf7ee59e..ea7bda42 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/__pycache__/client.cpython-310.pyc index c7770005..a1bfb47f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/__init__.cpython-310.pyc index c48735df..13aab9a3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/base.cpython-310.pyc index a7f4d8fd..e2b7e578 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/grpc.cpython-310.pyc index 0747db34..bc056a36 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 9cf2642f..7ca3d7aa 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/rest.cpython-310.pyc index 89e4f2bd..0bfeda12 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 1ad7b6cb..f55209fe 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/rest_base.cpython-310.pyc index 267332fb..45b4f624 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/__pycache__/__init__.cpython-310.pyc index e87221d8..077e1270 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/__pycache__/async_client.cpython-310.pyc index 408d157f..ecad0a6a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/__pycache__/client.cpython-310.pyc index 6c3b8bc4..0dcded08 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/__pycache__/pagers.cpython-310.pyc index e1def7fe..4f3bf50d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/__init__.cpython-310.pyc index 63cb8070..0cd87695 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/base.cpython-310.pyc index 6143dd13..ba22c129 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/grpc.cpython-310.pyc index faa3ee28..5d646f31 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index c5d41455..ecafdd06 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/rest.cpython-310.pyc index 833db08d..5d2ca8e0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 3c396b77..60e24586 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/rest_base.cpython-310.pyc index 96435099..e11a1a20 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/__pycache__/__init__.cpython-310.pyc index 6c9f3009..120d7876 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/__pycache__/async_client.cpython-310.pyc index 5f965698..d59eb418 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/__pycache__/client.cpython-310.pyc index 303bc934..4fd0ba2b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/__init__.cpython-310.pyc index b4f68b35..3326d7b7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/base.cpython-310.pyc index 6c4b7669..689f948b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/grpc.cpython-310.pyc index 9fa131b6..8b372013 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index b84e0239..557b1c38 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/rest.cpython-310.pyc index 1cb1f7d3..cfe923c7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 7f3076e8..7b8bfe6b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/rest_base.cpython-310.pyc index 3bb46728..29dd3825 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/__pycache__/__init__.cpython-310.pyc index 483620b5..8ef006e9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/__pycache__/async_client.cpython-310.pyc index 00d9f578..067cb036 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/__pycache__/client.cpython-310.pyc index ef1e7aab..158325f0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/__pycache__/pagers.cpython-310.pyc index a88e450b..9b83b3e6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/__init__.cpython-310.pyc index b20f264b..cd3552c4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/base.cpython-310.pyc index 26d97342..8a87528d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/grpc.cpython-310.pyc index 15fc8cdd..5ce22453 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index e19db0bf..3d0ee22e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/rest.cpython-310.pyc index 1e270502..086e53e0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 761e0777..11b51cdd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/rest_base.cpython-310.pyc index 8e3d5020..5c349f6f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/__pycache__/__init__.cpython-310.pyc index cddecf21..4b5df1c8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/__pycache__/async_client.cpython-310.pyc index f1ad7a5e..830d48ac 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/__pycache__/client.cpython-310.pyc index be02354f..fb8a6d93 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/__pycache__/pagers.cpython-310.pyc index 68f406a5..f0f57efe 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/__init__.cpython-310.pyc index de35eecc..6d0e8678 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/base.cpython-310.pyc index 3fb5db14..e87c634a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/grpc.cpython-310.pyc index 6c485e22..301762b1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 7ce6d8f1..30b1a6d0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/rest.cpython-310.pyc index 092d7801..6fadc4b0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index ca7b8eb9..e5c5e327 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/rest_base.cpython-310.pyc index 231ce342..ff4645ee 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_admin_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/__pycache__/__init__.cpython-310.pyc index 8064b70e..8aab9888 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/__pycache__/async_client.cpython-310.pyc index cc6d959d..918227c1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/__pycache__/client.cpython-310.pyc index f207f585..f5b1a700 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/__init__.cpython-310.pyc index 5aad3bc6..4fd73966 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/base.cpython-310.pyc index 4ddefdca..b2c7706f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/grpc.cpython-310.pyc index 7d94eff9..d83b9a63 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index a18e7cf4..607c469c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/rest.cpython-310.pyc index e423f893..fb9efdde 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 4fdec632..479edc2c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/rest_base.cpython-310.pyc index bbf89996..2bb34f78 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/__pycache__/__init__.cpython-310.pyc index 8fd193d2..1df1b34a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/__pycache__/async_client.cpython-310.pyc index 3ce2ced8..3e1c1b07 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/__pycache__/client.cpython-310.pyc index 9fe10b34..5eab2d5f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/__pycache__/pagers.cpython-310.pyc index b9835ae3..253d0735 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/__init__.cpython-310.pyc index 03223aa4..da2b0ef6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/base.cpython-310.pyc index 38c53067..0141729b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/grpc.cpython-310.pyc index 2f1da58c..db131d93 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index e51bc42b..88505dd8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/rest.cpython-310.pyc index 4d719e89..27a91f85 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index a9180c03..46586e2f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/rest_base.cpython-310.pyc index caf22689..93242655 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/__pycache__/__init__.cpython-310.pyc index 977c487d..7aa5d949 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/__pycache__/async_client.cpython-310.pyc index a863d9d6..0f6c7fe5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/__pycache__/client.cpython-310.pyc index 8e177194..025990cd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/__init__.cpython-310.pyc index 89804017..f5c4e657 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/base.cpython-310.pyc index cce76a6d..cf34caac 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/grpc.cpython-310.pyc index 5a9eae7b..5fe13db4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index df7f2b41..d9c52d4f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/rest.cpython-310.pyc index 73d3214f..95db65ac 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 4345ed63..29ec8769 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/rest_base.cpython-310.pyc index 24be400d..4ac8c115 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/__pycache__/__init__.cpython-310.pyc index 3ae5665c..409f996e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/__pycache__/async_client.cpython-310.pyc index baf5ad13..c6284aa7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/__pycache__/client.cpython-310.pyc index 5a9584ed..a0e7c92d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/__pycache__/pagers.cpython-310.pyc index e20aa95a..a1fcb202 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/__init__.cpython-310.pyc index 33b5684f..9ef30044 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/base.cpython-310.pyc index ebe7abb6..cb1964b4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/grpc.cpython-310.pyc index 472cac66..b78e5aeb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 6f48989c..2a634408 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/rest.cpython-310.pyc index 33dae2df..69f74963 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index ed4403c6..103301fe 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/rest_base.cpython-310.pyc index 4929bd2c..dbba70da 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/__pycache__/__init__.cpython-310.pyc index f41b02c6..c677069b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/__pycache__/async_client.cpython-310.pyc index c49180bd..2e3b22af 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/__pycache__/client.cpython-310.pyc index dd90a7c2..3452deb5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/__pycache__/pagers.cpython-310.pyc index 88dc138f..883d2c89 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/__init__.cpython-310.pyc index 3ebe719f..c173b1f8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/base.cpython-310.pyc index 8ee97579..be8eb720 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/grpc.cpython-310.pyc index b6f30492..44a6bc4e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 5f1a0fab..cd3f0d47 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/rest.cpython-310.pyc index 050088e3..a1e0a220 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index b6a50198..774d8edb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/rest_base.cpython-310.pyc index 10844c30..a8742c63 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/__pycache__/__init__.cpython-310.pyc index c685ff18..e712eb58 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/__pycache__/async_client.cpython-310.pyc index 0609b84d..4890b6c5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/__pycache__/client.cpython-310.pyc index 9a66372e..b9a2d465 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/__pycache__/pagers.cpython-310.pyc index fa45923a..ff0e8505 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/__init__.cpython-310.pyc index c34c07fc..1e06caa4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/base.cpython-310.pyc index 32190e90..c009eeb3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/grpc.cpython-310.pyc index 125d7810..4cdc42b2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 3f4e650a..dc11be16 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/rest.cpython-310.pyc index 0998106d..bcb4f3a1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index fcc401a1..a437ee35 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/rest_base.cpython-310.pyc index 58f98929..afd777c6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/__pycache__/__init__.cpython-310.pyc index 89b2da97..d54e3a4d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/__pycache__/async_client.cpython-310.pyc index 169b55f4..bc5e96e2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/__pycache__/client.cpython-310.pyc index 2563831c..bbc882ad 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/__pycache__/pagers.cpython-310.pyc index 63aae3ce..a8c0a140 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/__init__.cpython-310.pyc index b3a3348c..f810fd02 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/base.cpython-310.pyc index 4a3b9137..29891800 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/grpc.cpython-310.pyc index 7f729bde..e144d571 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index c70fabcf..7acb85b9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/rest.cpython-310.pyc index 9ee439af..731ef50e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index d14c42b5..b1666cf7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/rest_base.cpython-310.pyc index 02492993..a002dce7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/__pycache__/__init__.cpython-310.pyc index dfcd9bd3..ff0095cc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/__pycache__/async_client.cpython-310.pyc index 4695f72f..d664e39b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/__pycache__/client.cpython-310.pyc index 5c57dfc6..0533259b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/__pycache__/pagers.cpython-310.pyc index 6b24b617..33b4c5d3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/__init__.cpython-310.pyc index e7c92e78..ac5c84e0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/base.cpython-310.pyc index f7dbe94e..92d5f010 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/grpc.cpython-310.pyc index 42294d3c..0a6c3ef5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index bf588d89..eb46fcb2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/rest.cpython-310.pyc index fdcfa5ac..80becfd0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 27edd437..0d1fe795 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/rest_base.cpython-310.pyc index e6576963..a3b533fb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/__pycache__/__init__.cpython-310.pyc index 2620804a..a8b6912d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/__pycache__/async_client.cpython-310.pyc index aa6a7055..a2fd6333 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/__pycache__/client.cpython-310.pyc index 88aa9fe8..e93559ef 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/__pycache__/pagers.cpython-310.pyc index 378abc48..b326a6a9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/__init__.cpython-310.pyc index 32731f39..5ee00352 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/base.cpython-310.pyc index db673018..e1938a59 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/grpc.cpython-310.pyc index 2af05354..05beea6b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 7659a0e4..d3d908bf 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/rest.cpython-310.pyc index a70ad9ae..2095b545 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 62d9b9fd..0d4dd69c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/rest_base.cpython-310.pyc index 6d436a95..11efe258 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/__pycache__/__init__.cpython-310.pyc index 6f9b3d37..82208aaa 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/__pycache__/async_client.cpython-310.pyc index 4a91cbea..9bec0b19 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/__pycache__/client.cpython-310.pyc index 9d2a1c63..f39548f0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/__init__.cpython-310.pyc index e2527414..4c0bf769 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/base.cpython-310.pyc index 9b30d826..e4d5c3dc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/grpc.cpython-310.pyc index 468a1855..feb0d330 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index dbbe451f..345ff462 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/rest.cpython-310.pyc index f49845b7..eeb5cdc6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 51436e34..dd760d43 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/rest_base.cpython-310.pyc index 865bc86b..a3d49371 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/__pycache__/__init__.cpython-310.pyc index ee961a4d..1d6a3294 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/__pycache__/async_client.cpython-310.pyc index a9ffff51..91c7f8f8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/__pycache__/client.cpython-310.pyc index 8d6f6c1a..5ebe7123 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/__init__.cpython-310.pyc index a0dac7d0..9aae24d0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/base.cpython-310.pyc index 95040aec..0e4a3a78 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/grpc.cpython-310.pyc index 7263f93a..5de50fdb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 30688779..092497c7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/rest.cpython-310.pyc index 39cb97b0..ccdfe6cc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index cb743e95..8ad00dfd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/rest_base.cpython-310.pyc index 4d906466..75ad5ffa 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/__pycache__/__init__.cpython-310.pyc index e4a607d8..bf66c4d9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/__pycache__/async_client.cpython-310.pyc index 031f7fde..170804a6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/__pycache__/client.cpython-310.pyc index c0ab4f58..af20ffb6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/__pycache__/pagers.cpython-310.pyc index fabe5b32..2c5b24dd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/__init__.cpython-310.pyc index 78e46516..d1ad3a78 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/base.cpython-310.pyc index e8f405e3..6561de8f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/grpc.cpython-310.pyc index ea54dcb7..4292b569 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index f892dc07..cb89a606 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/rest.cpython-310.pyc index 9a2d430a..6a513e1c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 325ea1ef..9c6307e6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/rest_base.cpython-310.pyc index fb117141..f47180b2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/__pycache__/__init__.cpython-310.pyc index 8ec0d817..805bb160 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/__pycache__/async_client.cpython-310.pyc index e042a569..9a552366 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/__pycache__/client.cpython-310.pyc index 52beab86..49d0a494 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/__pycache__/pagers.cpython-310.pyc index 3a7903bc..a5dc6cdc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/__init__.cpython-310.pyc index 555a282f..ffa263ea 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/base.cpython-310.pyc index 6ead0023..0fe4258b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/grpc.cpython-310.pyc index ab95b872..8724c1e5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 45b89ea1..cbc12171 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/rest.cpython-310.pyc index 17904373..79dd6a5b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index a9bf126b..bd0e47b4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/rest_base.cpython-310.pyc index 761fda09..e746109f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/__pycache__/__init__.cpython-310.pyc index 8f66b945..623e9b38 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/__pycache__/async_client.cpython-310.pyc index f64b338c..82c917ed 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/__pycache__/client.cpython-310.pyc index fa2f2901..2e0cf4c8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/__pycache__/pagers.cpython-310.pyc index 93ff6a83..b6a7f72d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/__init__.cpython-310.pyc index 3ab4790e..2ca907c3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/base.cpython-310.pyc index eb534191..32bdffdd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/grpc.cpython-310.pyc index c63a8329..46023848 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index f4475070..1efc5c8e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/rest.cpython-310.pyc index 64440e08..40dd4d70 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 913abe2c..cd399cda 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/rest_base.cpython-310.pyc index 8d7407c2..368b1778 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/__pycache__/__init__.cpython-310.pyc index eb4d92a5..9301c35a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/__pycache__/async_client.cpython-310.pyc index 05485fc6..168c8172 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/__pycache__/client.cpython-310.pyc index 8132878f..e1f3c9fb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/__pycache__/pagers.cpython-310.pyc index 85b465d6..ac31c2cb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/__init__.cpython-310.pyc index efb2a388..423bf60a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/base.cpython-310.pyc index 4c879654..e033e0ac 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/grpc.cpython-310.pyc index b7eb5eab..c7e68f73 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index f840d61b..57d3cb81 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/rest.cpython-310.pyc index 9b3a1497..a786b2e6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 4c794bbd..03abb58b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/rest_base.cpython-310.pyc index db25a639..d278c66b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/__pycache__/__init__.cpython-310.pyc index eb84624b..149b3505 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/__pycache__/async_client.cpython-310.pyc index 2825dc16..b6b54792 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/__pycache__/client.cpython-310.pyc index 8ab26813..d18fb8c6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/__pycache__/pagers.cpython-310.pyc index 81b7b7ad..48b0621c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/__init__.cpython-310.pyc index 98c53ef9..740c98dc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/base.cpython-310.pyc index 682535ad..1ebf5361 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/grpc.cpython-310.pyc index dcd14960..153bf5ac 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 47cb9e93..aa7aefbd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/rest.cpython-310.pyc index e3c4680e..e2b19705 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 52c791de..3c5512b0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/rest_base.cpython-310.pyc index 6fe49e07..2f56165d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/__pycache__/__init__.cpython-310.pyc index ce8f7ff0..a5feac06 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/__pycache__/async_client.cpython-310.pyc index ef95fa3e..3f066ea3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/__pycache__/client.cpython-310.pyc index 46b5d809..9551903f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/__pycache__/pagers.cpython-310.pyc index 264b91fa..9fbbcf4a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/__init__.cpython-310.pyc index 331fdb7f..bb469e85 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/base.cpython-310.pyc index 084d2053..17aa4b74 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/grpc.cpython-310.pyc index c50f23af..f89cc0c3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 11f06d3c..f2fdaf34 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/rest.cpython-310.pyc index 9fe35b97..3b4f76b3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 93b030b5..d7490508 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/rest_base.cpython-310.pyc index 4a4b31f4..4b48fe2b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/__pycache__/__init__.cpython-310.pyc index 52c05428..5dde45bf 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/__pycache__/async_client.cpython-310.pyc index 9c8ec8e7..e72e4bd0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/__pycache__/client.cpython-310.pyc index ab9b2fe4..c49ad1df 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/__pycache__/pagers.cpython-310.pyc index d76de983..9c04c2d6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/__init__.cpython-310.pyc index ca43fd39..de9621bf 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/base.cpython-310.pyc index 01c23ad6..9fef6c05 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/grpc.cpython-310.pyc index 6a7e6cd9..85a05b4c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index d478376a..67a75548 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/rest.cpython-310.pyc index d0796018..99bd04e1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index d838f6ef..ed919f43 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/rest_base.cpython-310.pyc index d2597e99..a3345e73 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/__pycache__/__init__.cpython-310.pyc index 0afc19f2..8b8a492c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/__pycache__/async_client.cpython-310.pyc index 20ee0a9b..ef63dc30 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/__pycache__/client.cpython-310.pyc index 47e5761b..1d42dba2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/__pycache__/pagers.cpython-310.pyc index 37a54124..1ca4609d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/__init__.cpython-310.pyc index 92c25f9d..980e7872 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/base.cpython-310.pyc index 8d1e0326..110f5165 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/grpc.cpython-310.pyc index 6dfba7d4..6f4e5b8d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 4b2c4e65..3c209101 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/rest.cpython-310.pyc index 3fc98ebc..9c094f08 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index acc21b5c..f885392f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/rest_base.cpython-310.pyc index c7716f4b..7eb6057f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/__pycache__/__init__.cpython-310.pyc index 718021a3..a0ca891f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/__pycache__/async_client.cpython-310.pyc index 454e3d17..85ceac25 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/__pycache__/client.cpython-310.pyc index cfa3fa6f..5ba16f45 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/__init__.cpython-310.pyc index 0c2b5a18..fd311133 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/base.cpython-310.pyc index d55cc9fd..ab80edb4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/grpc.cpython-310.pyc index d5ec1a2d..350c91dc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 5da56f3c..b5af6a07 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/rest.cpython-310.pyc index fafa26fa..f221dd5e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 94595c51..3e175120 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/rest_base.cpython-310.pyc index c30a2cb9..22331fe4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/__pycache__/__init__.cpython-310.pyc index 95e5f63e..6c6eedc8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/__pycache__/async_client.cpython-310.pyc index c6f7623d..7b19ae46 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/__pycache__/client.cpython-310.pyc index d139f3f8..5479bfc0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/__init__.cpython-310.pyc index cd7fc936..c432ae04 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/base.cpython-310.pyc index 8d3bcdea..46ec58c2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/grpc.cpython-310.pyc index 3d606a79..4eae6b01 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 766dba5b..4779e21a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/rest.cpython-310.pyc index 53890fe6..667a26da 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index b17c2ba8..729dde56 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/rest_base.cpython-310.pyc index 8fe6287c..8a200041 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/__pycache__/__init__.cpython-310.pyc index d34eddd2..57756480 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/__pycache__/async_client.cpython-310.pyc index 38a6e109..a72bf72e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/__pycache__/client.cpython-310.pyc index 35233fad..6b8ba73b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/__pycache__/pagers.cpython-310.pyc index 2d6a11c9..56e92e3a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/__init__.cpython-310.pyc index 8bd1275b..9fa8d470 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/base.cpython-310.pyc index 34b9c8f7..1c8871d8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/grpc.cpython-310.pyc index 130bba03..0f922828 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index f739a3e2..5f5e62db 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/rest.cpython-310.pyc index d4805611..4f152c65 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 41c895cc..74a66cfc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/rest_base.cpython-310.pyc index 4f38164f..d74ba8e9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/__pycache__/__init__.cpython-310.pyc index 67851578..c7ccd761 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/__pycache__/async_client.cpython-310.pyc index 5dba9036..6da219da 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/__pycache__/client.cpython-310.pyc index 94d70589..43e52a0d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/__pycache__/pagers.cpython-310.pyc index 517f11c7..98229d99 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/__init__.cpython-310.pyc index b7e699b0..fd03ee04 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/base.cpython-310.pyc index 8c962924..b4061692 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/grpc.cpython-310.pyc index beb52340..5da8f227 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 59ee34af..4ade8851 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/rest.cpython-310.pyc index ea00cea2..12492498 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 5d77a361..f96fa8cf 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/rest_base.cpython-310.pyc index da727817..fcf3f211 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/__pycache__/__init__.cpython-310.pyc index 1b6cb609..24762fa5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/__pycache__/async_client.cpython-310.pyc index d5fa7464..bee604ec 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/__pycache__/client.cpython-310.pyc index 8855a25f..4b2529b1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/__pycache__/pagers.cpython-310.pyc index e70eac10..b94f2767 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/__init__.cpython-310.pyc index 10165a61..38eb5bf9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/base.cpython-310.pyc index a3e0ebda..1ec55d93 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/grpc.cpython-310.pyc index 97201154..2adab31c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index ee83eff2..2b8d507c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/rest.cpython-310.pyc index aff7b124..77898edc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index f7297d8a..6b4611eb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/rest_base.cpython-310.pyc index 628deca5..1e7b2bc9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/__pycache__/__init__.cpython-310.pyc index 1887a973..9f35e716 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/__pycache__/async_client.cpython-310.pyc index f4f7c199..d5681b75 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/__pycache__/client.cpython-310.pyc index 35da0806..8e3ab63f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/__pycache__/pagers.cpython-310.pyc index 70bebd59..7f00c38d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/__init__.cpython-310.pyc index 2afd2ba1..342b2f9a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/base.cpython-310.pyc index 54789969..d192d016 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/grpc.cpython-310.pyc index f4a5102a..c9e31e99 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index f0fa3614..544bae22 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/rest.cpython-310.pyc index 2bc7c83e..97b489df 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index b27a7f0a..e842d2cb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/rest_base.cpython-310.pyc index 13bd9338..60165423 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/__pycache__/__init__.cpython-310.pyc index 1c7f3fb8..1e52bbe7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/__pycache__/async_client.cpython-310.pyc index e656776d..1520c4a6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/__pycache__/client.cpython-310.pyc index 99399663..066c4b95 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/__pycache__/pagers.cpython-310.pyc index 28e51beb..5088fea5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/__init__.cpython-310.pyc index cdf16484..453e179d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/base.cpython-310.pyc index 9b0b061e..32c42766 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/grpc.cpython-310.pyc index 7dd5867f..9a564602 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index d98691f5..eca184b0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/rest.cpython-310.pyc index db3edf06..49997d7d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 65559862..05705691 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/rest_base.cpython-310.pyc index 692c104c..7ef57572 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/__pycache__/__init__.cpython-310.pyc index 8b6084ba..6083e0b1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/__pycache__/async_client.cpython-310.pyc index c07c82b6..8125a370 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/__pycache__/client.cpython-310.pyc index 575564b6..517eb9b2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/__pycache__/pagers.cpython-310.pyc index 5aa58b9d..a8521f89 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/__init__.cpython-310.pyc index 4710d57f..5568c396 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/base.cpython-310.pyc index 9ad967f3..709b917c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/grpc.cpython-310.pyc index 4cee2d88..8399a50f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 94eaca0d..451d9bc3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/rest.cpython-310.pyc index 0859a6d7..98494b48 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 3396dedb..485cfa67 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/rest_base.cpython-310.pyc index 621da28a..41fc3011 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/__pycache__/__init__.cpython-310.pyc index d1da18eb..f2de4103 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/__pycache__/async_client.cpython-310.pyc index 8f2ded5c..73e85a32 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/__pycache__/client.cpython-310.pyc index 56cd86b1..69956645 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/__init__.cpython-310.pyc index 105b92f0..54fb9ad7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/base.cpython-310.pyc index acad1dbd..81d32e8a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/grpc.cpython-310.pyc index 663b4c06..b727549c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 1877d0b3..cec5a3cb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/rest.cpython-310.pyc index 75258805..b8307717 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index 584eb275..e7472ef5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/rest_base.cpython-310.pyc index 3010664d..15238520 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/__pycache__/__init__.cpython-310.pyc index f1890839..ab81fed0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/__pycache__/async_client.cpython-310.pyc index 2ab7ff05..ce20bd88 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/__pycache__/client.cpython-310.pyc index dc76826f..3dc6a16d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/__pycache__/pagers.cpython-310.pyc index 34daacf8..120da4f8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/__init__.cpython-310.pyc index adc5c630..774e4f71 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/base.cpython-310.pyc index 48cd8fab..684e517d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/grpc.cpython-310.pyc index 4b0a7ba6..fadfffe4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc index ee02f8ae..d5cd339f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/rest.cpython-310.pyc index fd6a8ce1..2e4c229a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/rest_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/rest_asyncio.cpython-310.pyc index ef71939c..8ed0bc61 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/rest_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/rest_base.cpython-310.pyc index 11dac88b..02d19642 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/__init__.cpython-310.pyc index 4d102e96..aa62cfee 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/accelerator_type.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/accelerator_type.cpython-310.pyc index 5da408ed..c0202c1a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/accelerator_type.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/accelerator_type.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/annotation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/annotation.cpython-310.pyc index 6d789e7a..6f1e5dda 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/annotation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/annotation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/annotation_spec.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/annotation_spec.cpython-310.pyc index e05769d4..c3873e0d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/annotation_spec.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/annotation_spec.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/api_auth.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/api_auth.cpython-310.pyc index ec343e5e..60a35581 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/api_auth.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/api_auth.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/artifact.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/artifact.cpython-310.pyc index a2d7588b..fb900e39 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/artifact.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/artifact.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/batch_prediction_job.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/batch_prediction_job.cpython-310.pyc index 6d1fbd82..1fe7230f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/batch_prediction_job.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/batch_prediction_job.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/cached_content.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/cached_content.cpython-310.pyc index 3fd6f88a..676048d4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/cached_content.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/cached_content.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/completion_stats.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/completion_stats.cpython-310.pyc index 2b86f683..afd0c68e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/completion_stats.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/completion_stats.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/content.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/content.cpython-310.pyc index 46c5e27a..27168a28 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/content.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/content.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/context.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/context.cpython-310.pyc index 6b7e0c1a..7353b1fd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/context.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/context.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/custom_job.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/custom_job.cpython-310.pyc index 7cc5d148..43a1f003 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/custom_job.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/custom_job.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/data_item.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/data_item.cpython-310.pyc index 6f037cb2..bb451cae 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/data_item.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/data_item.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/data_labeling_job.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/data_labeling_job.cpython-310.pyc index dc80b31b..288f3bf8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/data_labeling_job.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/data_labeling_job.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/dataset.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/dataset.cpython-310.pyc index b64a30d9..2aa2495e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/dataset.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/dataset.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/dataset_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/dataset_service.cpython-310.pyc index 98a0ed4d..f25dd332 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/dataset_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/dataset_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/dataset_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/dataset_version.cpython-310.pyc index 6ad686d3..45642b34 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/dataset_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/dataset_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/deployed_index_ref.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/deployed_index_ref.cpython-310.pyc index 48b2663e..1f112ae1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/deployed_index_ref.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/deployed_index_ref.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/deployed_model_ref.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/deployed_model_ref.cpython-310.pyc index 1d9c0808..9f7238e6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/deployed_model_ref.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/deployed_model_ref.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/deployment_resource_pool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/deployment_resource_pool.cpython-310.pyc index 05733f1c..351ea3b9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/deployment_resource_pool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/deployment_resource_pool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/deployment_resource_pool_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/deployment_resource_pool_service.cpython-310.pyc index 2bf7da45..831d7fc8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/deployment_resource_pool_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/deployment_resource_pool_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/encryption_spec.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/encryption_spec.cpython-310.pyc index 94d44225..192a9a0e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/encryption_spec.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/encryption_spec.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/endpoint.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/endpoint.cpython-310.pyc index 13c6ae34..e1b2e342 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/endpoint.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/endpoint.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/endpoint_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/endpoint_service.cpython-310.pyc index 4629da64..bfc47755 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/endpoint_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/endpoint_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/entity_type.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/entity_type.cpython-310.pyc index 91b475fb..b166849f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/entity_type.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/entity_type.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/env_var.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/env_var.cpython-310.pyc index c733edea..f01fa8a8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/env_var.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/env_var.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/evaluated_annotation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/evaluated_annotation.cpython-310.pyc index 3f588438..ae805661 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/evaluated_annotation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/evaluated_annotation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/evaluation_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/evaluation_service.cpython-310.pyc index 2b95c7cd..0993e51e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/evaluation_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/evaluation_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/event.cpython-310.pyc index 25e7e27c..3b1af8c5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/event.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/event.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/example.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/example.cpython-310.pyc index 81fb40c2..cfba7625 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/example.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/example.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/example_store.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/example_store.cpython-310.pyc index 5d8dfad0..95a34579 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/example_store.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/example_store.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/example_store_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/example_store_service.cpython-310.pyc index c5157f39..b18ffc71 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/example_store_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/example_store_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/execution.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/execution.cpython-310.pyc index 9cb59368..c70af007 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/execution.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/execution.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/explanation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/explanation.cpython-310.pyc index d9b016e3..3c0a6189 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/explanation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/explanation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/explanation_metadata.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/explanation_metadata.cpython-310.pyc index fbe117a2..934800dd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/explanation_metadata.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/explanation_metadata.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/extension.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/extension.cpython-310.pyc index 5e4ef545..d3bbbe35 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/extension.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/extension.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/extension_execution_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/extension_execution_service.cpython-310.pyc index 7d66d579..9eccebe1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/extension_execution_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/extension_execution_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/extension_registry_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/extension_registry_service.cpython-310.pyc index 75a3a26c..56e16e50 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/extension_registry_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/extension_registry_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature.cpython-310.pyc index 1f974851..e0b568f8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_group.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_group.cpython-310.pyc index f27bc998..74d9d96c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_group.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_group.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_monitor.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_monitor.cpython-310.pyc index 1361a87e..48ef1bf7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_monitor.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_monitor.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_monitor_job.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_monitor_job.cpython-310.pyc index 389739fa..2ca67a24 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_monitor_job.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_monitor_job.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_monitoring_stats.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_monitoring_stats.cpython-310.pyc index 0ba64778..11e65fb3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_monitoring_stats.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_monitoring_stats.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_online_store.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_online_store.cpython-310.pyc index 34e0cf48..da67fefd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_online_store.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_online_store.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_online_store_admin_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_online_store_admin_service.cpython-310.pyc index 9a27570d..707cfe9c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_online_store_admin_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_online_store_admin_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_online_store_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_online_store_service.cpython-310.pyc index 5f297373..ca6fed62 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_online_store_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_online_store_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_registry_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_registry_service.cpython-310.pyc index 82fbbe73..f598b806 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_registry_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_registry_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_selector.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_selector.cpython-310.pyc index 56a4306b..dea1e770 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_selector.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_selector.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_view.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_view.cpython-310.pyc index 45e52a64..b0b8b6e9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_view.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_view.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_view_sync.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_view_sync.cpython-310.pyc index 36fb78a3..7039fba7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_view_sync.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_view_sync.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/featurestore.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/featurestore.cpython-310.pyc index 1e730068..d8314b92 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/featurestore.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/featurestore.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/featurestore_monitoring.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/featurestore_monitoring.cpython-310.pyc index b159c2b5..99db4115 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/featurestore_monitoring.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/featurestore_monitoring.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/featurestore_online_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/featurestore_online_service.cpython-310.pyc index f572dd9c..1160d006 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/featurestore_online_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/featurestore_online_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/featurestore_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/featurestore_service.cpython-310.pyc index ab068a6c..67076548 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/featurestore_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/featurestore_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/gen_ai_cache_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/gen_ai_cache_service.cpython-310.pyc index d28d9ed5..9e65af98 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/gen_ai_cache_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/gen_ai_cache_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/genai_tuning_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/genai_tuning_service.cpython-310.pyc index 904ebe0f..b6a07e6b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/genai_tuning_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/genai_tuning_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/hyperparameter_tuning_job.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/hyperparameter_tuning_job.cpython-310.pyc index a458bf7b..1ff01446 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/hyperparameter_tuning_job.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/hyperparameter_tuning_job.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/index.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/index.cpython-310.pyc index 7ca40b2a..48102b8c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/index.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/index.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/index_endpoint.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/index_endpoint.cpython-310.pyc index e3a2e3d3..967a6851 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/index_endpoint.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/index_endpoint.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/index_endpoint_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/index_endpoint_service.cpython-310.pyc index ad652639..cf264ab2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/index_endpoint_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/index_endpoint_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/index_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/index_service.cpython-310.pyc index 078cf0b1..8e032088 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/index_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/index_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/io.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/io.cpython-310.pyc index f0e36150..d8aba328 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/io.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/io.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/job_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/job_service.cpython-310.pyc index 140eebce..8f4d1445 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/job_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/job_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/job_state.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/job_state.cpython-310.pyc index 7576dacf..e5c0b1d3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/job_state.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/job_state.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/lineage_subgraph.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/lineage_subgraph.cpython-310.pyc index 8322c59e..d38869b9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/lineage_subgraph.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/lineage_subgraph.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/llm_utility_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/llm_utility_service.cpython-310.pyc index 02e58b70..1eeae0a8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/llm_utility_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/llm_utility_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/machine_resources.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/machine_resources.cpython-310.pyc index 8f996db7..9e2b3e57 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/machine_resources.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/machine_resources.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/manual_batch_tuning_parameters.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/manual_batch_tuning_parameters.cpython-310.pyc index 9b013784..1fe37d98 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/manual_batch_tuning_parameters.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/manual_batch_tuning_parameters.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/match_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/match_service.cpython-310.pyc index a5037504..1dca69f5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/match_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/match_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/metadata_schema.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/metadata_schema.cpython-310.pyc index 59662146..c3a2f73e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/metadata_schema.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/metadata_schema.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/metadata_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/metadata_service.cpython-310.pyc index 8a216947..741f0ef1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/metadata_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/metadata_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/metadata_store.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/metadata_store.cpython-310.pyc index b4afbcc5..78be1d6a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/metadata_store.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/metadata_store.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/migratable_resource.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/migratable_resource.cpython-310.pyc index 6f657e4b..571b93cb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/migratable_resource.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/migratable_resource.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/migration_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/migration_service.cpython-310.pyc index 4e64878a..60997cca 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/migration_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/migration_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model.cpython-310.pyc index 83623fce..e17ef1d6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_deployment_monitoring_job.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_deployment_monitoring_job.cpython-310.pyc index b83fe6de..fef59cf1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_deployment_monitoring_job.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_deployment_monitoring_job.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_evaluation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_evaluation.cpython-310.pyc index 0e7f830d..cc100280 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_evaluation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_evaluation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_evaluation_slice.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_evaluation_slice.cpython-310.pyc index fbc03751..b1550926 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_evaluation_slice.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_evaluation_slice.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_garden_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_garden_service.cpython-310.pyc index 60241df6..c47c6fb5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_garden_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_garden_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitor.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitor.cpython-310.pyc index b615fd02..4fcc01da 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitor.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitor.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring.cpython-310.pyc index 9e1ad341..6033f116 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_alert.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_alert.cpython-310.pyc index 3f6aeb7c..72d0833d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_alert.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_alert.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_job.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_job.cpython-310.pyc index 7860b31a..b1481a8a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_job.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_job.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_service.cpython-310.pyc index c7ca42bc..4d84d06a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_spec.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_spec.cpython-310.pyc index 61000e0f..b7b99df7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_spec.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_spec.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_stats.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_stats.cpython-310.pyc index 38fbe675..779b589b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_stats.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_stats.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_service.cpython-310.pyc index 43654d04..62738752 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/nas_job.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/nas_job.cpython-310.pyc index 1c12b48d..6e047ef0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/nas_job.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/nas_job.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/network_spec.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/network_spec.cpython-310.pyc index d396851e..36e52a83 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/network_spec.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/network_spec.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_euc_config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_euc_config.cpython-310.pyc index b46721ac..7909b2c3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_euc_config.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_euc_config.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_execution_job.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_execution_job.cpython-310.pyc index 414323bb..fbedc70a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_execution_job.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_execution_job.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_idle_shutdown_config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_idle_shutdown_config.cpython-310.pyc index 41f76e69..fc49aada 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_idle_shutdown_config.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_idle_shutdown_config.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_runtime.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_runtime.cpython-310.pyc index f3f10f31..4b1c04bb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_runtime.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_runtime.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_runtime_template_ref.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_runtime_template_ref.cpython-310.pyc index af4c8415..d3c33474 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_runtime_template_ref.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_runtime_template_ref.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_service.cpython-310.pyc index 11cc15b6..1bd7f54d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_software_config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_software_config.cpython-310.pyc index f06f78f2..d421d9d1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_software_config.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_software_config.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/openapi.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/openapi.cpython-310.pyc index 1e69d067..557f3b1a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/openapi.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/openapi.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/operation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/operation.cpython-310.pyc index 7d280629..2c0072c7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/operation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/operation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/persistent_resource.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/persistent_resource.cpython-310.pyc index e2a05b5f..f2d77017 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/persistent_resource.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/persistent_resource.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/persistent_resource_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/persistent_resource_service.cpython-310.pyc index 4d0518df..c517e0be 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/persistent_resource_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/persistent_resource_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/pipeline_failure_policy.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/pipeline_failure_policy.cpython-310.pyc index cd2061c3..960da441 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/pipeline_failure_policy.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/pipeline_failure_policy.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/pipeline_job.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/pipeline_job.cpython-310.pyc index 3a13ec6c..5fd994e6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/pipeline_job.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/pipeline_job.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/pipeline_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/pipeline_service.cpython-310.pyc index e04c02dd..2d8e8d48 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/pipeline_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/pipeline_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/pipeline_state.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/pipeline_state.cpython-310.pyc index 900136f9..c368ae48 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/pipeline_state.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/pipeline_state.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/prediction_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/prediction_service.cpython-310.pyc index e4f20aad..77fe4c71 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/prediction_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/prediction_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/publisher_model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/publisher_model.cpython-310.pyc index 86ac84e5..ed6613a3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/publisher_model.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/publisher_model.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/reasoning_engine.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/reasoning_engine.cpython-310.pyc index a425bead..658bbce9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/reasoning_engine.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/reasoning_engine.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/reasoning_engine_execution_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/reasoning_engine_execution_service.cpython-310.pyc index 265b0e8d..0cf231dd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/reasoning_engine_execution_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/reasoning_engine_execution_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/reasoning_engine_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/reasoning_engine_service.cpython-310.pyc index 3abea0a8..369bb22a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/reasoning_engine_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/reasoning_engine_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/reservation_affinity.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/reservation_affinity.cpython-310.pyc index 54044fab..7fc60ff6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/reservation_affinity.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/reservation_affinity.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/saved_query.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/saved_query.cpython-310.pyc index bb3c678e..c638fbcc 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/saved_query.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/saved_query.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/schedule.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/schedule.cpython-310.pyc index fa5ee035..699dd91a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/schedule.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/schedule.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/schedule_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/schedule_service.cpython-310.pyc index 72983602..de209517 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/schedule_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/schedule_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/service_networking.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/service_networking.cpython-310.pyc index eb0b3005..56d9fa57 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/service_networking.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/service_networking.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/session.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/session.cpython-310.pyc index cf0181ff..aee2ae26 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/session.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/session.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/session_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/session_service.cpython-310.pyc index bacaf808..346878c8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/session_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/session_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/specialist_pool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/specialist_pool.cpython-310.pyc index 4192a348..c572c707 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/specialist_pool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/specialist_pool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/specialist_pool_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/specialist_pool_service.cpython-310.pyc index 15e2bb6f..6b95c830 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/specialist_pool_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/specialist_pool_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/study.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/study.cpython-310.pyc index f7147552..705c2718 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/study.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/study.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard.cpython-310.pyc index 5bd7a325..3c9c220d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_data.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_data.cpython-310.pyc index 8f4239c1..d7487c02 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_data.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_data.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_experiment.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_experiment.cpython-310.pyc index c6d52af3..ff74b5f9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_experiment.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_experiment.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_run.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_run.cpython-310.pyc index 748d7ebf..9a8e5995 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_run.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_run.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_service.cpython-310.pyc index 97b224ea..383ca754 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_time_series.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_time_series.cpython-310.pyc index 0b6c168e..2e100096 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_time_series.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_time_series.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tool.cpython-310.pyc index 7c313f30..3818c627 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/training_pipeline.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/training_pipeline.cpython-310.pyc index 5982faf6..a6d9ca6e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/training_pipeline.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/training_pipeline.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tuning_job.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tuning_job.cpython-310.pyc index e8f8b5b2..ef1023e4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tuning_job.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tuning_job.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/types.cpython-310.pyc index 30ccd40b..b592d16c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/types.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/types.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/ui_pipeline_spec.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/ui_pipeline_spec.cpython-310.pyc index 02e6aa08..52fe4043 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/ui_pipeline_spec.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/ui_pipeline_spec.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/unmanaged_container_model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/unmanaged_container_model.cpython-310.pyc index c10c2bf2..7d6adb26 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/unmanaged_container_model.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/unmanaged_container_model.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/user_action_reference.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/user_action_reference.cpython-310.pyc index aaa89c74..c32d4080 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/user_action_reference.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/user_action_reference.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/value.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/value.cpython-310.pyc index 2c121c33..87af9883 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/value.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/value.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/vertex_rag_data.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/vertex_rag_data.cpython-310.pyc index 231176f8..3076f826 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/vertex_rag_data.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/vertex_rag_data.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/vertex_rag_data_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/vertex_rag_data_service.cpython-310.pyc index b04381d1..d183b392 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/vertex_rag_data_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/vertex_rag_data_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/vertex_rag_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/vertex_rag_service.cpython-310.pyc index 055a5319..f1a9fc8f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/vertex_rag_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/vertex_rag_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/vizier_service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/vizier_service.cpython-310.pyc index 03e00097..3cd0aa53 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/vizier_service.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/vizier_service.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 8897030b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/_helpers.cpython-310.pyc deleted file mode 100644 index c888e127..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/_helpers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/_http.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/_http.cpython-310.pyc deleted file mode 100644 index 874291e6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/_http.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/_job_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/_job_helpers.cpython-310.pyc deleted file mode 100644 index a825cc38..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/_job_helpers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/_pandas_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/_pandas_helpers.cpython-310.pyc deleted file mode 100644 index 7f5b4200..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/_pandas_helpers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/_pyarrow_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/_pyarrow_helpers.cpython-310.pyc deleted file mode 100644 index eed455fe..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/_pyarrow_helpers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/_tqdm_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/_tqdm_helpers.cpython-310.pyc deleted file mode 100644 index cd23e106..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/_tqdm_helpers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/_versions_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/_versions_helpers.cpython-310.pyc deleted file mode 100644 index 6d2a9e9d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/_versions_helpers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/client.cpython-310.pyc deleted file mode 100644 index c5b90339..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/dataset.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/dataset.cpython-310.pyc deleted file mode 100644 index 346927ad..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/dataset.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/encryption_configuration.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/encryption_configuration.cpython-310.pyc deleted file mode 100644 index a9ea1734..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/encryption_configuration.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/enums.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/enums.cpython-310.pyc deleted file mode 100644 index aa485b91..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/enums.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/exceptions.cpython-310.pyc deleted file mode 100644 index cd9ad734..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/exceptions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/external_config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/external_config.cpython-310.pyc deleted file mode 100644 index 32f701e6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/external_config.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/format_options.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/format_options.cpython-310.pyc deleted file mode 100644 index f37dc778..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/format_options.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/iam.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/iam.cpython-310.pyc deleted file mode 100644 index 3c053298..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/iam.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/model.cpython-310.pyc deleted file mode 100644 index 6c5e783b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/model.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/opentelemetry_tracing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/opentelemetry_tracing.cpython-310.pyc deleted file mode 100644 index b3d1eee9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/opentelemetry_tracing.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/query.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/query.cpython-310.pyc deleted file mode 100644 index 1e3f9e50..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/query.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/retry.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/retry.cpython-310.pyc deleted file mode 100644 index 0433f6d2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/retry.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/schema.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/schema.cpython-310.pyc deleted file mode 100644 index c65eeed1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/schema.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/standard_sql.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/standard_sql.cpython-310.pyc deleted file mode 100644 index d6cf7cb0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/standard_sql.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/table.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/table.cpython-310.pyc deleted file mode 100644 index d3b4dab4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/table.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/version.cpython-310.pyc deleted file mode 100644 index d5cd14ed..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/__pycache__/version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/dbapi/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/dbapi/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 63dc3ae2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/dbapi/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/dbapi/__pycache__/_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/dbapi/__pycache__/_helpers.cpython-310.pyc deleted file mode 100644 index 700180de..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/dbapi/__pycache__/_helpers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/dbapi/__pycache__/connection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/dbapi/__pycache__/connection.cpython-310.pyc deleted file mode 100644 index ae6d37d1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/dbapi/__pycache__/connection.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/dbapi/__pycache__/cursor.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/dbapi/__pycache__/cursor.cpython-310.pyc deleted file mode 100644 index 1cd85c8d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/dbapi/__pycache__/cursor.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/dbapi/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/dbapi/__pycache__/exceptions.cpython-310.pyc deleted file mode 100644 index 824a9d5c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/dbapi/__pycache__/exceptions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/dbapi/__pycache__/types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/dbapi/__pycache__/types.cpython-310.pyc deleted file mode 100644 index 502c4ebd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/dbapi/__pycache__/types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/job/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/job/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 464f1e91..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/job/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/job/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/job/__pycache__/base.cpython-310.pyc deleted file mode 100644 index 001536e9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/job/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/job/__pycache__/copy_.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/job/__pycache__/copy_.cpython-310.pyc deleted file mode 100644 index 1c6c115e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/job/__pycache__/copy_.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/job/__pycache__/extract.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/job/__pycache__/extract.cpython-310.pyc deleted file mode 100644 index cfb39975..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/job/__pycache__/extract.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/job/__pycache__/load.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/job/__pycache__/load.cpython-310.pyc deleted file mode 100644 index 063f64a6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/job/__pycache__/load.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/job/__pycache__/query.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/job/__pycache__/query.cpython-310.pyc deleted file mode 100644 index 9656c407..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/job/__pycache__/query.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/magics/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/magics/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index cefa9ada..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/magics/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/magics/__pycache__/magics.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/magics/__pycache__/magics.cpython-310.pyc deleted file mode 100644 index 2e6b606e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/magics/__pycache__/magics.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/magics/line_arg_parser/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/magics/line_arg_parser/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index c022583c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/magics/line_arg_parser/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/magics/line_arg_parser/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/magics/line_arg_parser/__pycache__/exceptions.cpython-310.pyc deleted file mode 100644 index facff1ad..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/magics/line_arg_parser/__pycache__/exceptions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/magics/line_arg_parser/__pycache__/lexer.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/magics/line_arg_parser/__pycache__/lexer.cpython-310.pyc deleted file mode 100644 index abe04bb1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/magics/line_arg_parser/__pycache__/lexer.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/magics/line_arg_parser/__pycache__/parser.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/magics/line_arg_parser/__pycache__/parser.cpython-310.pyc deleted file mode 100644 index 085352b9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/magics/line_arg_parser/__pycache__/parser.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/magics/line_arg_parser/__pycache__/visitors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/magics/line_arg_parser/__pycache__/visitors.cpython-310.pyc deleted file mode 100644 index 40e5cdf5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/magics/line_arg_parser/__pycache__/visitors.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/routine/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/routine/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 0fe466f4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/routine/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/routine/__pycache__/routine.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery/routine/__pycache__/routine.cpython-310.pyc deleted file mode 100644 index 707ab021..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery/routine/__pycache__/routine.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery_v2/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery_v2/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index be6dae71..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery_v2/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery_v2/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery_v2/types/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 0f967066..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery_v2/types/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery_v2/types/__pycache__/encryption_config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery_v2/types/__pycache__/encryption_config.cpython-310.pyc deleted file mode 100644 index 163c4aa2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery_v2/types/__pycache__/encryption_config.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery_v2/types/__pycache__/model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery_v2/types/__pycache__/model.cpython-310.pyc deleted file mode 100644 index 1aa9951b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery_v2/types/__pycache__/model.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery_v2/types/__pycache__/model_reference.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery_v2/types/__pycache__/model_reference.cpython-310.pyc deleted file mode 100644 index 12848b9f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery_v2/types/__pycache__/model_reference.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery_v2/types/__pycache__/standard_sql.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery_v2/types/__pycache__/standard_sql.cpython-310.pyc deleted file mode 100644 index 53bba049..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery_v2/types/__pycache__/standard_sql.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/bigquery_v2/types/__pycache__/table_reference.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/bigquery_v2/types/__pycache__/table_reference.cpython-310.pyc deleted file mode 100644 index 8878ab80..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/bigquery_v2/types/__pycache__/table_reference.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/client/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/client/__pycache__/__init__.cpython-310.pyc index ed4fc59b..4e336d7b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/client/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/client/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/environment_vars/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/environment_vars/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index b5c5fc12..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/environment_vars/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/exceptions/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/exceptions/__pycache__/__init__.cpython-310.pyc index bbf4dbae..557cde18 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/exceptions/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/exceptions/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/location/__pycache__/locations_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/location/__pycache__/locations_pb2.cpython-310.pyc index 084dfc4d..27b5584c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/location/__pycache__/locations_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/location/__pycache__/locations_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/obsolete/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/obsolete/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 588c1f4e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/obsolete/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/operation/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/operation/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index b0869b6d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/operation/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager/__pycache__/__init__.cpython-310.pyc index 8630ff81..454a24b1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager/__pycache__/gapic_version.cpython-310.pyc index 20b3ed98..9bf40e52 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager/__pycache__/gapic_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager/__pycache__/gapic_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/__pycache__/__init__.cpython-310.pyc index faeb4c23..15bd84b1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/__pycache__/gapic_version.cpython-310.pyc index 90f4cd77..17a7f830 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/__pycache__/gapic_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/__pycache__/gapic_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/__pycache__/__init__.cpython-310.pyc index e4dbf1e4..3c6f42f9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/__pycache__/__init__.cpython-310.pyc index 9089fe55..451b71a1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/__pycache__/async_client.cpython-310.pyc index b2914ef4..484bf2c8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/__pycache__/client.cpython-310.pyc index e396fe0f..a78284ef 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/__pycache__/pagers.cpython-310.pyc index e79a2e14..64205459 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/__init__.cpython-310.pyc index 8d545a45..7d8909a9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/base.cpython-310.pyc index 1aed12f9..da8278f9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/grpc.cpython-310.pyc index 1c7b8c54..6b9eb7b3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 18e0406e..5c76975c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/rest.cpython-310.pyc index ddd1810a..7339ce24 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/rest_base.cpython-310.pyc index dd86dc84..84739678 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/__pycache__/__init__.cpython-310.pyc index 3e426ff2..74d2abb3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/__pycache__/async_client.cpython-310.pyc index 5500766c..44304cd2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/__pycache__/client.cpython-310.pyc index 8eb35851..db53969b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/__pycache__/pagers.cpython-310.pyc index e83096e2..795706bb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/__init__.cpython-310.pyc index a1bb2c2e..8da6c2f0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/base.cpython-310.pyc index 65152811..a6721287 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/grpc.cpython-310.pyc index 92c2b797..3603be7a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/grpc_asyncio.cpython-310.pyc index be8df308..36da218e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/rest.cpython-310.pyc index f0e4033c..294367e6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/rest_base.cpython-310.pyc index 467420a3..3ee2eff7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/__pycache__/__init__.cpython-310.pyc index ffdf5a96..438be595 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/__pycache__/async_client.cpython-310.pyc index 7dbee6b4..5d56a26d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/__pycache__/client.cpython-310.pyc index ec98d4a8..6aa11fe3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/__pycache__/pagers.cpython-310.pyc index 9b472169..36036c99 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/__init__.cpython-310.pyc index 1195e9c8..74d1f51e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/base.cpython-310.pyc index 3c77961a..784386ed 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/grpc.cpython-310.pyc index 54ab46a9..61c254ac 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/grpc_asyncio.cpython-310.pyc index da6aedc6..697e4891 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/rest.cpython-310.pyc index be16deeb..dddfa69d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/rest_base.cpython-310.pyc index 5fe58df5..11578c24 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/__pycache__/__init__.cpython-310.pyc index cd3ef7d5..f7488403 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/__pycache__/async_client.cpython-310.pyc index 6c40b429..5f2555c3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/__pycache__/client.cpython-310.pyc index e50f9d1c..fe0b6cc1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/__pycache__/pagers.cpython-310.pyc index 18ff4a5f..783f913e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/__init__.cpython-310.pyc index c39ebccd..1e5df817 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/base.cpython-310.pyc index 9667b834..3a9fb0ac 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/grpc.cpython-310.pyc index 0576188b..035d7b14 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 455041c7..264495d7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/rest.cpython-310.pyc index 45a054f0..5ae880f5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/rest_base.cpython-310.pyc index e4d7bbab..287e97ab 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/__pycache__/__init__.cpython-310.pyc index 3a06c894..31e79179 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/__pycache__/async_client.cpython-310.pyc index ab1761d2..c84918b9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/__pycache__/client.cpython-310.pyc index 5a53e8d6..a16237bb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/__pycache__/pagers.cpython-310.pyc index 87e727fe..35200eae 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/__init__.cpython-310.pyc index b516a258..4874ba27 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/base.cpython-310.pyc index b0532ad7..ac3c40fd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/grpc.cpython-310.pyc index 865e9782..f0120a57 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 3c7346ec..6c2777c1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/rest.cpython-310.pyc index 0e2d48d7..5f6520d2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/rest_base.cpython-310.pyc index 7f6b3514..9765b4e9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/__pycache__/__init__.cpython-310.pyc index 2c506108..3acbf9fe 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/__pycache__/async_client.cpython-310.pyc index 6862c8a8..b526fb39 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/__pycache__/client.cpython-310.pyc index 91f52a8c..d0952e2c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/__pycache__/pagers.cpython-310.pyc index db687668..b079668f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/__init__.cpython-310.pyc index a239a590..7b1f6415 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/base.cpython-310.pyc index ee789149..e70d2e24 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/grpc.cpython-310.pyc index d6d19ab4..e21dc33e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 59db630a..47f6b369 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/rest.cpython-310.pyc index f18b7446..7a9247b7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/rest_base.cpython-310.pyc index ab45ed65..72a06f04 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/__pycache__/__init__.cpython-310.pyc index 31a8cac7..95ef8db1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/__pycache__/async_client.cpython-310.pyc index 9c5adc89..4f1fb550 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/__pycache__/async_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/__pycache__/async_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/__pycache__/client.cpython-310.pyc index d60dff98..1b7ef5c7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/__pycache__/pagers.cpython-310.pyc index e40d5fba..7a7c599b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/__init__.cpython-310.pyc index 40a6375f..ca099635 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/base.cpython-310.pyc index 50281972..a6ca04e9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/grpc.cpython-310.pyc index d1893e0f..daadc696 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/grpc_asyncio.cpython-310.pyc index 3355ff22..a269e169 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/grpc_asyncio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/grpc_asyncio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/rest.cpython-310.pyc index 010c27f9..21247b2b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/rest.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/rest.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/rest_base.cpython-310.pyc index 40b2a636..05387e30 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/rest_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/rest_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/__init__.cpython-310.pyc index 700fc976..5f154b8d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/folders.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/folders.cpython-310.pyc index ddc31f8d..c01dc52e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/folders.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/folders.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/organizations.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/organizations.cpython-310.pyc index 54f5555c..0fb84c53 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/organizations.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/organizations.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/projects.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/projects.cpython-310.pyc index 23b30803..fcefe3af 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/projects.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/projects.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/tag_bindings.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/tag_bindings.cpython-310.pyc index df96570a..944db649 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/tag_bindings.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/tag_bindings.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/tag_holds.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/tag_holds.cpython-310.pyc index bee02eee..309f0249 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/tag_holds.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/tag_holds.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/tag_keys.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/tag_keys.cpython-310.pyc index 1f09d6be..64f77b49 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/tag_keys.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/tag_keys.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/tag_values.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/tag_values.cpython-310.pyc index 4247178a..5c680b1c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/tag_values.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/tag_values.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index e1a45975..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager/__pycache__/gapic_version.cpython-310.pyc deleted file mode 100644 index d5d57344..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager/__pycache__/gapic_version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index a3a4fc40..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/__pycache__/gapic_version.cpython-310.pyc deleted file mode 100644 index 8da030aa..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/__pycache__/gapic_version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index b8e95bf0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index b8bbc46e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/__pycache__/async_client.cpython-310.pyc deleted file mode 100644 index d8417005..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/__pycache__/async_client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/__pycache__/client.cpython-310.pyc deleted file mode 100644 index 4ad35fb0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/__pycache__/client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/__pycache__/pagers.cpython-310.pyc deleted file mode 100644 index bdbe43bc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/__pycache__/pagers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/transports/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index f184b43c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/transports/__pycache__/base.cpython-310.pyc deleted file mode 100644 index 7efd9289..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/transports/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/transports/__pycache__/grpc.cpython-310.pyc deleted file mode 100644 index 591fbf85..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc deleted file mode 100644 index 93ba8a1d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/transports/__pycache__/rest.cpython-310.pyc deleted file mode 100644 index 1ef8b151..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/transports/__pycache__/rest_base.cpython-310.pyc deleted file mode 100644 index 380536e8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/services/secret_manager_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/types/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index c79e92ae..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/types/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/types/__pycache__/resources.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/types/__pycache__/resources.cpython-310.pyc deleted file mode 100644 index bf6034d1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/types/__pycache__/resources.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/types/__pycache__/service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/types/__pycache__/service.cpython-310.pyc deleted file mode 100644 index e921519c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1/types/__pycache__/service.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index f7ce9171..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/__pycache__/gapic_version.cpython-310.pyc deleted file mode 100644 index 7eb9e892..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/__pycache__/gapic_version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 35ae6c70..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index c3e73b78..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/__pycache__/async_client.cpython-310.pyc deleted file mode 100644 index 964686ae..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/__pycache__/async_client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/__pycache__/client.cpython-310.pyc deleted file mode 100644 index be0fda4e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/__pycache__/client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/__pycache__/pagers.cpython-310.pyc deleted file mode 100644 index 8822b4e6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/__pycache__/pagers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/transports/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 5a645915..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/transports/__pycache__/base.cpython-310.pyc deleted file mode 100644 index cf35b3ac..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/transports/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/transports/__pycache__/grpc.cpython-310.pyc deleted file mode 100644 index 2be313bc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc deleted file mode 100644 index 776049f6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/transports/__pycache__/rest.cpython-310.pyc deleted file mode 100644 index 79441ddb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/transports/__pycache__/rest_base.cpython-310.pyc deleted file mode 100644 index 0c8d531e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/services/secret_manager_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/types/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 0b5e011c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/types/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/types/__pycache__/resources.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/types/__pycache__/resources.cpython-310.pyc deleted file mode 100644 index d6676f97..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/types/__pycache__/resources.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/types/__pycache__/service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/types/__pycache__/service.cpython-310.pyc deleted file mode 100644 index dee33310..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta1/types/__pycache__/service.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index fe32655a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/__pycache__/gapic_version.cpython-310.pyc deleted file mode 100644 index 969f2b55..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/__pycache__/gapic_version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index dcd7c441..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 14a84e1a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/__pycache__/async_client.cpython-310.pyc deleted file mode 100644 index 81282150..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/__pycache__/async_client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/__pycache__/client.cpython-310.pyc deleted file mode 100644 index 600cd462..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/__pycache__/client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/__pycache__/pagers.cpython-310.pyc deleted file mode 100644 index f487f49e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/__pycache__/pagers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/transports/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 233d633f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/transports/__pycache__/base.cpython-310.pyc deleted file mode 100644 index 811dc9d7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/transports/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/transports/__pycache__/grpc.cpython-310.pyc deleted file mode 100644 index e772fed7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc deleted file mode 100644 index 578b6597..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/transports/__pycache__/rest.cpython-310.pyc deleted file mode 100644 index 2c500f86..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/transports/__pycache__/rest_base.cpython-310.pyc deleted file mode 100644 index 6382a133..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/services/secret_manager_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/types/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index ed212596..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/types/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/types/__pycache__/resources.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/types/__pycache__/resources.cpython-310.pyc deleted file mode 100644 index ab9730ec..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/types/__pycache__/resources.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/types/__pycache__/service.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/types/__pycache__/service.cpython-310.pyc deleted file mode 100644 index 57b49d16..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/secretmanager_v1beta2/types/__pycache__/service.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index e94f07e7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech/__pycache__/gapic_version.cpython-310.pyc deleted file mode 100644 index 3febd514..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech/__pycache__/gapic_version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 249a1b33..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/__pycache__/gapic_version.cpython-310.pyc deleted file mode 100644 index 5b3d031e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/__pycache__/gapic_version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/__pycache__/helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/__pycache__/helpers.cpython-310.pyc deleted file mode 100644 index 23d614b7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/__pycache__/helpers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index afb5f57e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 3d970ac7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/__pycache__/async_client.cpython-310.pyc deleted file mode 100644 index a769fe0d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/__pycache__/async_client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/__pycache__/client.cpython-310.pyc deleted file mode 100644 index d11527b2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/__pycache__/client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/__pycache__/pagers.cpython-310.pyc deleted file mode 100644 index 655c8740..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/__pycache__/pagers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/transports/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index cb45a19d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/transports/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/transports/__pycache__/base.cpython-310.pyc deleted file mode 100644 index 283932a7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/transports/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/transports/__pycache__/grpc.cpython-310.pyc deleted file mode 100644 index afad783f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/transports/__pycache__/grpc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/transports/__pycache__/grpc_asyncio.cpython-310.pyc deleted file mode 100644 index c3ae2213..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/transports/__pycache__/rest.cpython-310.pyc deleted file mode 100644 index 11a22c0e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/transports/__pycache__/rest.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/transports/__pycache__/rest_base.cpython-310.pyc deleted file mode 100644 index 669c2efb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/adaptation/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index ee475578..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/__pycache__/async_client.cpython-310.pyc deleted file mode 100644 index 50c1c719..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/__pycache__/async_client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/__pycache__/client.cpython-310.pyc deleted file mode 100644 index f3a19371..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/__pycache__/client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/transports/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 62ab72bc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/transports/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/transports/__pycache__/base.cpython-310.pyc deleted file mode 100644 index f3c5afae..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/transports/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/transports/__pycache__/grpc.cpython-310.pyc deleted file mode 100644 index 570591ae..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/transports/__pycache__/grpc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/transports/__pycache__/grpc_asyncio.cpython-310.pyc deleted file mode 100644 index 5e98becf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/transports/__pycache__/rest.cpython-310.pyc deleted file mode 100644 index f567b23e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/transports/__pycache__/rest.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/transports/__pycache__/rest_base.cpython-310.pyc deleted file mode 100644 index 0d298068..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/services/speech/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/types/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 37919cee..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/types/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/types/__pycache__/cloud_speech.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/types/__pycache__/cloud_speech.cpython-310.pyc deleted file mode 100644 index 9b4c7437..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/types/__pycache__/cloud_speech.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/types/__pycache__/cloud_speech_adaptation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/types/__pycache__/cloud_speech_adaptation.cpython-310.pyc deleted file mode 100644 index 6a98b4d5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/types/__pycache__/cloud_speech_adaptation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/types/__pycache__/resource.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/types/__pycache__/resource.cpython-310.pyc deleted file mode 100644 index f3ecd3a0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1/types/__pycache__/resource.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 6bfd5709..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/__pycache__/gapic_version.cpython-310.pyc deleted file mode 100644 index a58395bc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/__pycache__/gapic_version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index c934853e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index ba1d3e32..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/__pycache__/async_client.cpython-310.pyc deleted file mode 100644 index 4eadba57..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/__pycache__/async_client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/__pycache__/client.cpython-310.pyc deleted file mode 100644 index e3324a98..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/__pycache__/client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/__pycache__/pagers.cpython-310.pyc deleted file mode 100644 index ffed63b1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/__pycache__/pagers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/transports/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index b4eb403b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/transports/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/transports/__pycache__/base.cpython-310.pyc deleted file mode 100644 index 1de4ac10..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/transports/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/transports/__pycache__/grpc.cpython-310.pyc deleted file mode 100644 index 39ccb842..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/transports/__pycache__/grpc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/transports/__pycache__/grpc_asyncio.cpython-310.pyc deleted file mode 100644 index 3d1a535f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/transports/__pycache__/rest.cpython-310.pyc deleted file mode 100644 index 5b727c6c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/transports/__pycache__/rest.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/transports/__pycache__/rest_base.cpython-310.pyc deleted file mode 100644 index e862d015..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/adaptation/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 7b39b32d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/__pycache__/async_client.cpython-310.pyc deleted file mode 100644 index 53b20365..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/__pycache__/async_client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/__pycache__/client.cpython-310.pyc deleted file mode 100644 index 0f4f475b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/__pycache__/client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/transports/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 81246579..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/transports/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/transports/__pycache__/base.cpython-310.pyc deleted file mode 100644 index f713d889..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/transports/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/transports/__pycache__/grpc.cpython-310.pyc deleted file mode 100644 index ed1193b8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/transports/__pycache__/grpc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/transports/__pycache__/grpc_asyncio.cpython-310.pyc deleted file mode 100644 index 2ab6484a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/transports/__pycache__/rest.cpython-310.pyc deleted file mode 100644 index df51c500..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/transports/__pycache__/rest.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/transports/__pycache__/rest_base.cpython-310.pyc deleted file mode 100644 index 14c5b335..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/services/speech/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/types/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 1c135586..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/types/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/types/__pycache__/cloud_speech.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/types/__pycache__/cloud_speech.cpython-310.pyc deleted file mode 100644 index e8b603e6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/types/__pycache__/cloud_speech.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/types/__pycache__/cloud_speech_adaptation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/types/__pycache__/cloud_speech_adaptation.cpython-310.pyc deleted file mode 100644 index f35490e7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/types/__pycache__/cloud_speech_adaptation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/types/__pycache__/resource.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/types/__pycache__/resource.cpython-310.pyc deleted file mode 100644 index 5e5626f1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v1p1beta1/types/__pycache__/resource.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 62b0673f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/__pycache__/gapic_version.cpython-310.pyc deleted file mode 100644 index 75d7a7cc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/__pycache__/gapic_version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index f8bd07f0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 9ff01e14..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/__pycache__/async_client.cpython-310.pyc deleted file mode 100644 index 1a7dc05d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/__pycache__/async_client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/__pycache__/client.cpython-310.pyc deleted file mode 100644 index 91c2a206..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/__pycache__/client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/__pycache__/pagers.cpython-310.pyc deleted file mode 100644 index 80a0b485..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/__pycache__/pagers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/transports/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index e96f79fc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/transports/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/transports/__pycache__/base.cpython-310.pyc deleted file mode 100644 index 60136f37..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/transports/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/transports/__pycache__/grpc.cpython-310.pyc deleted file mode 100644 index ef1c05e3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/transports/__pycache__/grpc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/transports/__pycache__/grpc_asyncio.cpython-310.pyc deleted file mode 100644 index 787e7d58..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/transports/__pycache__/rest.cpython-310.pyc deleted file mode 100644 index 6ac8a48a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/transports/__pycache__/rest.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/transports/__pycache__/rest_base.cpython-310.pyc deleted file mode 100644 index 4c945f8b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/services/speech/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/types/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 48b9e3b2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/types/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/types/__pycache__/cloud_speech.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/types/__pycache__/cloud_speech.cpython-310.pyc deleted file mode 100644 index 48dca001..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/types/__pycache__/cloud_speech.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/types/__pycache__/locations_metadata.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/types/__pycache__/locations_metadata.cpython-310.pyc deleted file mode 100644 index 816adc45..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/speech_v2/types/__pycache__/locations_metadata.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/__init__.cpython-310.pyc index 25f2ccad..5822b661 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/_helpers.cpython-310.pyc index f9fa91e3..975ec6de 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/_helpers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/_helpers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/_http.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/_http.cpython-310.pyc index 55176ab4..2ad9ea76 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/_http.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/_http.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/_opentelemetry_tracing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/_opentelemetry_tracing.cpython-310.pyc index 43920fca..86299cdb 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/_opentelemetry_tracing.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/_opentelemetry_tracing.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/_signing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/_signing.cpython-310.pyc index 4522b675..abced557 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/_signing.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/_signing.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/acl.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/acl.cpython-310.pyc index 87e8007d..d04da52c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/acl.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/acl.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/batch.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/batch.cpython-310.pyc index d846b0a1..dc70f166 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/batch.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/batch.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/blob.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/blob.cpython-310.pyc index 8cb530ae..b7354392 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/blob.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/blob.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/bucket.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/bucket.cpython-310.pyc index ceb239f6..275ce006 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/bucket.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/bucket.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/client.cpython-310.pyc index 70e7d01c..509e2f46 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/constants.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/constants.cpython-310.pyc index bcc25298..333e2dc3 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/constants.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/constants.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/fileio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/fileio.cpython-310.pyc index 64fb1819..ffdf9ac2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/fileio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/fileio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/hmac_key.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/hmac_key.cpython-310.pyc index 9278a0b3..fe5dd438 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/hmac_key.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/hmac_key.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/iam.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/iam.cpython-310.pyc deleted file mode 100644 index 28e348ad..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/iam.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/notification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/notification.cpython-310.pyc index 985fb128..bc8b1883 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/notification.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/notification.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/retry.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/retry.cpython-310.pyc index 6ab6e7fd..f88a6ce9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/retry.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/retry.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/transfer_manager.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/transfer_manager.cpython-310.pyc deleted file mode 100644 index 47c7a5ef..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/transfer_manager.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/version.cpython-310.pyc index 0f899973..07719a8e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index bd4e8014..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace/__pycache__/gapic_version.cpython-310.pyc deleted file mode 100644 index 54f2f6f1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace/__pycache__/gapic_version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 7047cfeb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/__pycache__/gapic_version.cpython-310.pyc deleted file mode 100644 index eb04fc58..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/__pycache__/gapic_version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 721956ba..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index cfe36335..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/__pycache__/async_client.cpython-310.pyc deleted file mode 100644 index 30f82e66..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/__pycache__/async_client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/__pycache__/client.cpython-310.pyc deleted file mode 100644 index 89a52f75..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/__pycache__/client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/__pycache__/pagers.cpython-310.pyc deleted file mode 100644 index 3b48a016..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/__pycache__/pagers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/transports/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index a27f98ec..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/transports/__pycache__/base.cpython-310.pyc deleted file mode 100644 index 3f9bf9f7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/transports/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/transports/__pycache__/grpc.cpython-310.pyc deleted file mode 100644 index cc0fc149..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc deleted file mode 100644 index 6eb7bc12..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/transports/__pycache__/rest.cpython-310.pyc deleted file mode 100644 index 2ee0b6af..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/transports/__pycache__/rest_base.cpython-310.pyc deleted file mode 100644 index 68d60760..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/services/trace_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/types/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 6c5e8609..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/types/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/types/__pycache__/trace.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/types/__pycache__/trace.cpython-310.pyc deleted file mode 100644 index 46a32d67..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v1/types/__pycache__/trace.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 9d70e118..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/__pycache__/gapic_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/__pycache__/gapic_version.cpython-310.pyc deleted file mode 100644 index 7385e46b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/__pycache__/gapic_version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index e80943ff..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index ae19e3cf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/__pycache__/async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/__pycache__/async_client.cpython-310.pyc deleted file mode 100644 index 070f1a77..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/__pycache__/async_client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/__pycache__/client.cpython-310.pyc deleted file mode 100644 index 3ddf2233..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/__pycache__/client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/transports/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index fcb6c10d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/transports/__pycache__/base.cpython-310.pyc deleted file mode 100644 index 25317340..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/transports/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/transports/__pycache__/grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/transports/__pycache__/grpc.cpython-310.pyc deleted file mode 100644 index 00ffa812..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc deleted file mode 100644 index 425c4694..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/transports/__pycache__/rest.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/transports/__pycache__/rest.cpython-310.pyc deleted file mode 100644 index 8a4d9111..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/transports/__pycache__/rest_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/transports/__pycache__/rest_base.cpython-310.pyc deleted file mode 100644 index 8a52f2c2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/services/trace_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/types/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 9de808c0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/types/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/types/__pycache__/trace.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/types/__pycache__/trace.cpython-310.pyc deleted file mode 100644 index 8d58ff45..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/types/__pycache__/trace.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/types/__pycache__/tracing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/types/__pycache__/tracing.cpython-310.pyc deleted file mode 100644 index 8b8498bb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/trace_v2/types/__pycache__/tracing.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/gapic/metadata/__pycache__/gapic_metadata_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/gapic/metadata/__pycache__/gapic_metadata_pb2.cpython-310.pyc deleted file mode 100644 index 2807d481..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/gapic/metadata/__pycache__/gapic_metadata_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/__init__.cpython-310.pyc index 06894889..7f9f16b1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_api_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_api_client.cpython-310.pyc index b8840272..9ec4329a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_api_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_api_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_api_module.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_api_module.cpython-310.pyc index ec39b437..6d23a766 100644 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_api_module.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_api_module.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_automatic_function_calling_util.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_automatic_function_calling_util.cpython-310.pyc deleted file mode 100644 index d8a28673..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_automatic_function_calling_util.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_common.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_common.cpython-310.pyc index 339c640c..fb1fe903 100644 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_common.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_common.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_extra_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_extra_utils.cpython-310.pyc index 3bc52945..37db227e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_extra_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_extra_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_live_converters.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_live_converters.cpython-310.pyc index e2769aa8..c3718544 100644 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_live_converters.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_live_converters.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_replay_api_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_replay_api_client.cpython-310.pyc index 495cc38d..7a9870b4 100644 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_replay_api_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_replay_api_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_test_api_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_test_api_client.cpython-310.pyc deleted file mode 100644 index 72b28d9c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_test_api_client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_transformers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_transformers.cpython-310.pyc index da1156b4..0cfefac1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_transformers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_transformers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/batches.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/batches.cpython-310.pyc index e54ee296..475d0393 100644 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/batches.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/batches.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/caches.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/caches.cpython-310.pyc index 474e8180..7cdbb07b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/caches.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/caches.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/chats.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/chats.cpython-310.pyc index cf5efe39..49f881a2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/chats.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/chats.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/client.cpython-310.pyc index bc46f420..9217ef5d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/errors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/errors.cpython-310.pyc index bcc1d5c9..a16be951 100644 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/errors.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/errors.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/files.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/files.cpython-310.pyc index f21f3b26..703df28b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/files.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/files.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/live.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/live.cpython-310.pyc index 9a8e41c0..4c5ce33e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/live.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/live.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/models.cpython-310.pyc index b2446a19..4119efc0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/models.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/models.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/operations.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/operations.cpython-310.pyc index ad0d7271..3063d757 100644 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/operations.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/operations.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/pagers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/pagers.cpython-310.pyc index 14ef951c..2a4e7824 100644 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/pagers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/pagers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/tunings.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/tunings.cpython-310.pyc index 74862613..d2d5bd9a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/tunings.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/tunings.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/types.cpython-310.pyc index e29114b1..e7667ed2 100644 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/types.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/types.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/version.cpython-310.pyc index 78d99008..a5098be0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/genai/__pycache__/version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/__init__.cpython-310.pyc index ca5e3ed1..0eb4d910 100644 Binary files a/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/iam_policy_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/iam_policy_pb2.cpython-310.pyc index fc775446..1ea8a102 100644 Binary files a/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/iam_policy_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/iam_policy_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/iam_policy_pb2_grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/iam_policy_pb2_grpc.cpython-310.pyc deleted file mode 100644 index 33e4bd20..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/iam_policy_pb2_grpc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/options_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/options_pb2.cpython-310.pyc index 1545e345..254e0863 100644 Binary files a/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/options_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/options_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/options_pb2_grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/options_pb2_grpc.cpython-310.pyc deleted file mode 100644 index f9d80bd6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/options_pb2_grpc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/policy_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/policy_pb2.cpython-310.pyc index c786904d..c43661ab 100644 Binary files a/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/policy_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/policy_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/policy_pb2_grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/policy_pb2_grpc.cpython-310.pyc deleted file mode 100644 index 4816b381..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/policy_pb2_grpc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/resource_policy_member_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/resource_policy_member_pb2.cpython-310.pyc deleted file mode 100644 index d714178b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/resource_policy_member_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/iam/v1/logging/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/iam/v1/logging/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index a6b98bee..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/iam/v1/logging/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/iam/v1/logging/__pycache__/audit_data_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/iam/v1/logging/__pycache__/audit_data_pb2.cpython-310.pyc deleted file mode 100644 index 68f8ab0f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/iam/v1/logging/__pycache__/audit_data_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/logging/type/__pycache__/http_request_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/logging/type/__pycache__/http_request_pb2.cpython-310.pyc deleted file mode 100644 index 80270897..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/logging/type/__pycache__/http_request_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/logging/type/__pycache__/log_severity_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/logging/type/__pycache__/log_severity_pb2.cpython-310.pyc deleted file mode 100644 index efc41419..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/logging/type/__pycache__/log_severity_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_grpc.cpython-310.pyc deleted file mode 100644 index 446c4703..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_grpc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_grpc_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_grpc_pb2.cpython-310.pyc index 7afb6ce7..8f8f8599 100644 Binary files a/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_grpc_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_grpc_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_pb2.cpython-310.pyc index 47faae1e..672f83d8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_pb2_grpc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_pb2_grpc.cpython-310.pyc index 539dfe4a..36bbab9b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_pb2_grpc.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_pb2_grpc.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_proto.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_proto.cpython-310.pyc deleted file mode 100644 index 830a218e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_proto.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_proto_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_proto_pb2.cpython-310.pyc index addda512..b62d04e9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_proto_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_proto_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/__init__.cpython-310.pyc index a926eedb..9c251a13 100644 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/_client.cpython-310.pyc index 5a43dd8a..82790811 100644 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/_client_async.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/_client_async.cpython-310.pyc deleted file mode 100644 index 7c1a6835..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/_client_async.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/_credentials_async.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/_credentials_async.cpython-310.pyc deleted file mode 100644 index 93cbe935..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/_credentials_async.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/_id_token_async.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/_id_token_async.cpython-310.pyc deleted file mode 100644 index 02cdb523..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/_id_token_async.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/_reauth_async.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/_reauth_async.cpython-310.pyc deleted file mode 100644 index 8b9ccf07..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/_reauth_async.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/_service_account_async.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/_service_account_async.cpython-310.pyc deleted file mode 100644 index ccc173da..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/_service_account_async.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/challenges.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/challenges.cpython-310.pyc index bb87f1f7..bb62d451 100644 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/challenges.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/challenges.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/credentials.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/credentials.cpython-310.pyc index 11f8fed3..482c6fc1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/credentials.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/credentials.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/gdch_credentials.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/gdch_credentials.cpython-310.pyc deleted file mode 100644 index 082ea440..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/gdch_credentials.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/id_token.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/id_token.cpython-310.pyc deleted file mode 100644 index 090ff9b4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/id_token.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/reauth.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/reauth.cpython-310.pyc index 095635d1..9636f84d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/reauth.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/reauth.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/service_account.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/service_account.cpython-310.pyc index 13cd649e..c2a1b5cd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/service_account.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/service_account.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/sts.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/sts.cpython-310.pyc deleted file mode 100644 index 90379552..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/sts.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/utils.cpython-310.pyc deleted file mode 100644 index f42a6aa5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/webauthn_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/webauthn_handler.cpython-310.pyc index 36fd2bec..3145d83a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/webauthn_handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/webauthn_handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/webauthn_handler_factory.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/webauthn_handler_factory.cpython-310.pyc index 2cf70989..7d040226 100644 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/webauthn_handler_factory.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/webauthn_handler_factory.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/webauthn_types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/webauthn_types.cpython-310.pyc index 1f064953..a974f8c5 100644 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/webauthn_types.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/webauthn_types.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__init__.py b/.venv/lib/python3.10/site-packages/google/protobuf/__init__.py old mode 100755 new mode 100644 index 6f52a5f9..8998f3d6 --- a/.venv/lib/python3.10/site-packages/google/protobuf/__init__.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/__init__.py @@ -7,4 +7,4 @@ # Copyright 2007 Google Inc. All Rights Reserved. -__version__ = '6.30.2' +__version__ = '5.29.4' diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/__init__.cpython-310.pyc index b7b281e2..75bbdc2a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/any.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/any.cpython-310.pyc deleted file mode 100644 index 7087e4d7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/any.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/any_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/any_pb2.cpython-310.pyc index 3ee2344e..852f0331 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/any_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/any_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/api_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/api_pb2.cpython-310.pyc deleted file mode 100644 index 61754f99..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/api_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/descriptor.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/descriptor.cpython-310.pyc index 848df898..045c0c5b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/descriptor.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/descriptor.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/descriptor_database.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/descriptor_database.cpython-310.pyc index 6da14402..387ab732 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/descriptor_database.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/descriptor_database.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/descriptor_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/descriptor_pb2.cpython-310.pyc index e0eb974f..36928da1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/descriptor_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/descriptor_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/descriptor_pool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/descriptor_pool.cpython-310.pyc index 612ef74f..7bc954c8 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/descriptor_pool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/descriptor_pool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/duration.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/duration.cpython-310.pyc deleted file mode 100644 index ea5d09be..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/duration.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/duration_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/duration_pb2.cpython-310.pyc index 6841beef..01a7241b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/duration_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/duration_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/empty_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/empty_pb2.cpython-310.pyc index 4d375d42..2870b5ec 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/empty_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/empty_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/field_mask_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/field_mask_pb2.cpython-310.pyc index 9821263a..6e2cdafe 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/field_mask_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/field_mask_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/json_format.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/json_format.cpython-310.pyc index e5375e9c..cff263b0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/json_format.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/json_format.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/message.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/message.cpython-310.pyc index 88a0421d..2471c525 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/message.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/message.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/message_factory.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/message_factory.cpython-310.pyc index bafc37a0..0fad649b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/message_factory.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/message_factory.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/proto.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/proto.cpython-310.pyc deleted file mode 100644 index 6984f5c0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/proto.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/proto_builder.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/proto_builder.cpython-310.pyc deleted file mode 100644 index eab8e622..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/proto_builder.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/proto_json.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/proto_json.cpython-310.pyc deleted file mode 100644 index e7e619d5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/proto_json.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/proto_text.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/proto_text.cpython-310.pyc deleted file mode 100644 index e2aca97e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/proto_text.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/reflection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/reflection.cpython-310.pyc index 0c7c2150..1e96641e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/reflection.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/reflection.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/runtime_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/runtime_version.cpython-310.pyc index 3244f167..4de27be1 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/runtime_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/runtime_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/service_reflection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/service_reflection.cpython-310.pyc deleted file mode 100644 index 3b4b05c3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/service_reflection.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/source_context_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/source_context_pb2.cpython-310.pyc deleted file mode 100644 index 313de256..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/source_context_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/struct_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/struct_pb2.cpython-310.pyc index d65378aa..4d6c6688 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/struct_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/struct_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/symbol_database.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/symbol_database.cpython-310.pyc index c5dea5bf..3da18e82 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/symbol_database.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/symbol_database.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/text_encoding.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/text_encoding.cpython-310.pyc index 7ccd7acd..faa70eff 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/text_encoding.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/text_encoding.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/text_format.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/text_format.cpython-310.pyc index 8e4b5378..595203ac 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/text_format.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/text_format.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/timestamp.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/timestamp.cpython-310.pyc deleted file mode 100644 index 7c5618bd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/timestamp.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/timestamp_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/timestamp_pb2.cpython-310.pyc index e21be79b..0e2121f9 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/timestamp_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/timestamp_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/type_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/type_pb2.cpython-310.pyc deleted file mode 100644 index 032bb097..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/type_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/unknown_fields.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/unknown_fields.cpython-310.pyc index 69e7eb00..97ad438c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/unknown_fields.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/unknown_fields.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/wrappers_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/wrappers_pb2.cpython-310.pyc index e8e76e4c..5b26fc72 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/wrappers_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/wrappers_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/any.py b/.venv/lib/python3.10/site-packages/google/protobuf/any.py old mode 100755 new mode 100644 diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/any_pb2.py b/.venv/lib/python3.10/site-packages/google/protobuf/any_pb2.py old mode 100755 new mode 100644 index c2c2dcdf..dfecd634 --- a/.venv/lib/python3.10/site-packages/google/protobuf/any_pb2.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/any_pb2.py @@ -2,7 +2,7 @@ # Generated by the protocol buffer compiler. DO NOT EDIT! # NO CHECKED-IN PROTOBUF GENCODE # source: google/protobuf/any.proto -# Protobuf Python Version: 6.30.2 +# Protobuf Python Version: 5.29.4 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool @@ -11,9 +11,9 @@ from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder _runtime_version.ValidateProtobufRuntimeVersion( _runtime_version.Domain.PUBLIC, - 6, - 30, - 2, + 5, + 29, + 4, '', 'google/protobuf/any.proto' ) diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/api_pb2.py b/.venv/lib/python3.10/site-packages/google/protobuf/api_pb2.py old mode 100755 new mode 100644 index 0a342908..c4cc5b9e --- a/.venv/lib/python3.10/site-packages/google/protobuf/api_pb2.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/api_pb2.py @@ -2,7 +2,7 @@ # Generated by the protocol buffer compiler. DO NOT EDIT! # NO CHECKED-IN PROTOBUF GENCODE # source: google/protobuf/api.proto -# Protobuf Python Version: 6.30.2 +# Protobuf Python Version: 5.29.4 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool @@ -11,9 +11,9 @@ from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder _runtime_version.ValidateProtobufRuntimeVersion( _runtime_version.Domain.PUBLIC, - 6, - 30, - 2, + 5, + 29, + 4, '', 'google/protobuf/api.proto' ) diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/compiler/__init__.py b/.venv/lib/python3.10/site-packages/google/protobuf/compiler/__init__.py old mode 100755 new mode 100644 diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/compiler/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/compiler/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index a229a0de..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/compiler/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/compiler/__pycache__/plugin_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/compiler/__pycache__/plugin_pb2.cpython-310.pyc deleted file mode 100644 index ff13e83a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/compiler/__pycache__/plugin_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/compiler/plugin_pb2.py b/.venv/lib/python3.10/site-packages/google/protobuf/compiler/plugin_pb2.py old mode 100755 new mode 100644 index df572fd0..2a4ee4ee --- a/.venv/lib/python3.10/site-packages/google/protobuf/compiler/plugin_pb2.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/compiler/plugin_pb2.py @@ -2,7 +2,7 @@ # Generated by the protocol buffer compiler. DO NOT EDIT! # NO CHECKED-IN PROTOBUF GENCODE # source: google/protobuf/compiler/plugin.proto -# Protobuf Python Version: 6.30.2 +# Protobuf Python Version: 5.29.4 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool @@ -11,9 +11,9 @@ from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder _runtime_version.ValidateProtobufRuntimeVersion( _runtime_version.Domain.PUBLIC, - 6, - 30, - 2, + 5, + 29, + 4, '', 'google/protobuf/compiler/plugin.proto' ) diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/descriptor.py b/.venv/lib/python3.10/site-packages/google/protobuf/descriptor.py old mode 100755 new mode 100644 diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/descriptor_database.py b/.venv/lib/python3.10/site-packages/google/protobuf/descriptor_database.py old mode 100755 new mode 100644 index eeb85993..46a893e3 --- a/.venv/lib/python3.10/site-packages/google/protobuf/descriptor_database.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/descriptor_database.py @@ -52,24 +52,14 @@ class DescriptorDatabase(object): for name in _ExtractSymbols(message, package): self._AddSymbol(name, file_desc_proto) for enum in file_desc_proto.enum_type: - self._AddSymbol( - ('.'.join((package, enum.name)) if package else enum.name), - file_desc_proto, - ) + self._AddSymbol(('.'.join((package, enum.name))), file_desc_proto) for enum_value in enum.value: self._file_desc_protos_by_symbol[ - '.'.join((package, enum_value.name)) if package else enum_value.name - ] = file_desc_proto + '.'.join((package, enum_value.name))] = file_desc_proto for extension in file_desc_proto.extension: - self._AddSymbol( - ('.'.join((package, extension.name)) if package else extension.name), - file_desc_proto, - ) + self._AddSymbol(('.'.join((package, extension.name))), file_desc_proto) for service in file_desc_proto.service: - self._AddSymbol( - ('.'.join((package, service.name)) if package else service.name), - file_desc_proto, - ) + self._AddSymbol(('.'.join((package, service.name))), file_desc_proto) def FindFileByName(self, name): """Finds the file descriptor proto by file name. @@ -112,14 +102,6 @@ class DescriptorDatabase(object): Raises: KeyError if no file contains the specified symbol. """ - if symbol.count('.') == 1 and symbol[0] == '.': - symbol = symbol.lstrip('.') - warnings.warn( - 'Please remove the leading "." when ' - 'FindFileContainingSymbol, this will turn to error ' - 'in 2026 Jan.', - RuntimeWarning, - ) try: return self._file_desc_protos_by_symbol[symbol] except KeyError: diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/descriptor_pb2.py b/.venv/lib/python3.10/site-packages/google/protobuf/descriptor_pb2.py old mode 100755 new mode 100644 index 11fc3396..e9a6ce25 --- a/.venv/lib/python3.10/site-packages/google/protobuf/descriptor_pb2.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/descriptor_pb2.py @@ -2,7 +2,7 @@ # Generated by the protocol buffer compiler. DO NOT EDIT! # NO CHECKED-IN PROTOBUF GENCODE # source: google/protobuf/descriptor.proto -# Protobuf Python Version: 6.30.2 +# Protobuf Python Version: 5.29.4 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool @@ -11,9 +11,9 @@ from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder _runtime_version.ValidateProtobufRuntimeVersion( _runtime_version.Domain.PUBLIC, - 6, - 30, - 2, + 5, + 29, + 4, '', 'google/protobuf/descriptor.proto' ) @@ -32,10 +32,10 @@ if not _descriptor._USE_C_DESCRIPTORS: edition='EDITION_PROTO2', serialized_options=b'\n\023com.google.protobufB\020DescriptorProtosH\001Z-google.golang.org/protobuf/types/descriptorpb\370\001\001\242\002\003GPB\252\002\032Google.Protobuf.Reflection', create_key=_descriptor._internal_create_key, - serialized_pb=b'\n google/protobuf/descriptor.proto\x12\x0fgoogle.protobuf\"[\n\x11\x46ileDescriptorSet\x12\x38\n\x04\x66ile\x18\x01 \x03(\x0b\x32$.google.protobuf.FileDescriptorProtoR\x04\x66ile*\x0c\x08\x80\xec\xca\xff\x01\x10\x81\xec\xca\xff\x01\"\x98\x05\n\x13\x46ileDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x18\n\x07package\x18\x02 \x01(\tR\x07package\x12\x1e\n\ndependency\x18\x03 \x03(\tR\ndependency\x12+\n\x11public_dependency\x18\n \x03(\x05R\x10publicDependency\x12\'\n\x0fweak_dependency\x18\x0b \x03(\x05R\x0eweakDependency\x12\x43\n\x0cmessage_type\x18\x04 \x03(\x0b\x32 .google.protobuf.DescriptorProtoR\x0bmessageType\x12\x41\n\tenum_type\x18\x05 \x03(\x0b\x32$.google.protobuf.EnumDescriptorProtoR\x08\x65numType\x12\x41\n\x07service\x18\x06 \x03(\x0b\x32\'.google.protobuf.ServiceDescriptorProtoR\x07service\x12\x43\n\textension\x18\x07 \x03(\x0b\x32%.google.protobuf.FieldDescriptorProtoR\textension\x12\x36\n\x07options\x18\x08 \x01(\x0b\x32\x1c.google.protobuf.FileOptionsR\x07options\x12I\n\x10source_code_info\x18\t \x01(\x0b\x32\x1f.google.protobuf.SourceCodeInfoR\x0esourceCodeInfo\x12\x16\n\x06syntax\x18\x0c \x01(\tR\x06syntax\x12\x32\n\x07\x65\x64ition\x18\x0e \x01(\x0e\x32\x18.google.protobuf.EditionR\x07\x65\x64ition\"\xb9\x06\n\x0f\x44\x65scriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12;\n\x05\x66ield\x18\x02 \x03(\x0b\x32%.google.protobuf.FieldDescriptorProtoR\x05\x66ield\x12\x43\n\textension\x18\x06 \x03(\x0b\x32%.google.protobuf.FieldDescriptorProtoR\textension\x12\x41\n\x0bnested_type\x18\x03 \x03(\x0b\x32 .google.protobuf.DescriptorProtoR\nnestedType\x12\x41\n\tenum_type\x18\x04 \x03(\x0b\x32$.google.protobuf.EnumDescriptorProtoR\x08\x65numType\x12X\n\x0f\x65xtension_range\x18\x05 \x03(\x0b\x32/.google.protobuf.DescriptorProto.ExtensionRangeR\x0e\x65xtensionRange\x12\x44\n\noneof_decl\x18\x08 \x03(\x0b\x32%.google.protobuf.OneofDescriptorProtoR\toneofDecl\x12\x39\n\x07options\x18\x07 \x01(\x0b\x32\x1f.google.protobuf.MessageOptionsR\x07options\x12U\n\x0ereserved_range\x18\t \x03(\x0b\x32..google.protobuf.DescriptorProto.ReservedRangeR\rreservedRange\x12#\n\rreserved_name\x18\n \x03(\tR\x0creservedName\x1az\n\x0e\x45xtensionRange\x12\x14\n\x05start\x18\x01 \x01(\x05R\x05start\x12\x10\n\x03\x65nd\x18\x02 \x01(\x05R\x03\x65nd\x12@\n\x07options\x18\x03 \x01(\x0b\x32&.google.protobuf.ExtensionRangeOptionsR\x07options\x1a\x37\n\rReservedRange\x12\x14\n\x05start\x18\x01 \x01(\x05R\x05start\x12\x10\n\x03\x65nd\x18\x02 \x01(\x05R\x03\x65nd\"\xcc\x04\n\x15\x45xtensionRangeOptions\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption\x12Y\n\x0b\x64\x65\x63laration\x18\x02 \x03(\x0b\x32\x32.google.protobuf.ExtensionRangeOptions.DeclarationB\x03\x88\x01\x02R\x0b\x64\x65\x63laration\x12\x37\n\x08\x66\x65\x61tures\x18\x32 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12m\n\x0cverification\x18\x03 \x01(\x0e\x32\x38.google.protobuf.ExtensionRangeOptions.VerificationState:\nUNVERIFIEDB\x03\x88\x01\x02R\x0cverification\x1a\x94\x01\n\x0b\x44\x65\x63laration\x12\x16\n\x06number\x18\x01 \x01(\x05R\x06number\x12\x1b\n\tfull_name\x18\x02 \x01(\tR\x08\x66ullName\x12\x12\n\x04type\x18\x03 \x01(\tR\x04type\x12\x1a\n\x08reserved\x18\x05 \x01(\x08R\x08reserved\x12\x1a\n\x08repeated\x18\x06 \x01(\x08R\x08repeatedJ\x04\x08\x04\x10\x05\"4\n\x11VerificationState\x12\x0f\n\x0b\x44\x45\x43LARATION\x10\x00\x12\x0e\n\nUNVERIFIED\x10\x01*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\xc1\x06\n\x14\x46ieldDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x16\n\x06number\x18\x03 \x01(\x05R\x06number\x12\x41\n\x05label\x18\x04 \x01(\x0e\x32+.google.protobuf.FieldDescriptorProto.LabelR\x05label\x12>\n\x04type\x18\x05 \x01(\x0e\x32*.google.protobuf.FieldDescriptorProto.TypeR\x04type\x12\x1b\n\ttype_name\x18\x06 \x01(\tR\x08typeName\x12\x1a\n\x08\x65xtendee\x18\x02 \x01(\tR\x08\x65xtendee\x12#\n\rdefault_value\x18\x07 \x01(\tR\x0c\x64\x65\x66\x61ultValue\x12\x1f\n\x0boneof_index\x18\t \x01(\x05R\noneofIndex\x12\x1b\n\tjson_name\x18\n \x01(\tR\x08jsonName\x12\x37\n\x07options\x18\x08 \x01(\x0b\x32\x1d.google.protobuf.FieldOptionsR\x07options\x12\'\n\x0fproto3_optional\x18\x11 \x01(\x08R\x0eproto3Optional\"\xb6\x02\n\x04Type\x12\x0f\n\x0bTYPE_DOUBLE\x10\x01\x12\x0e\n\nTYPE_FLOAT\x10\x02\x12\x0e\n\nTYPE_INT64\x10\x03\x12\x0f\n\x0bTYPE_UINT64\x10\x04\x12\x0e\n\nTYPE_INT32\x10\x05\x12\x10\n\x0cTYPE_FIXED64\x10\x06\x12\x10\n\x0cTYPE_FIXED32\x10\x07\x12\r\n\tTYPE_BOOL\x10\x08\x12\x0f\n\x0bTYPE_STRING\x10\t\x12\x0e\n\nTYPE_GROUP\x10\n\x12\x10\n\x0cTYPE_MESSAGE\x10\x0b\x12\x0e\n\nTYPE_BYTES\x10\x0c\x12\x0f\n\x0bTYPE_UINT32\x10\r\x12\r\n\tTYPE_ENUM\x10\x0e\x12\x11\n\rTYPE_SFIXED32\x10\x0f\x12\x11\n\rTYPE_SFIXED64\x10\x10\x12\x0f\n\x0bTYPE_SINT32\x10\x11\x12\x0f\n\x0bTYPE_SINT64\x10\x12\"C\n\x05Label\x12\x12\n\x0eLABEL_OPTIONAL\x10\x01\x12\x12\n\x0eLABEL_REPEATED\x10\x03\x12\x12\n\x0eLABEL_REQUIRED\x10\x02\"c\n\x14OneofDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x37\n\x07options\x18\x02 \x01(\x0b\x32\x1d.google.protobuf.OneofOptionsR\x07options\"\xe3\x02\n\x13\x45numDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12?\n\x05value\x18\x02 \x03(\x0b\x32).google.protobuf.EnumValueDescriptorProtoR\x05value\x12\x36\n\x07options\x18\x03 \x01(\x0b\x32\x1c.google.protobuf.EnumOptionsR\x07options\x12]\n\x0ereserved_range\x18\x04 \x03(\x0b\x32\x36.google.protobuf.EnumDescriptorProto.EnumReservedRangeR\rreservedRange\x12#\n\rreserved_name\x18\x05 \x03(\tR\x0creservedName\x1a;\n\x11\x45numReservedRange\x12\x14\n\x05start\x18\x01 \x01(\x05R\x05start\x12\x10\n\x03\x65nd\x18\x02 \x01(\x05R\x03\x65nd\"\x83\x01\n\x18\x45numValueDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x16\n\x06number\x18\x02 \x01(\x05R\x06number\x12;\n\x07options\x18\x03 \x01(\x0b\x32!.google.protobuf.EnumValueOptionsR\x07options\"\xa7\x01\n\x16ServiceDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12>\n\x06method\x18\x02 \x03(\x0b\x32&.google.protobuf.MethodDescriptorProtoR\x06method\x12\x39\n\x07options\x18\x03 \x01(\x0b\x32\x1f.google.protobuf.ServiceOptionsR\x07options\"\x89\x02\n\x15MethodDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1d\n\ninput_type\x18\x02 \x01(\tR\tinputType\x12\x1f\n\x0boutput_type\x18\x03 \x01(\tR\noutputType\x12\x38\n\x07options\x18\x04 \x01(\x0b\x32\x1e.google.protobuf.MethodOptionsR\x07options\x12\x30\n\x10\x63lient_streaming\x18\x05 \x01(\x08:\x05\x66\x61lseR\x0f\x63lientStreaming\x12\x30\n\x10server_streaming\x18\x06 \x01(\x08:\x05\x66\x61lseR\x0fserverStreaming\"\xad\t\n\x0b\x46ileOptions\x12!\n\x0cjava_package\x18\x01 \x01(\tR\x0bjavaPackage\x12\x30\n\x14java_outer_classname\x18\x08 \x01(\tR\x12javaOuterClassname\x12\x35\n\x13java_multiple_files\x18\n \x01(\x08:\x05\x66\x61lseR\x11javaMultipleFiles\x12\x44\n\x1djava_generate_equals_and_hash\x18\x14 \x01(\x08\x42\x02\x18\x01R\x19javaGenerateEqualsAndHash\x12:\n\x16java_string_check_utf8\x18\x1b \x01(\x08:\x05\x66\x61lseR\x13javaStringCheckUtf8\x12S\n\x0coptimize_for\x18\t \x01(\x0e\x32).google.protobuf.FileOptions.OptimizeMode:\x05SPEEDR\x0boptimizeFor\x12\x1d\n\ngo_package\x18\x0b \x01(\tR\tgoPackage\x12\x35\n\x13\x63\x63_generic_services\x18\x10 \x01(\x08:\x05\x66\x61lseR\x11\x63\x63GenericServices\x12\x39\n\x15java_generic_services\x18\x11 \x01(\x08:\x05\x66\x61lseR\x13javaGenericServices\x12\x35\n\x13py_generic_services\x18\x12 \x01(\x08:\x05\x66\x61lseR\x11pyGenericServices\x12%\n\ndeprecated\x18\x17 \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12.\n\x10\x63\x63_enable_arenas\x18\x1f \x01(\x08:\x04trueR\x0e\x63\x63\x45nableArenas\x12*\n\x11objc_class_prefix\x18$ \x01(\tR\x0fobjcClassPrefix\x12)\n\x10\x63sharp_namespace\x18% \x01(\tR\x0f\x63sharpNamespace\x12!\n\x0cswift_prefix\x18\' \x01(\tR\x0bswiftPrefix\x12(\n\x10php_class_prefix\x18( \x01(\tR\x0ephpClassPrefix\x12#\n\rphp_namespace\x18) \x01(\tR\x0cphpNamespace\x12\x34\n\x16php_metadata_namespace\x18, \x01(\tR\x14phpMetadataNamespace\x12!\n\x0cruby_package\x18- \x01(\tR\x0brubyPackage\x12\x37\n\x08\x66\x65\x61tures\x18\x32 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption\":\n\x0cOptimizeMode\x12\t\n\x05SPEED\x10\x01\x12\r\n\tCODE_SIZE\x10\x02\x12\x10\n\x0cLITE_RUNTIME\x10\x03*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02J\x04\x08*\x10+J\x04\x08&\x10\'R\x14php_generic_services\"\xf4\x03\n\x0eMessageOptions\x12<\n\x17message_set_wire_format\x18\x01 \x01(\x08:\x05\x66\x61lseR\x14messageSetWireFormat\x12L\n\x1fno_standard_descriptor_accessor\x18\x02 \x01(\x08:\x05\x66\x61lseR\x1cnoStandardDescriptorAccessor\x12%\n\ndeprecated\x18\x03 \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12\x1b\n\tmap_entry\x18\x07 \x01(\x08R\x08mapEntry\x12V\n&deprecated_legacy_json_field_conflicts\x18\x0b \x01(\x08\x42\x02\x18\x01R\"deprecatedLegacyJsonFieldConflicts\x12\x37\n\x08\x66\x65\x61tures\x18\x0c \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02J\x04\x08\x04\x10\x05J\x04\x08\x05\x10\x06J\x04\x08\x06\x10\x07J\x04\x08\x08\x10\tJ\x04\x08\t\x10\n\"\x9d\r\n\x0c\x46ieldOptions\x12\x41\n\x05\x63type\x18\x01 \x01(\x0e\x32#.google.protobuf.FieldOptions.CType:\x06STRINGR\x05\x63type\x12\x16\n\x06packed\x18\x02 \x01(\x08R\x06packed\x12G\n\x06jstype\x18\x06 \x01(\x0e\x32$.google.protobuf.FieldOptions.JSType:\tJS_NORMALR\x06jstype\x12\x19\n\x04lazy\x18\x05 \x01(\x08:\x05\x66\x61lseR\x04lazy\x12.\n\x0funverified_lazy\x18\x0f \x01(\x08:\x05\x66\x61lseR\x0eunverifiedLazy\x12%\n\ndeprecated\x18\x03 \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12\x19\n\x04weak\x18\n \x01(\x08:\x05\x66\x61lseR\x04weak\x12(\n\x0c\x64\x65\x62ug_redact\x18\x10 \x01(\x08:\x05\x66\x61lseR\x0b\x64\x65\x62ugRedact\x12K\n\tretention\x18\x11 \x01(\x0e\x32-.google.protobuf.FieldOptions.OptionRetentionR\tretention\x12H\n\x07targets\x18\x13 \x03(\x0e\x32..google.protobuf.FieldOptions.OptionTargetTypeR\x07targets\x12W\n\x10\x65\x64ition_defaults\x18\x14 \x03(\x0b\x32,.google.protobuf.FieldOptions.EditionDefaultR\x0f\x65\x64itionDefaults\x12\x37\n\x08\x66\x65\x61tures\x18\x15 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12U\n\x0f\x66\x65\x61ture_support\x18\x16 \x01(\x0b\x32,.google.protobuf.FieldOptions.FeatureSupportR\x0e\x66\x65\x61tureSupport\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption\x1aZ\n\x0e\x45\x64itionDefault\x12\x32\n\x07\x65\x64ition\x18\x03 \x01(\x0e\x32\x18.google.protobuf.EditionR\x07\x65\x64ition\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\x1a\x96\x02\n\x0e\x46\x65\x61tureSupport\x12G\n\x12\x65\x64ition_introduced\x18\x01 \x01(\x0e\x32\x18.google.protobuf.EditionR\x11\x65\x64itionIntroduced\x12G\n\x12\x65\x64ition_deprecated\x18\x02 \x01(\x0e\x32\x18.google.protobuf.EditionR\x11\x65\x64itionDeprecated\x12/\n\x13\x64\x65precation_warning\x18\x03 \x01(\tR\x12\x64\x65precationWarning\x12\x41\n\x0f\x65\x64ition_removed\x18\x04 \x01(\x0e\x32\x18.google.protobuf.EditionR\x0e\x65\x64itionRemoved\"/\n\x05\x43Type\x12\n\n\x06STRING\x10\x00\x12\x08\n\x04\x43ORD\x10\x01\x12\x10\n\x0cSTRING_PIECE\x10\x02\"5\n\x06JSType\x12\r\n\tJS_NORMAL\x10\x00\x12\r\n\tJS_STRING\x10\x01\x12\r\n\tJS_NUMBER\x10\x02\"U\n\x0fOptionRetention\x12\x15\n\x11RETENTION_UNKNOWN\x10\x00\x12\x15\n\x11RETENTION_RUNTIME\x10\x01\x12\x14\n\x10RETENTION_SOURCE\x10\x02\"\x8c\x02\n\x10OptionTargetType\x12\x17\n\x13TARGET_TYPE_UNKNOWN\x10\x00\x12\x14\n\x10TARGET_TYPE_FILE\x10\x01\x12\x1f\n\x1bTARGET_TYPE_EXTENSION_RANGE\x10\x02\x12\x17\n\x13TARGET_TYPE_MESSAGE\x10\x03\x12\x15\n\x11TARGET_TYPE_FIELD\x10\x04\x12\x15\n\x11TARGET_TYPE_ONEOF\x10\x05\x12\x14\n\x10TARGET_TYPE_ENUM\x10\x06\x12\x1a\n\x16TARGET_TYPE_ENUM_ENTRY\x10\x07\x12\x17\n\x13TARGET_TYPE_SERVICE\x10\x08\x12\x16\n\x12TARGET_TYPE_METHOD\x10\t*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02J\x04\x08\x04\x10\x05J\x04\x08\x12\x10\x13\"\xac\x01\n\x0cOneofOptions\x12\x37\n\x08\x66\x65\x61tures\x18\x01 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\xd1\x02\n\x0b\x45numOptions\x12\x1f\n\x0b\x61llow_alias\x18\x02 \x01(\x08R\nallowAlias\x12%\n\ndeprecated\x18\x03 \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12V\n&deprecated_legacy_json_field_conflicts\x18\x06 \x01(\x08\x42\x02\x18\x01R\"deprecatedLegacyJsonFieldConflicts\x12\x37\n\x08\x66\x65\x61tures\x18\x07 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02J\x04\x08\x05\x10\x06\"\xd8\x02\n\x10\x45numValueOptions\x12%\n\ndeprecated\x18\x01 \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12\x37\n\x08\x66\x65\x61tures\x18\x02 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12(\n\x0c\x64\x65\x62ug_redact\x18\x03 \x01(\x08:\x05\x66\x61lseR\x0b\x64\x65\x62ugRedact\x12U\n\x0f\x66\x65\x61ture_support\x18\x04 \x01(\x0b\x32,.google.protobuf.FieldOptions.FeatureSupportR\x0e\x66\x65\x61tureSupport\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\xd5\x01\n\x0eServiceOptions\x12\x37\n\x08\x66\x65\x61tures\x18\" \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12%\n\ndeprecated\x18! \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\x99\x03\n\rMethodOptions\x12%\n\ndeprecated\x18! \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12q\n\x11idempotency_level\x18\" \x01(\x0e\x32/.google.protobuf.MethodOptions.IdempotencyLevel:\x13IDEMPOTENCY_UNKNOWNR\x10idempotencyLevel\x12\x37\n\x08\x66\x65\x61tures\x18# \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption\"P\n\x10IdempotencyLevel\x12\x17\n\x13IDEMPOTENCY_UNKNOWN\x10\x00\x12\x13\n\x0fNO_SIDE_EFFECTS\x10\x01\x12\x0e\n\nIDEMPOTENT\x10\x02*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\x9a\x03\n\x13UninterpretedOption\x12\x41\n\x04name\x18\x02 \x03(\x0b\x32-.google.protobuf.UninterpretedOption.NamePartR\x04name\x12)\n\x10identifier_value\x18\x03 \x01(\tR\x0fidentifierValue\x12,\n\x12positive_int_value\x18\x04 \x01(\x04R\x10positiveIntValue\x12,\n\x12negative_int_value\x18\x05 \x01(\x03R\x10negativeIntValue\x12!\n\x0c\x64ouble_value\x18\x06 \x01(\x01R\x0b\x64oubleValue\x12!\n\x0cstring_value\x18\x07 \x01(\x0cR\x0bstringValue\x12\'\n\x0f\x61ggregate_value\x18\x08 \x01(\tR\x0e\x61ggregateValue\x1aJ\n\x08NamePart\x12\x1b\n\tname_part\x18\x01 \x02(\tR\x08namePart\x12!\n\x0cis_extension\x18\x02 \x02(\x08R\x0bisExtension\"\xae\x0c\n\nFeatureSet\x12\x91\x01\n\x0e\x66ield_presence\x18\x01 \x01(\x0e\x32).google.protobuf.FeatureSet.FieldPresenceB?\x88\x01\x01\x98\x01\x04\x98\x01\x01\xa2\x01\r\x12\x08\x45XPLICIT\x18\x84\x07\xa2\x01\r\x12\x08IMPLICIT\x18\xe7\x07\xa2\x01\r\x12\x08\x45XPLICIT\x18\xe8\x07\xb2\x01\x03\x08\xe8\x07R\rfieldPresence\x12l\n\tenum_type\x18\x02 \x01(\x0e\x32$.google.protobuf.FeatureSet.EnumTypeB)\x88\x01\x01\x98\x01\x06\x98\x01\x01\xa2\x01\x0b\x12\x06\x43LOSED\x18\x84\x07\xa2\x01\t\x12\x04OPEN\x18\xe7\x07\xb2\x01\x03\x08\xe8\x07R\x08\x65numType\x12\x98\x01\n\x17repeated_field_encoding\x18\x03 \x01(\x0e\x32\x31.google.protobuf.FeatureSet.RepeatedFieldEncodingB-\x88\x01\x01\x98\x01\x04\x98\x01\x01\xa2\x01\r\x12\x08\x45XPANDED\x18\x84\x07\xa2\x01\x0b\x12\x06PACKED\x18\xe7\x07\xb2\x01\x03\x08\xe8\x07R\x15repeatedFieldEncoding\x12~\n\x0futf8_validation\x18\x04 \x01(\x0e\x32*.google.protobuf.FeatureSet.Utf8ValidationB)\x88\x01\x01\x98\x01\x04\x98\x01\x01\xa2\x01\t\x12\x04NONE\x18\x84\x07\xa2\x01\x0b\x12\x06VERIFY\x18\xe7\x07\xb2\x01\x03\x08\xe8\x07R\x0eutf8Validation\x12~\n\x10message_encoding\x18\x05 \x01(\x0e\x32+.google.protobuf.FeatureSet.MessageEncodingB&\x88\x01\x01\x98\x01\x04\x98\x01\x01\xa2\x01\x14\x12\x0fLENGTH_PREFIXED\x18\x84\x07\xb2\x01\x03\x08\xe8\x07R\x0fmessageEncoding\x12\x82\x01\n\x0bjson_format\x18\x06 \x01(\x0e\x32&.google.protobuf.FeatureSet.JsonFormatB9\x88\x01\x01\x98\x01\x03\x98\x01\x06\x98\x01\x01\xa2\x01\x17\x12\x12LEGACY_BEST_EFFORT\x18\x84\x07\xa2\x01\n\x12\x05\x41LLOW\x18\xe7\x07\xb2\x01\x03\x08\xe8\x07R\njsonFormat\x12\xab\x01\n\x14\x65nforce_naming_style\x18\x07 \x01(\x0e\x32..google.protobuf.FeatureSet.EnforceNamingStyleBI\x88\x01\x02\x98\x01\x01\x98\x01\x02\x98\x01\x03\x98\x01\x04\x98\x01\x05\x98\x01\x06\x98\x01\x07\x98\x01\x08\x98\x01\t\xa2\x01\x11\x12\x0cSTYLE_LEGACY\x18\x84\x07\xa2\x01\x0e\x12\tSTYLE2024\x18\xe9\x07\xb2\x01\x03\x08\xe9\x07R\x12\x65nforceNamingStyle\"\\\n\rFieldPresence\x12\x1a\n\x16\x46IELD_PRESENCE_UNKNOWN\x10\x00\x12\x0c\n\x08\x45XPLICIT\x10\x01\x12\x0c\n\x08IMPLICIT\x10\x02\x12\x13\n\x0fLEGACY_REQUIRED\x10\x03\"7\n\x08\x45numType\x12\x15\n\x11\x45NUM_TYPE_UNKNOWN\x10\x00\x12\x08\n\x04OPEN\x10\x01\x12\n\n\x06\x43LOSED\x10\x02\"V\n\x15RepeatedFieldEncoding\x12#\n\x1fREPEATED_FIELD_ENCODING_UNKNOWN\x10\x00\x12\n\n\x06PACKED\x10\x01\x12\x0c\n\x08\x45XPANDED\x10\x02\"I\n\x0eUtf8Validation\x12\x1b\n\x17UTF8_VALIDATION_UNKNOWN\x10\x00\x12\n\n\x06VERIFY\x10\x02\x12\x08\n\x04NONE\x10\x03\"\x04\x08\x01\x10\x01\"S\n\x0fMessageEncoding\x12\x1c\n\x18MESSAGE_ENCODING_UNKNOWN\x10\x00\x12\x13\n\x0fLENGTH_PREFIXED\x10\x01\x12\r\n\tDELIMITED\x10\x02\"H\n\nJsonFormat\x12\x17\n\x13JSON_FORMAT_UNKNOWN\x10\x00\x12\t\n\x05\x41LLOW\x10\x01\x12\x16\n\x12LEGACY_BEST_EFFORT\x10\x02\"W\n\x12\x45nforceNamingStyle\x12 \n\x1c\x45NFORCE_NAMING_STYLE_UNKNOWN\x10\x00\x12\r\n\tSTYLE2024\x10\x01\x12\x10\n\x0cSTYLE_LEGACY\x10\x02*\x06\x08\xe8\x07\x10\x8bN*\x06\x08\x8bN\x10\x90N*\x06\x08\x90N\x10\x91NJ\x06\x08\xe7\x07\x10\xe8\x07\"\xef\x03\n\x12\x46\x65\x61tureSetDefaults\x12X\n\x08\x64\x65\x66\x61ults\x18\x01 \x03(\x0b\x32<.google.protobuf.FeatureSetDefaults.FeatureSetEditionDefaultR\x08\x64\x65\x66\x61ults\x12\x41\n\x0fminimum_edition\x18\x04 \x01(\x0e\x32\x18.google.protobuf.EditionR\x0eminimumEdition\x12\x41\n\x0fmaximum_edition\x18\x05 \x01(\x0e\x32\x18.google.protobuf.EditionR\x0emaximumEdition\x1a\xf8\x01\n\x18\x46\x65\x61tureSetEditionDefault\x12\x32\n\x07\x65\x64ition\x18\x03 \x01(\x0e\x32\x18.google.protobuf.EditionR\x07\x65\x64ition\x12N\n\x14overridable_features\x18\x04 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x13overridableFeatures\x12\x42\n\x0e\x66ixed_features\x18\x05 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\rfixedFeaturesJ\x04\x08\x01\x10\x02J\x04\x08\x02\x10\x03R\x08\x66\x65\x61tures\"\xb5\x02\n\x0eSourceCodeInfo\x12\x44\n\x08location\x18\x01 \x03(\x0b\x32(.google.protobuf.SourceCodeInfo.LocationR\x08location\x1a\xce\x01\n\x08Location\x12\x16\n\x04path\x18\x01 \x03(\x05\x42\x02\x10\x01R\x04path\x12\x16\n\x04span\x18\x02 \x03(\x05\x42\x02\x10\x01R\x04span\x12)\n\x10leading_comments\x18\x03 \x01(\tR\x0fleadingComments\x12+\n\x11trailing_comments\x18\x04 \x01(\tR\x10trailingComments\x12:\n\x19leading_detached_comments\x18\x06 \x03(\tR\x17leadingDetachedComments*\x0c\x08\x80\xec\xca\xff\x01\x10\x81\xec\xca\xff\x01\"\xd0\x02\n\x11GeneratedCodeInfo\x12M\n\nannotation\x18\x01 \x03(\x0b\x32-.google.protobuf.GeneratedCodeInfo.AnnotationR\nannotation\x1a\xeb\x01\n\nAnnotation\x12\x16\n\x04path\x18\x01 \x03(\x05\x42\x02\x10\x01R\x04path\x12\x1f\n\x0bsource_file\x18\x02 \x01(\tR\nsourceFile\x12\x14\n\x05\x62\x65gin\x18\x03 \x01(\x05R\x05\x62\x65gin\x12\x10\n\x03\x65nd\x18\x04 \x01(\x05R\x03\x65nd\x12R\n\x08semantic\x18\x05 \x01(\x0e\x32\x36.google.protobuf.GeneratedCodeInfo.Annotation.SemanticR\x08semantic\"(\n\x08Semantic\x12\x08\n\x04NONE\x10\x00\x12\x07\n\x03SET\x10\x01\x12\t\n\x05\x41LIAS\x10\x02*\xa7\x02\n\x07\x45\x64ition\x12\x13\n\x0f\x45\x44ITION_UNKNOWN\x10\x00\x12\x13\n\x0e\x45\x44ITION_LEGACY\x10\x84\x07\x12\x13\n\x0e\x45\x44ITION_PROTO2\x10\xe6\x07\x12\x13\n\x0e\x45\x44ITION_PROTO3\x10\xe7\x07\x12\x11\n\x0c\x45\x44ITION_2023\x10\xe8\x07\x12\x11\n\x0c\x45\x44ITION_2024\x10\xe9\x07\x12\x17\n\x13\x45\x44ITION_1_TEST_ONLY\x10\x01\x12\x17\n\x13\x45\x44ITION_2_TEST_ONLY\x10\x02\x12\x1d\n\x17\x45\x44ITION_99997_TEST_ONLY\x10\x9d\x8d\x06\x12\x1d\n\x17\x45\x44ITION_99998_TEST_ONLY\x10\x9e\x8d\x06\x12\x1d\n\x17\x45\x44ITION_99999_TEST_ONLY\x10\x9f\x8d\x06\x12\x13\n\x0b\x45\x44ITION_MAX\x10\xff\xff\xff\xff\x07\x42~\n\x13\x63om.google.protobufB\x10\x44\x65scriptorProtosH\x01Z-google.golang.org/protobuf/types/descriptorpb\xf8\x01\x01\xa2\x02\x03GPB\xaa\x02\x1aGoogle.Protobuf.Reflection' + serialized_pb=b'\n google/protobuf/descriptor.proto\x12\x0fgoogle.protobuf\"[\n\x11\x46ileDescriptorSet\x12\x38\n\x04\x66ile\x18\x01 \x03(\x0b\x32$.google.protobuf.FileDescriptorProtoR\x04\x66ile*\x0c\x08\x80\xec\xca\xff\x01\x10\x81\xec\xca\xff\x01\"\x98\x05\n\x13\x46ileDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x18\n\x07package\x18\x02 \x01(\tR\x07package\x12\x1e\n\ndependency\x18\x03 \x03(\tR\ndependency\x12+\n\x11public_dependency\x18\n \x03(\x05R\x10publicDependency\x12\'\n\x0fweak_dependency\x18\x0b \x03(\x05R\x0eweakDependency\x12\x43\n\x0cmessage_type\x18\x04 \x03(\x0b\x32 .google.protobuf.DescriptorProtoR\x0bmessageType\x12\x41\n\tenum_type\x18\x05 \x03(\x0b\x32$.google.protobuf.EnumDescriptorProtoR\x08\x65numType\x12\x41\n\x07service\x18\x06 \x03(\x0b\x32\'.google.protobuf.ServiceDescriptorProtoR\x07service\x12\x43\n\textension\x18\x07 \x03(\x0b\x32%.google.protobuf.FieldDescriptorProtoR\textension\x12\x36\n\x07options\x18\x08 \x01(\x0b\x32\x1c.google.protobuf.FileOptionsR\x07options\x12I\n\x10source_code_info\x18\t \x01(\x0b\x32\x1f.google.protobuf.SourceCodeInfoR\x0esourceCodeInfo\x12\x16\n\x06syntax\x18\x0c \x01(\tR\x06syntax\x12\x32\n\x07\x65\x64ition\x18\x0e \x01(\x0e\x32\x18.google.protobuf.EditionR\x07\x65\x64ition\"\xb9\x06\n\x0f\x44\x65scriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12;\n\x05\x66ield\x18\x02 \x03(\x0b\x32%.google.protobuf.FieldDescriptorProtoR\x05\x66ield\x12\x43\n\textension\x18\x06 \x03(\x0b\x32%.google.protobuf.FieldDescriptorProtoR\textension\x12\x41\n\x0bnested_type\x18\x03 \x03(\x0b\x32 .google.protobuf.DescriptorProtoR\nnestedType\x12\x41\n\tenum_type\x18\x04 \x03(\x0b\x32$.google.protobuf.EnumDescriptorProtoR\x08\x65numType\x12X\n\x0f\x65xtension_range\x18\x05 \x03(\x0b\x32/.google.protobuf.DescriptorProto.ExtensionRangeR\x0e\x65xtensionRange\x12\x44\n\noneof_decl\x18\x08 \x03(\x0b\x32%.google.protobuf.OneofDescriptorProtoR\toneofDecl\x12\x39\n\x07options\x18\x07 \x01(\x0b\x32\x1f.google.protobuf.MessageOptionsR\x07options\x12U\n\x0ereserved_range\x18\t \x03(\x0b\x32..google.protobuf.DescriptorProto.ReservedRangeR\rreservedRange\x12#\n\rreserved_name\x18\n \x03(\tR\x0creservedName\x1az\n\x0e\x45xtensionRange\x12\x14\n\x05start\x18\x01 \x01(\x05R\x05start\x12\x10\n\x03\x65nd\x18\x02 \x01(\x05R\x03\x65nd\x12@\n\x07options\x18\x03 \x01(\x0b\x32&.google.protobuf.ExtensionRangeOptionsR\x07options\x1a\x37\n\rReservedRange\x12\x14\n\x05start\x18\x01 \x01(\x05R\x05start\x12\x10\n\x03\x65nd\x18\x02 \x01(\x05R\x03\x65nd\"\xcc\x04\n\x15\x45xtensionRangeOptions\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption\x12Y\n\x0b\x64\x65\x63laration\x18\x02 \x03(\x0b\x32\x32.google.protobuf.ExtensionRangeOptions.DeclarationB\x03\x88\x01\x02R\x0b\x64\x65\x63laration\x12\x37\n\x08\x66\x65\x61tures\x18\x32 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12m\n\x0cverification\x18\x03 \x01(\x0e\x32\x38.google.protobuf.ExtensionRangeOptions.VerificationState:\nUNVERIFIEDB\x03\x88\x01\x02R\x0cverification\x1a\x94\x01\n\x0b\x44\x65\x63laration\x12\x16\n\x06number\x18\x01 \x01(\x05R\x06number\x12\x1b\n\tfull_name\x18\x02 \x01(\tR\x08\x66ullName\x12\x12\n\x04type\x18\x03 \x01(\tR\x04type\x12\x1a\n\x08reserved\x18\x05 \x01(\x08R\x08reserved\x12\x1a\n\x08repeated\x18\x06 \x01(\x08R\x08repeatedJ\x04\x08\x04\x10\x05\"4\n\x11VerificationState\x12\x0f\n\x0b\x44\x45\x43LARATION\x10\x00\x12\x0e\n\nUNVERIFIED\x10\x01*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\xc1\x06\n\x14\x46ieldDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x16\n\x06number\x18\x03 \x01(\x05R\x06number\x12\x41\n\x05label\x18\x04 \x01(\x0e\x32+.google.protobuf.FieldDescriptorProto.LabelR\x05label\x12>\n\x04type\x18\x05 \x01(\x0e\x32*.google.protobuf.FieldDescriptorProto.TypeR\x04type\x12\x1b\n\ttype_name\x18\x06 \x01(\tR\x08typeName\x12\x1a\n\x08\x65xtendee\x18\x02 \x01(\tR\x08\x65xtendee\x12#\n\rdefault_value\x18\x07 \x01(\tR\x0c\x64\x65\x66\x61ultValue\x12\x1f\n\x0boneof_index\x18\t \x01(\x05R\noneofIndex\x12\x1b\n\tjson_name\x18\n \x01(\tR\x08jsonName\x12\x37\n\x07options\x18\x08 \x01(\x0b\x32\x1d.google.protobuf.FieldOptionsR\x07options\x12\'\n\x0fproto3_optional\x18\x11 \x01(\x08R\x0eproto3Optional\"\xb6\x02\n\x04Type\x12\x0f\n\x0bTYPE_DOUBLE\x10\x01\x12\x0e\n\nTYPE_FLOAT\x10\x02\x12\x0e\n\nTYPE_INT64\x10\x03\x12\x0f\n\x0bTYPE_UINT64\x10\x04\x12\x0e\n\nTYPE_INT32\x10\x05\x12\x10\n\x0cTYPE_FIXED64\x10\x06\x12\x10\n\x0cTYPE_FIXED32\x10\x07\x12\r\n\tTYPE_BOOL\x10\x08\x12\x0f\n\x0bTYPE_STRING\x10\t\x12\x0e\n\nTYPE_GROUP\x10\n\x12\x10\n\x0cTYPE_MESSAGE\x10\x0b\x12\x0e\n\nTYPE_BYTES\x10\x0c\x12\x0f\n\x0bTYPE_UINT32\x10\r\x12\r\n\tTYPE_ENUM\x10\x0e\x12\x11\n\rTYPE_SFIXED32\x10\x0f\x12\x11\n\rTYPE_SFIXED64\x10\x10\x12\x0f\n\x0bTYPE_SINT32\x10\x11\x12\x0f\n\x0bTYPE_SINT64\x10\x12\"C\n\x05Label\x12\x12\n\x0eLABEL_OPTIONAL\x10\x01\x12\x12\n\x0eLABEL_REPEATED\x10\x03\x12\x12\n\x0eLABEL_REQUIRED\x10\x02\"c\n\x14OneofDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x37\n\x07options\x18\x02 \x01(\x0b\x32\x1d.google.protobuf.OneofOptionsR\x07options\"\xe3\x02\n\x13\x45numDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12?\n\x05value\x18\x02 \x03(\x0b\x32).google.protobuf.EnumValueDescriptorProtoR\x05value\x12\x36\n\x07options\x18\x03 \x01(\x0b\x32\x1c.google.protobuf.EnumOptionsR\x07options\x12]\n\x0ereserved_range\x18\x04 \x03(\x0b\x32\x36.google.protobuf.EnumDescriptorProto.EnumReservedRangeR\rreservedRange\x12#\n\rreserved_name\x18\x05 \x03(\tR\x0creservedName\x1a;\n\x11\x45numReservedRange\x12\x14\n\x05start\x18\x01 \x01(\x05R\x05start\x12\x10\n\x03\x65nd\x18\x02 \x01(\x05R\x03\x65nd\"\x83\x01\n\x18\x45numValueDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x16\n\x06number\x18\x02 \x01(\x05R\x06number\x12;\n\x07options\x18\x03 \x01(\x0b\x32!.google.protobuf.EnumValueOptionsR\x07options\"\xa7\x01\n\x16ServiceDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12>\n\x06method\x18\x02 \x03(\x0b\x32&.google.protobuf.MethodDescriptorProtoR\x06method\x12\x39\n\x07options\x18\x03 \x01(\x0b\x32\x1f.google.protobuf.ServiceOptionsR\x07options\"\x89\x02\n\x15MethodDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1d\n\ninput_type\x18\x02 \x01(\tR\tinputType\x12\x1f\n\x0boutput_type\x18\x03 \x01(\tR\noutputType\x12\x38\n\x07options\x18\x04 \x01(\x0b\x32\x1e.google.protobuf.MethodOptionsR\x07options\x12\x30\n\x10\x63lient_streaming\x18\x05 \x01(\x08:\x05\x66\x61lseR\x0f\x63lientStreaming\x12\x30\n\x10server_streaming\x18\x06 \x01(\x08:\x05\x66\x61lseR\x0fserverStreaming\"\xad\t\n\x0b\x46ileOptions\x12!\n\x0cjava_package\x18\x01 \x01(\tR\x0bjavaPackage\x12\x30\n\x14java_outer_classname\x18\x08 \x01(\tR\x12javaOuterClassname\x12\x35\n\x13java_multiple_files\x18\n \x01(\x08:\x05\x66\x61lseR\x11javaMultipleFiles\x12\x44\n\x1djava_generate_equals_and_hash\x18\x14 \x01(\x08\x42\x02\x18\x01R\x19javaGenerateEqualsAndHash\x12:\n\x16java_string_check_utf8\x18\x1b \x01(\x08:\x05\x66\x61lseR\x13javaStringCheckUtf8\x12S\n\x0coptimize_for\x18\t \x01(\x0e\x32).google.protobuf.FileOptions.OptimizeMode:\x05SPEEDR\x0boptimizeFor\x12\x1d\n\ngo_package\x18\x0b \x01(\tR\tgoPackage\x12\x35\n\x13\x63\x63_generic_services\x18\x10 \x01(\x08:\x05\x66\x61lseR\x11\x63\x63GenericServices\x12\x39\n\x15java_generic_services\x18\x11 \x01(\x08:\x05\x66\x61lseR\x13javaGenericServices\x12\x35\n\x13py_generic_services\x18\x12 \x01(\x08:\x05\x66\x61lseR\x11pyGenericServices\x12%\n\ndeprecated\x18\x17 \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12.\n\x10\x63\x63_enable_arenas\x18\x1f \x01(\x08:\x04trueR\x0e\x63\x63\x45nableArenas\x12*\n\x11objc_class_prefix\x18$ \x01(\tR\x0fobjcClassPrefix\x12)\n\x10\x63sharp_namespace\x18% \x01(\tR\x0f\x63sharpNamespace\x12!\n\x0cswift_prefix\x18\' \x01(\tR\x0bswiftPrefix\x12(\n\x10php_class_prefix\x18( \x01(\tR\x0ephpClassPrefix\x12#\n\rphp_namespace\x18) \x01(\tR\x0cphpNamespace\x12\x34\n\x16php_metadata_namespace\x18, \x01(\tR\x14phpMetadataNamespace\x12!\n\x0cruby_package\x18- \x01(\tR\x0brubyPackage\x12\x37\n\x08\x66\x65\x61tures\x18\x32 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption\":\n\x0cOptimizeMode\x12\t\n\x05SPEED\x10\x01\x12\r\n\tCODE_SIZE\x10\x02\x12\x10\n\x0cLITE_RUNTIME\x10\x03*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02J\x04\x08*\x10+J\x04\x08&\x10\'R\x14php_generic_services\"\xf4\x03\n\x0eMessageOptions\x12<\n\x17message_set_wire_format\x18\x01 \x01(\x08:\x05\x66\x61lseR\x14messageSetWireFormat\x12L\n\x1fno_standard_descriptor_accessor\x18\x02 \x01(\x08:\x05\x66\x61lseR\x1cnoStandardDescriptorAccessor\x12%\n\ndeprecated\x18\x03 \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12\x1b\n\tmap_entry\x18\x07 \x01(\x08R\x08mapEntry\x12V\n&deprecated_legacy_json_field_conflicts\x18\x0b \x01(\x08\x42\x02\x18\x01R\"deprecatedLegacyJsonFieldConflicts\x12\x37\n\x08\x66\x65\x61tures\x18\x0c \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02J\x04\x08\x04\x10\x05J\x04\x08\x05\x10\x06J\x04\x08\x06\x10\x07J\x04\x08\x08\x10\tJ\x04\x08\t\x10\n\"\x9d\r\n\x0c\x46ieldOptions\x12\x41\n\x05\x63type\x18\x01 \x01(\x0e\x32#.google.protobuf.FieldOptions.CType:\x06STRINGR\x05\x63type\x12\x16\n\x06packed\x18\x02 \x01(\x08R\x06packed\x12G\n\x06jstype\x18\x06 \x01(\x0e\x32$.google.protobuf.FieldOptions.JSType:\tJS_NORMALR\x06jstype\x12\x19\n\x04lazy\x18\x05 \x01(\x08:\x05\x66\x61lseR\x04lazy\x12.\n\x0funverified_lazy\x18\x0f \x01(\x08:\x05\x66\x61lseR\x0eunverifiedLazy\x12%\n\ndeprecated\x18\x03 \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12\x19\n\x04weak\x18\n \x01(\x08:\x05\x66\x61lseR\x04weak\x12(\n\x0c\x64\x65\x62ug_redact\x18\x10 \x01(\x08:\x05\x66\x61lseR\x0b\x64\x65\x62ugRedact\x12K\n\tretention\x18\x11 \x01(\x0e\x32-.google.protobuf.FieldOptions.OptionRetentionR\tretention\x12H\n\x07targets\x18\x13 \x03(\x0e\x32..google.protobuf.FieldOptions.OptionTargetTypeR\x07targets\x12W\n\x10\x65\x64ition_defaults\x18\x14 \x03(\x0b\x32,.google.protobuf.FieldOptions.EditionDefaultR\x0f\x65\x64itionDefaults\x12\x37\n\x08\x66\x65\x61tures\x18\x15 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12U\n\x0f\x66\x65\x61ture_support\x18\x16 \x01(\x0b\x32,.google.protobuf.FieldOptions.FeatureSupportR\x0e\x66\x65\x61tureSupport\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption\x1aZ\n\x0e\x45\x64itionDefault\x12\x32\n\x07\x65\x64ition\x18\x03 \x01(\x0e\x32\x18.google.protobuf.EditionR\x07\x65\x64ition\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\x1a\x96\x02\n\x0e\x46\x65\x61tureSupport\x12G\n\x12\x65\x64ition_introduced\x18\x01 \x01(\x0e\x32\x18.google.protobuf.EditionR\x11\x65\x64itionIntroduced\x12G\n\x12\x65\x64ition_deprecated\x18\x02 \x01(\x0e\x32\x18.google.protobuf.EditionR\x11\x65\x64itionDeprecated\x12/\n\x13\x64\x65precation_warning\x18\x03 \x01(\tR\x12\x64\x65precationWarning\x12\x41\n\x0f\x65\x64ition_removed\x18\x04 \x01(\x0e\x32\x18.google.protobuf.EditionR\x0e\x65\x64itionRemoved\"/\n\x05\x43Type\x12\n\n\x06STRING\x10\x00\x12\x08\n\x04\x43ORD\x10\x01\x12\x10\n\x0cSTRING_PIECE\x10\x02\"5\n\x06JSType\x12\r\n\tJS_NORMAL\x10\x00\x12\r\n\tJS_STRING\x10\x01\x12\r\n\tJS_NUMBER\x10\x02\"U\n\x0fOptionRetention\x12\x15\n\x11RETENTION_UNKNOWN\x10\x00\x12\x15\n\x11RETENTION_RUNTIME\x10\x01\x12\x14\n\x10RETENTION_SOURCE\x10\x02\"\x8c\x02\n\x10OptionTargetType\x12\x17\n\x13TARGET_TYPE_UNKNOWN\x10\x00\x12\x14\n\x10TARGET_TYPE_FILE\x10\x01\x12\x1f\n\x1bTARGET_TYPE_EXTENSION_RANGE\x10\x02\x12\x17\n\x13TARGET_TYPE_MESSAGE\x10\x03\x12\x15\n\x11TARGET_TYPE_FIELD\x10\x04\x12\x15\n\x11TARGET_TYPE_ONEOF\x10\x05\x12\x14\n\x10TARGET_TYPE_ENUM\x10\x06\x12\x1a\n\x16TARGET_TYPE_ENUM_ENTRY\x10\x07\x12\x17\n\x13TARGET_TYPE_SERVICE\x10\x08\x12\x16\n\x12TARGET_TYPE_METHOD\x10\t*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02J\x04\x08\x04\x10\x05J\x04\x08\x12\x10\x13\"\xac\x01\n\x0cOneofOptions\x12\x37\n\x08\x66\x65\x61tures\x18\x01 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\xd1\x02\n\x0b\x45numOptions\x12\x1f\n\x0b\x61llow_alias\x18\x02 \x01(\x08R\nallowAlias\x12%\n\ndeprecated\x18\x03 \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12V\n&deprecated_legacy_json_field_conflicts\x18\x06 \x01(\x08\x42\x02\x18\x01R\"deprecatedLegacyJsonFieldConflicts\x12\x37\n\x08\x66\x65\x61tures\x18\x07 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02J\x04\x08\x05\x10\x06\"\xd8\x02\n\x10\x45numValueOptions\x12%\n\ndeprecated\x18\x01 \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12\x37\n\x08\x66\x65\x61tures\x18\x02 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12(\n\x0c\x64\x65\x62ug_redact\x18\x03 \x01(\x08:\x05\x66\x61lseR\x0b\x64\x65\x62ugRedact\x12U\n\x0f\x66\x65\x61ture_support\x18\x04 \x01(\x0b\x32,.google.protobuf.FieldOptions.FeatureSupportR\x0e\x66\x65\x61tureSupport\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\xd5\x01\n\x0eServiceOptions\x12\x37\n\x08\x66\x65\x61tures\x18\" \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12%\n\ndeprecated\x18! \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\x99\x03\n\rMethodOptions\x12%\n\ndeprecated\x18! \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12q\n\x11idempotency_level\x18\" \x01(\x0e\x32/.google.protobuf.MethodOptions.IdempotencyLevel:\x13IDEMPOTENCY_UNKNOWNR\x10idempotencyLevel\x12\x37\n\x08\x66\x65\x61tures\x18# \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption\"P\n\x10IdempotencyLevel\x12\x17\n\x13IDEMPOTENCY_UNKNOWN\x10\x00\x12\x13\n\x0fNO_SIDE_EFFECTS\x10\x01\x12\x0e\n\nIDEMPOTENT\x10\x02*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\x9a\x03\n\x13UninterpretedOption\x12\x41\n\x04name\x18\x02 \x03(\x0b\x32-.google.protobuf.UninterpretedOption.NamePartR\x04name\x12)\n\x10identifier_value\x18\x03 \x01(\tR\x0fidentifierValue\x12,\n\x12positive_int_value\x18\x04 \x01(\x04R\x10positiveIntValue\x12,\n\x12negative_int_value\x18\x05 \x01(\x03R\x10negativeIntValue\x12!\n\x0c\x64ouble_value\x18\x06 \x01(\x01R\x0b\x64oubleValue\x12!\n\x0cstring_value\x18\x07 \x01(\x0cR\x0bstringValue\x12\'\n\x0f\x61ggregate_value\x18\x08 \x01(\tR\x0e\x61ggregateValue\x1aJ\n\x08NamePart\x12\x1b\n\tname_part\x18\x01 \x02(\tR\x08namePart\x12!\n\x0cis_extension\x18\x02 \x02(\x08R\x0bisExtension\"\xa7\n\n\nFeatureSet\x12\x91\x01\n\x0e\x66ield_presence\x18\x01 \x01(\x0e\x32).google.protobuf.FeatureSet.FieldPresenceB?\x88\x01\x01\x98\x01\x04\x98\x01\x01\xa2\x01\r\x12\x08\x45XPLICIT\x18\x84\x07\xa2\x01\r\x12\x08IMPLICIT\x18\xe7\x07\xa2\x01\r\x12\x08\x45XPLICIT\x18\xe8\x07\xb2\x01\x03\x08\xe8\x07R\rfieldPresence\x12l\n\tenum_type\x18\x02 \x01(\x0e\x32$.google.protobuf.FeatureSet.EnumTypeB)\x88\x01\x01\x98\x01\x06\x98\x01\x01\xa2\x01\x0b\x12\x06\x43LOSED\x18\x84\x07\xa2\x01\t\x12\x04OPEN\x18\xe7\x07\xb2\x01\x03\x08\xe8\x07R\x08\x65numType\x12\x98\x01\n\x17repeated_field_encoding\x18\x03 \x01(\x0e\x32\x31.google.protobuf.FeatureSet.RepeatedFieldEncodingB-\x88\x01\x01\x98\x01\x04\x98\x01\x01\xa2\x01\r\x12\x08\x45XPANDED\x18\x84\x07\xa2\x01\x0b\x12\x06PACKED\x18\xe7\x07\xb2\x01\x03\x08\xe8\x07R\x15repeatedFieldEncoding\x12~\n\x0futf8_validation\x18\x04 \x01(\x0e\x32*.google.protobuf.FeatureSet.Utf8ValidationB)\x88\x01\x01\x98\x01\x04\x98\x01\x01\xa2\x01\t\x12\x04NONE\x18\x84\x07\xa2\x01\x0b\x12\x06VERIFY\x18\xe7\x07\xb2\x01\x03\x08\xe8\x07R\x0eutf8Validation\x12~\n\x10message_encoding\x18\x05 \x01(\x0e\x32+.google.protobuf.FeatureSet.MessageEncodingB&\x88\x01\x01\x98\x01\x04\x98\x01\x01\xa2\x01\x14\x12\x0fLENGTH_PREFIXED\x18\x84\x07\xb2\x01\x03\x08\xe8\x07R\x0fmessageEncoding\x12\x82\x01\n\x0bjson_format\x18\x06 \x01(\x0e\x32&.google.protobuf.FeatureSet.JsonFormatB9\x88\x01\x01\x98\x01\x03\x98\x01\x06\x98\x01\x01\xa2\x01\x17\x12\x12LEGACY_BEST_EFFORT\x18\x84\x07\xa2\x01\n\x12\x05\x41LLOW\x18\xe7\x07\xb2\x01\x03\x08\xe8\x07R\njsonFormat\"\\\n\rFieldPresence\x12\x1a\n\x16\x46IELD_PRESENCE_UNKNOWN\x10\x00\x12\x0c\n\x08\x45XPLICIT\x10\x01\x12\x0c\n\x08IMPLICIT\x10\x02\x12\x13\n\x0fLEGACY_REQUIRED\x10\x03\"7\n\x08\x45numType\x12\x15\n\x11\x45NUM_TYPE_UNKNOWN\x10\x00\x12\x08\n\x04OPEN\x10\x01\x12\n\n\x06\x43LOSED\x10\x02\"V\n\x15RepeatedFieldEncoding\x12#\n\x1fREPEATED_FIELD_ENCODING_UNKNOWN\x10\x00\x12\n\n\x06PACKED\x10\x01\x12\x0c\n\x08\x45XPANDED\x10\x02\"I\n\x0eUtf8Validation\x12\x1b\n\x17UTF8_VALIDATION_UNKNOWN\x10\x00\x12\n\n\x06VERIFY\x10\x02\x12\x08\n\x04NONE\x10\x03\"\x04\x08\x01\x10\x01\"S\n\x0fMessageEncoding\x12\x1c\n\x18MESSAGE_ENCODING_UNKNOWN\x10\x00\x12\x13\n\x0fLENGTH_PREFIXED\x10\x01\x12\r\n\tDELIMITED\x10\x02\"H\n\nJsonFormat\x12\x17\n\x13JSON_FORMAT_UNKNOWN\x10\x00\x12\t\n\x05\x41LLOW\x10\x01\x12\x16\n\x12LEGACY_BEST_EFFORT\x10\x02*\x06\x08\xe8\x07\x10\x8bN*\x06\x08\x8bN\x10\x90N*\x06\x08\x90N\x10\x91NJ\x06\x08\xe7\x07\x10\xe8\x07\"\xef\x03\n\x12\x46\x65\x61tureSetDefaults\x12X\n\x08\x64\x65\x66\x61ults\x18\x01 \x03(\x0b\x32<.google.protobuf.FeatureSetDefaults.FeatureSetEditionDefaultR\x08\x64\x65\x66\x61ults\x12\x41\n\x0fminimum_edition\x18\x04 \x01(\x0e\x32\x18.google.protobuf.EditionR\x0eminimumEdition\x12\x41\n\x0fmaximum_edition\x18\x05 \x01(\x0e\x32\x18.google.protobuf.EditionR\x0emaximumEdition\x1a\xf8\x01\n\x18\x46\x65\x61tureSetEditionDefault\x12\x32\n\x07\x65\x64ition\x18\x03 \x01(\x0e\x32\x18.google.protobuf.EditionR\x07\x65\x64ition\x12N\n\x14overridable_features\x18\x04 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x13overridableFeatures\x12\x42\n\x0e\x66ixed_features\x18\x05 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\rfixedFeaturesJ\x04\x08\x01\x10\x02J\x04\x08\x02\x10\x03R\x08\x66\x65\x61tures\"\xb5\x02\n\x0eSourceCodeInfo\x12\x44\n\x08location\x18\x01 \x03(\x0b\x32(.google.protobuf.SourceCodeInfo.LocationR\x08location\x1a\xce\x01\n\x08Location\x12\x16\n\x04path\x18\x01 \x03(\x05\x42\x02\x10\x01R\x04path\x12\x16\n\x04span\x18\x02 \x03(\x05\x42\x02\x10\x01R\x04span\x12)\n\x10leading_comments\x18\x03 \x01(\tR\x0fleadingComments\x12+\n\x11trailing_comments\x18\x04 \x01(\tR\x10trailingComments\x12:\n\x19leading_detached_comments\x18\x06 \x03(\tR\x17leadingDetachedComments*\x0c\x08\x80\xec\xca\xff\x01\x10\x81\xec\xca\xff\x01\"\xd0\x02\n\x11GeneratedCodeInfo\x12M\n\nannotation\x18\x01 \x03(\x0b\x32-.google.protobuf.GeneratedCodeInfo.AnnotationR\nannotation\x1a\xeb\x01\n\nAnnotation\x12\x16\n\x04path\x18\x01 \x03(\x05\x42\x02\x10\x01R\x04path\x12\x1f\n\x0bsource_file\x18\x02 \x01(\tR\nsourceFile\x12\x14\n\x05\x62\x65gin\x18\x03 \x01(\x05R\x05\x62\x65gin\x12\x10\n\x03\x65nd\x18\x04 \x01(\x05R\x03\x65nd\x12R\n\x08semantic\x18\x05 \x01(\x0e\x32\x36.google.protobuf.GeneratedCodeInfo.Annotation.SemanticR\x08semantic\"(\n\x08Semantic\x12\x08\n\x04NONE\x10\x00\x12\x07\n\x03SET\x10\x01\x12\t\n\x05\x41LIAS\x10\x02*\xa7\x02\n\x07\x45\x64ition\x12\x13\n\x0f\x45\x44ITION_UNKNOWN\x10\x00\x12\x13\n\x0e\x45\x44ITION_LEGACY\x10\x84\x07\x12\x13\n\x0e\x45\x44ITION_PROTO2\x10\xe6\x07\x12\x13\n\x0e\x45\x44ITION_PROTO3\x10\xe7\x07\x12\x11\n\x0c\x45\x44ITION_2023\x10\xe8\x07\x12\x11\n\x0c\x45\x44ITION_2024\x10\xe9\x07\x12\x17\n\x13\x45\x44ITION_1_TEST_ONLY\x10\x01\x12\x17\n\x13\x45\x44ITION_2_TEST_ONLY\x10\x02\x12\x1d\n\x17\x45\x44ITION_99997_TEST_ONLY\x10\x9d\x8d\x06\x12\x1d\n\x17\x45\x44ITION_99998_TEST_ONLY\x10\x9e\x8d\x06\x12\x1d\n\x17\x45\x44ITION_99999_TEST_ONLY\x10\x9f\x8d\x06\x12\x13\n\x0b\x45\x44ITION_MAX\x10\xff\xff\xff\xff\x07\x42~\n\x13\x63om.google.protobufB\x10\x44\x65scriptorProtosH\x01Z-google.golang.org/protobuf/types/descriptorpb\xf8\x01\x01\xa2\x02\x03GPB\xaa\x02\x1aGoogle.Protobuf.Reflection' ) else: - DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n google/protobuf/descriptor.proto\x12\x0fgoogle.protobuf\"[\n\x11\x46ileDescriptorSet\x12\x38\n\x04\x66ile\x18\x01 \x03(\x0b\x32$.google.protobuf.FileDescriptorProtoR\x04\x66ile*\x0c\x08\x80\xec\xca\xff\x01\x10\x81\xec\xca\xff\x01\"\x98\x05\n\x13\x46ileDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x18\n\x07package\x18\x02 \x01(\tR\x07package\x12\x1e\n\ndependency\x18\x03 \x03(\tR\ndependency\x12+\n\x11public_dependency\x18\n \x03(\x05R\x10publicDependency\x12\'\n\x0fweak_dependency\x18\x0b \x03(\x05R\x0eweakDependency\x12\x43\n\x0cmessage_type\x18\x04 \x03(\x0b\x32 .google.protobuf.DescriptorProtoR\x0bmessageType\x12\x41\n\tenum_type\x18\x05 \x03(\x0b\x32$.google.protobuf.EnumDescriptorProtoR\x08\x65numType\x12\x41\n\x07service\x18\x06 \x03(\x0b\x32\'.google.protobuf.ServiceDescriptorProtoR\x07service\x12\x43\n\textension\x18\x07 \x03(\x0b\x32%.google.protobuf.FieldDescriptorProtoR\textension\x12\x36\n\x07options\x18\x08 \x01(\x0b\x32\x1c.google.protobuf.FileOptionsR\x07options\x12I\n\x10source_code_info\x18\t \x01(\x0b\x32\x1f.google.protobuf.SourceCodeInfoR\x0esourceCodeInfo\x12\x16\n\x06syntax\x18\x0c \x01(\tR\x06syntax\x12\x32\n\x07\x65\x64ition\x18\x0e \x01(\x0e\x32\x18.google.protobuf.EditionR\x07\x65\x64ition\"\xb9\x06\n\x0f\x44\x65scriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12;\n\x05\x66ield\x18\x02 \x03(\x0b\x32%.google.protobuf.FieldDescriptorProtoR\x05\x66ield\x12\x43\n\textension\x18\x06 \x03(\x0b\x32%.google.protobuf.FieldDescriptorProtoR\textension\x12\x41\n\x0bnested_type\x18\x03 \x03(\x0b\x32 .google.protobuf.DescriptorProtoR\nnestedType\x12\x41\n\tenum_type\x18\x04 \x03(\x0b\x32$.google.protobuf.EnumDescriptorProtoR\x08\x65numType\x12X\n\x0f\x65xtension_range\x18\x05 \x03(\x0b\x32/.google.protobuf.DescriptorProto.ExtensionRangeR\x0e\x65xtensionRange\x12\x44\n\noneof_decl\x18\x08 \x03(\x0b\x32%.google.protobuf.OneofDescriptorProtoR\toneofDecl\x12\x39\n\x07options\x18\x07 \x01(\x0b\x32\x1f.google.protobuf.MessageOptionsR\x07options\x12U\n\x0ereserved_range\x18\t \x03(\x0b\x32..google.protobuf.DescriptorProto.ReservedRangeR\rreservedRange\x12#\n\rreserved_name\x18\n \x03(\tR\x0creservedName\x1az\n\x0e\x45xtensionRange\x12\x14\n\x05start\x18\x01 \x01(\x05R\x05start\x12\x10\n\x03\x65nd\x18\x02 \x01(\x05R\x03\x65nd\x12@\n\x07options\x18\x03 \x01(\x0b\x32&.google.protobuf.ExtensionRangeOptionsR\x07options\x1a\x37\n\rReservedRange\x12\x14\n\x05start\x18\x01 \x01(\x05R\x05start\x12\x10\n\x03\x65nd\x18\x02 \x01(\x05R\x03\x65nd\"\xcc\x04\n\x15\x45xtensionRangeOptions\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption\x12Y\n\x0b\x64\x65\x63laration\x18\x02 \x03(\x0b\x32\x32.google.protobuf.ExtensionRangeOptions.DeclarationB\x03\x88\x01\x02R\x0b\x64\x65\x63laration\x12\x37\n\x08\x66\x65\x61tures\x18\x32 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12m\n\x0cverification\x18\x03 \x01(\x0e\x32\x38.google.protobuf.ExtensionRangeOptions.VerificationState:\nUNVERIFIEDB\x03\x88\x01\x02R\x0cverification\x1a\x94\x01\n\x0b\x44\x65\x63laration\x12\x16\n\x06number\x18\x01 \x01(\x05R\x06number\x12\x1b\n\tfull_name\x18\x02 \x01(\tR\x08\x66ullName\x12\x12\n\x04type\x18\x03 \x01(\tR\x04type\x12\x1a\n\x08reserved\x18\x05 \x01(\x08R\x08reserved\x12\x1a\n\x08repeated\x18\x06 \x01(\x08R\x08repeatedJ\x04\x08\x04\x10\x05\"4\n\x11VerificationState\x12\x0f\n\x0b\x44\x45\x43LARATION\x10\x00\x12\x0e\n\nUNVERIFIED\x10\x01*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\xc1\x06\n\x14\x46ieldDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x16\n\x06number\x18\x03 \x01(\x05R\x06number\x12\x41\n\x05label\x18\x04 \x01(\x0e\x32+.google.protobuf.FieldDescriptorProto.LabelR\x05label\x12>\n\x04type\x18\x05 \x01(\x0e\x32*.google.protobuf.FieldDescriptorProto.TypeR\x04type\x12\x1b\n\ttype_name\x18\x06 \x01(\tR\x08typeName\x12\x1a\n\x08\x65xtendee\x18\x02 \x01(\tR\x08\x65xtendee\x12#\n\rdefault_value\x18\x07 \x01(\tR\x0c\x64\x65\x66\x61ultValue\x12\x1f\n\x0boneof_index\x18\t \x01(\x05R\noneofIndex\x12\x1b\n\tjson_name\x18\n \x01(\tR\x08jsonName\x12\x37\n\x07options\x18\x08 \x01(\x0b\x32\x1d.google.protobuf.FieldOptionsR\x07options\x12\'\n\x0fproto3_optional\x18\x11 \x01(\x08R\x0eproto3Optional\"\xb6\x02\n\x04Type\x12\x0f\n\x0bTYPE_DOUBLE\x10\x01\x12\x0e\n\nTYPE_FLOAT\x10\x02\x12\x0e\n\nTYPE_INT64\x10\x03\x12\x0f\n\x0bTYPE_UINT64\x10\x04\x12\x0e\n\nTYPE_INT32\x10\x05\x12\x10\n\x0cTYPE_FIXED64\x10\x06\x12\x10\n\x0cTYPE_FIXED32\x10\x07\x12\r\n\tTYPE_BOOL\x10\x08\x12\x0f\n\x0bTYPE_STRING\x10\t\x12\x0e\n\nTYPE_GROUP\x10\n\x12\x10\n\x0cTYPE_MESSAGE\x10\x0b\x12\x0e\n\nTYPE_BYTES\x10\x0c\x12\x0f\n\x0bTYPE_UINT32\x10\r\x12\r\n\tTYPE_ENUM\x10\x0e\x12\x11\n\rTYPE_SFIXED32\x10\x0f\x12\x11\n\rTYPE_SFIXED64\x10\x10\x12\x0f\n\x0bTYPE_SINT32\x10\x11\x12\x0f\n\x0bTYPE_SINT64\x10\x12\"C\n\x05Label\x12\x12\n\x0eLABEL_OPTIONAL\x10\x01\x12\x12\n\x0eLABEL_REPEATED\x10\x03\x12\x12\n\x0eLABEL_REQUIRED\x10\x02\"c\n\x14OneofDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x37\n\x07options\x18\x02 \x01(\x0b\x32\x1d.google.protobuf.OneofOptionsR\x07options\"\xe3\x02\n\x13\x45numDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12?\n\x05value\x18\x02 \x03(\x0b\x32).google.protobuf.EnumValueDescriptorProtoR\x05value\x12\x36\n\x07options\x18\x03 \x01(\x0b\x32\x1c.google.protobuf.EnumOptionsR\x07options\x12]\n\x0ereserved_range\x18\x04 \x03(\x0b\x32\x36.google.protobuf.EnumDescriptorProto.EnumReservedRangeR\rreservedRange\x12#\n\rreserved_name\x18\x05 \x03(\tR\x0creservedName\x1a;\n\x11\x45numReservedRange\x12\x14\n\x05start\x18\x01 \x01(\x05R\x05start\x12\x10\n\x03\x65nd\x18\x02 \x01(\x05R\x03\x65nd\"\x83\x01\n\x18\x45numValueDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x16\n\x06number\x18\x02 \x01(\x05R\x06number\x12;\n\x07options\x18\x03 \x01(\x0b\x32!.google.protobuf.EnumValueOptionsR\x07options\"\xa7\x01\n\x16ServiceDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12>\n\x06method\x18\x02 \x03(\x0b\x32&.google.protobuf.MethodDescriptorProtoR\x06method\x12\x39\n\x07options\x18\x03 \x01(\x0b\x32\x1f.google.protobuf.ServiceOptionsR\x07options\"\x89\x02\n\x15MethodDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1d\n\ninput_type\x18\x02 \x01(\tR\tinputType\x12\x1f\n\x0boutput_type\x18\x03 \x01(\tR\noutputType\x12\x38\n\x07options\x18\x04 \x01(\x0b\x32\x1e.google.protobuf.MethodOptionsR\x07options\x12\x30\n\x10\x63lient_streaming\x18\x05 \x01(\x08:\x05\x66\x61lseR\x0f\x63lientStreaming\x12\x30\n\x10server_streaming\x18\x06 \x01(\x08:\x05\x66\x61lseR\x0fserverStreaming\"\xad\t\n\x0b\x46ileOptions\x12!\n\x0cjava_package\x18\x01 \x01(\tR\x0bjavaPackage\x12\x30\n\x14java_outer_classname\x18\x08 \x01(\tR\x12javaOuterClassname\x12\x35\n\x13java_multiple_files\x18\n \x01(\x08:\x05\x66\x61lseR\x11javaMultipleFiles\x12\x44\n\x1djava_generate_equals_and_hash\x18\x14 \x01(\x08\x42\x02\x18\x01R\x19javaGenerateEqualsAndHash\x12:\n\x16java_string_check_utf8\x18\x1b \x01(\x08:\x05\x66\x61lseR\x13javaStringCheckUtf8\x12S\n\x0coptimize_for\x18\t \x01(\x0e\x32).google.protobuf.FileOptions.OptimizeMode:\x05SPEEDR\x0boptimizeFor\x12\x1d\n\ngo_package\x18\x0b \x01(\tR\tgoPackage\x12\x35\n\x13\x63\x63_generic_services\x18\x10 \x01(\x08:\x05\x66\x61lseR\x11\x63\x63GenericServices\x12\x39\n\x15java_generic_services\x18\x11 \x01(\x08:\x05\x66\x61lseR\x13javaGenericServices\x12\x35\n\x13py_generic_services\x18\x12 \x01(\x08:\x05\x66\x61lseR\x11pyGenericServices\x12%\n\ndeprecated\x18\x17 \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12.\n\x10\x63\x63_enable_arenas\x18\x1f \x01(\x08:\x04trueR\x0e\x63\x63\x45nableArenas\x12*\n\x11objc_class_prefix\x18$ \x01(\tR\x0fobjcClassPrefix\x12)\n\x10\x63sharp_namespace\x18% \x01(\tR\x0f\x63sharpNamespace\x12!\n\x0cswift_prefix\x18\' \x01(\tR\x0bswiftPrefix\x12(\n\x10php_class_prefix\x18( \x01(\tR\x0ephpClassPrefix\x12#\n\rphp_namespace\x18) \x01(\tR\x0cphpNamespace\x12\x34\n\x16php_metadata_namespace\x18, \x01(\tR\x14phpMetadataNamespace\x12!\n\x0cruby_package\x18- \x01(\tR\x0brubyPackage\x12\x37\n\x08\x66\x65\x61tures\x18\x32 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption\":\n\x0cOptimizeMode\x12\t\n\x05SPEED\x10\x01\x12\r\n\tCODE_SIZE\x10\x02\x12\x10\n\x0cLITE_RUNTIME\x10\x03*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02J\x04\x08*\x10+J\x04\x08&\x10\'R\x14php_generic_services\"\xf4\x03\n\x0eMessageOptions\x12<\n\x17message_set_wire_format\x18\x01 \x01(\x08:\x05\x66\x61lseR\x14messageSetWireFormat\x12L\n\x1fno_standard_descriptor_accessor\x18\x02 \x01(\x08:\x05\x66\x61lseR\x1cnoStandardDescriptorAccessor\x12%\n\ndeprecated\x18\x03 \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12\x1b\n\tmap_entry\x18\x07 \x01(\x08R\x08mapEntry\x12V\n&deprecated_legacy_json_field_conflicts\x18\x0b \x01(\x08\x42\x02\x18\x01R\"deprecatedLegacyJsonFieldConflicts\x12\x37\n\x08\x66\x65\x61tures\x18\x0c \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02J\x04\x08\x04\x10\x05J\x04\x08\x05\x10\x06J\x04\x08\x06\x10\x07J\x04\x08\x08\x10\tJ\x04\x08\t\x10\n\"\x9d\r\n\x0c\x46ieldOptions\x12\x41\n\x05\x63type\x18\x01 \x01(\x0e\x32#.google.protobuf.FieldOptions.CType:\x06STRINGR\x05\x63type\x12\x16\n\x06packed\x18\x02 \x01(\x08R\x06packed\x12G\n\x06jstype\x18\x06 \x01(\x0e\x32$.google.protobuf.FieldOptions.JSType:\tJS_NORMALR\x06jstype\x12\x19\n\x04lazy\x18\x05 \x01(\x08:\x05\x66\x61lseR\x04lazy\x12.\n\x0funverified_lazy\x18\x0f \x01(\x08:\x05\x66\x61lseR\x0eunverifiedLazy\x12%\n\ndeprecated\x18\x03 \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12\x19\n\x04weak\x18\n \x01(\x08:\x05\x66\x61lseR\x04weak\x12(\n\x0c\x64\x65\x62ug_redact\x18\x10 \x01(\x08:\x05\x66\x61lseR\x0b\x64\x65\x62ugRedact\x12K\n\tretention\x18\x11 \x01(\x0e\x32-.google.protobuf.FieldOptions.OptionRetentionR\tretention\x12H\n\x07targets\x18\x13 \x03(\x0e\x32..google.protobuf.FieldOptions.OptionTargetTypeR\x07targets\x12W\n\x10\x65\x64ition_defaults\x18\x14 \x03(\x0b\x32,.google.protobuf.FieldOptions.EditionDefaultR\x0f\x65\x64itionDefaults\x12\x37\n\x08\x66\x65\x61tures\x18\x15 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12U\n\x0f\x66\x65\x61ture_support\x18\x16 \x01(\x0b\x32,.google.protobuf.FieldOptions.FeatureSupportR\x0e\x66\x65\x61tureSupport\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption\x1aZ\n\x0e\x45\x64itionDefault\x12\x32\n\x07\x65\x64ition\x18\x03 \x01(\x0e\x32\x18.google.protobuf.EditionR\x07\x65\x64ition\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\x1a\x96\x02\n\x0e\x46\x65\x61tureSupport\x12G\n\x12\x65\x64ition_introduced\x18\x01 \x01(\x0e\x32\x18.google.protobuf.EditionR\x11\x65\x64itionIntroduced\x12G\n\x12\x65\x64ition_deprecated\x18\x02 \x01(\x0e\x32\x18.google.protobuf.EditionR\x11\x65\x64itionDeprecated\x12/\n\x13\x64\x65precation_warning\x18\x03 \x01(\tR\x12\x64\x65precationWarning\x12\x41\n\x0f\x65\x64ition_removed\x18\x04 \x01(\x0e\x32\x18.google.protobuf.EditionR\x0e\x65\x64itionRemoved\"/\n\x05\x43Type\x12\n\n\x06STRING\x10\x00\x12\x08\n\x04\x43ORD\x10\x01\x12\x10\n\x0cSTRING_PIECE\x10\x02\"5\n\x06JSType\x12\r\n\tJS_NORMAL\x10\x00\x12\r\n\tJS_STRING\x10\x01\x12\r\n\tJS_NUMBER\x10\x02\"U\n\x0fOptionRetention\x12\x15\n\x11RETENTION_UNKNOWN\x10\x00\x12\x15\n\x11RETENTION_RUNTIME\x10\x01\x12\x14\n\x10RETENTION_SOURCE\x10\x02\"\x8c\x02\n\x10OptionTargetType\x12\x17\n\x13TARGET_TYPE_UNKNOWN\x10\x00\x12\x14\n\x10TARGET_TYPE_FILE\x10\x01\x12\x1f\n\x1bTARGET_TYPE_EXTENSION_RANGE\x10\x02\x12\x17\n\x13TARGET_TYPE_MESSAGE\x10\x03\x12\x15\n\x11TARGET_TYPE_FIELD\x10\x04\x12\x15\n\x11TARGET_TYPE_ONEOF\x10\x05\x12\x14\n\x10TARGET_TYPE_ENUM\x10\x06\x12\x1a\n\x16TARGET_TYPE_ENUM_ENTRY\x10\x07\x12\x17\n\x13TARGET_TYPE_SERVICE\x10\x08\x12\x16\n\x12TARGET_TYPE_METHOD\x10\t*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02J\x04\x08\x04\x10\x05J\x04\x08\x12\x10\x13\"\xac\x01\n\x0cOneofOptions\x12\x37\n\x08\x66\x65\x61tures\x18\x01 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\xd1\x02\n\x0b\x45numOptions\x12\x1f\n\x0b\x61llow_alias\x18\x02 \x01(\x08R\nallowAlias\x12%\n\ndeprecated\x18\x03 \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12V\n&deprecated_legacy_json_field_conflicts\x18\x06 \x01(\x08\x42\x02\x18\x01R\"deprecatedLegacyJsonFieldConflicts\x12\x37\n\x08\x66\x65\x61tures\x18\x07 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02J\x04\x08\x05\x10\x06\"\xd8\x02\n\x10\x45numValueOptions\x12%\n\ndeprecated\x18\x01 \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12\x37\n\x08\x66\x65\x61tures\x18\x02 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12(\n\x0c\x64\x65\x62ug_redact\x18\x03 \x01(\x08:\x05\x66\x61lseR\x0b\x64\x65\x62ugRedact\x12U\n\x0f\x66\x65\x61ture_support\x18\x04 \x01(\x0b\x32,.google.protobuf.FieldOptions.FeatureSupportR\x0e\x66\x65\x61tureSupport\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\xd5\x01\n\x0eServiceOptions\x12\x37\n\x08\x66\x65\x61tures\x18\" \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12%\n\ndeprecated\x18! \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\x99\x03\n\rMethodOptions\x12%\n\ndeprecated\x18! \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12q\n\x11idempotency_level\x18\" \x01(\x0e\x32/.google.protobuf.MethodOptions.IdempotencyLevel:\x13IDEMPOTENCY_UNKNOWNR\x10idempotencyLevel\x12\x37\n\x08\x66\x65\x61tures\x18# \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption\"P\n\x10IdempotencyLevel\x12\x17\n\x13IDEMPOTENCY_UNKNOWN\x10\x00\x12\x13\n\x0fNO_SIDE_EFFECTS\x10\x01\x12\x0e\n\nIDEMPOTENT\x10\x02*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\x9a\x03\n\x13UninterpretedOption\x12\x41\n\x04name\x18\x02 \x03(\x0b\x32-.google.protobuf.UninterpretedOption.NamePartR\x04name\x12)\n\x10identifier_value\x18\x03 \x01(\tR\x0fidentifierValue\x12,\n\x12positive_int_value\x18\x04 \x01(\x04R\x10positiveIntValue\x12,\n\x12negative_int_value\x18\x05 \x01(\x03R\x10negativeIntValue\x12!\n\x0c\x64ouble_value\x18\x06 \x01(\x01R\x0b\x64oubleValue\x12!\n\x0cstring_value\x18\x07 \x01(\x0cR\x0bstringValue\x12\'\n\x0f\x61ggregate_value\x18\x08 \x01(\tR\x0e\x61ggregateValue\x1aJ\n\x08NamePart\x12\x1b\n\tname_part\x18\x01 \x02(\tR\x08namePart\x12!\n\x0cis_extension\x18\x02 \x02(\x08R\x0bisExtension\"\xae\x0c\n\nFeatureSet\x12\x91\x01\n\x0e\x66ield_presence\x18\x01 \x01(\x0e\x32).google.protobuf.FeatureSet.FieldPresenceB?\x88\x01\x01\x98\x01\x04\x98\x01\x01\xa2\x01\r\x12\x08\x45XPLICIT\x18\x84\x07\xa2\x01\r\x12\x08IMPLICIT\x18\xe7\x07\xa2\x01\r\x12\x08\x45XPLICIT\x18\xe8\x07\xb2\x01\x03\x08\xe8\x07R\rfieldPresence\x12l\n\tenum_type\x18\x02 \x01(\x0e\x32$.google.protobuf.FeatureSet.EnumTypeB)\x88\x01\x01\x98\x01\x06\x98\x01\x01\xa2\x01\x0b\x12\x06\x43LOSED\x18\x84\x07\xa2\x01\t\x12\x04OPEN\x18\xe7\x07\xb2\x01\x03\x08\xe8\x07R\x08\x65numType\x12\x98\x01\n\x17repeated_field_encoding\x18\x03 \x01(\x0e\x32\x31.google.protobuf.FeatureSet.RepeatedFieldEncodingB-\x88\x01\x01\x98\x01\x04\x98\x01\x01\xa2\x01\r\x12\x08\x45XPANDED\x18\x84\x07\xa2\x01\x0b\x12\x06PACKED\x18\xe7\x07\xb2\x01\x03\x08\xe8\x07R\x15repeatedFieldEncoding\x12~\n\x0futf8_validation\x18\x04 \x01(\x0e\x32*.google.protobuf.FeatureSet.Utf8ValidationB)\x88\x01\x01\x98\x01\x04\x98\x01\x01\xa2\x01\t\x12\x04NONE\x18\x84\x07\xa2\x01\x0b\x12\x06VERIFY\x18\xe7\x07\xb2\x01\x03\x08\xe8\x07R\x0eutf8Validation\x12~\n\x10message_encoding\x18\x05 \x01(\x0e\x32+.google.protobuf.FeatureSet.MessageEncodingB&\x88\x01\x01\x98\x01\x04\x98\x01\x01\xa2\x01\x14\x12\x0fLENGTH_PREFIXED\x18\x84\x07\xb2\x01\x03\x08\xe8\x07R\x0fmessageEncoding\x12\x82\x01\n\x0bjson_format\x18\x06 \x01(\x0e\x32&.google.protobuf.FeatureSet.JsonFormatB9\x88\x01\x01\x98\x01\x03\x98\x01\x06\x98\x01\x01\xa2\x01\x17\x12\x12LEGACY_BEST_EFFORT\x18\x84\x07\xa2\x01\n\x12\x05\x41LLOW\x18\xe7\x07\xb2\x01\x03\x08\xe8\x07R\njsonFormat\x12\xab\x01\n\x14\x65nforce_naming_style\x18\x07 \x01(\x0e\x32..google.protobuf.FeatureSet.EnforceNamingStyleBI\x88\x01\x02\x98\x01\x01\x98\x01\x02\x98\x01\x03\x98\x01\x04\x98\x01\x05\x98\x01\x06\x98\x01\x07\x98\x01\x08\x98\x01\t\xa2\x01\x11\x12\x0cSTYLE_LEGACY\x18\x84\x07\xa2\x01\x0e\x12\tSTYLE2024\x18\xe9\x07\xb2\x01\x03\x08\xe9\x07R\x12\x65nforceNamingStyle\"\\\n\rFieldPresence\x12\x1a\n\x16\x46IELD_PRESENCE_UNKNOWN\x10\x00\x12\x0c\n\x08\x45XPLICIT\x10\x01\x12\x0c\n\x08IMPLICIT\x10\x02\x12\x13\n\x0fLEGACY_REQUIRED\x10\x03\"7\n\x08\x45numType\x12\x15\n\x11\x45NUM_TYPE_UNKNOWN\x10\x00\x12\x08\n\x04OPEN\x10\x01\x12\n\n\x06\x43LOSED\x10\x02\"V\n\x15RepeatedFieldEncoding\x12#\n\x1fREPEATED_FIELD_ENCODING_UNKNOWN\x10\x00\x12\n\n\x06PACKED\x10\x01\x12\x0c\n\x08\x45XPANDED\x10\x02\"I\n\x0eUtf8Validation\x12\x1b\n\x17UTF8_VALIDATION_UNKNOWN\x10\x00\x12\n\n\x06VERIFY\x10\x02\x12\x08\n\x04NONE\x10\x03\"\x04\x08\x01\x10\x01\"S\n\x0fMessageEncoding\x12\x1c\n\x18MESSAGE_ENCODING_UNKNOWN\x10\x00\x12\x13\n\x0fLENGTH_PREFIXED\x10\x01\x12\r\n\tDELIMITED\x10\x02\"H\n\nJsonFormat\x12\x17\n\x13JSON_FORMAT_UNKNOWN\x10\x00\x12\t\n\x05\x41LLOW\x10\x01\x12\x16\n\x12LEGACY_BEST_EFFORT\x10\x02\"W\n\x12\x45nforceNamingStyle\x12 \n\x1c\x45NFORCE_NAMING_STYLE_UNKNOWN\x10\x00\x12\r\n\tSTYLE2024\x10\x01\x12\x10\n\x0cSTYLE_LEGACY\x10\x02*\x06\x08\xe8\x07\x10\x8bN*\x06\x08\x8bN\x10\x90N*\x06\x08\x90N\x10\x91NJ\x06\x08\xe7\x07\x10\xe8\x07\"\xef\x03\n\x12\x46\x65\x61tureSetDefaults\x12X\n\x08\x64\x65\x66\x61ults\x18\x01 \x03(\x0b\x32<.google.protobuf.FeatureSetDefaults.FeatureSetEditionDefaultR\x08\x64\x65\x66\x61ults\x12\x41\n\x0fminimum_edition\x18\x04 \x01(\x0e\x32\x18.google.protobuf.EditionR\x0eminimumEdition\x12\x41\n\x0fmaximum_edition\x18\x05 \x01(\x0e\x32\x18.google.protobuf.EditionR\x0emaximumEdition\x1a\xf8\x01\n\x18\x46\x65\x61tureSetEditionDefault\x12\x32\n\x07\x65\x64ition\x18\x03 \x01(\x0e\x32\x18.google.protobuf.EditionR\x07\x65\x64ition\x12N\n\x14overridable_features\x18\x04 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x13overridableFeatures\x12\x42\n\x0e\x66ixed_features\x18\x05 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\rfixedFeaturesJ\x04\x08\x01\x10\x02J\x04\x08\x02\x10\x03R\x08\x66\x65\x61tures\"\xb5\x02\n\x0eSourceCodeInfo\x12\x44\n\x08location\x18\x01 \x03(\x0b\x32(.google.protobuf.SourceCodeInfo.LocationR\x08location\x1a\xce\x01\n\x08Location\x12\x16\n\x04path\x18\x01 \x03(\x05\x42\x02\x10\x01R\x04path\x12\x16\n\x04span\x18\x02 \x03(\x05\x42\x02\x10\x01R\x04span\x12)\n\x10leading_comments\x18\x03 \x01(\tR\x0fleadingComments\x12+\n\x11trailing_comments\x18\x04 \x01(\tR\x10trailingComments\x12:\n\x19leading_detached_comments\x18\x06 \x03(\tR\x17leadingDetachedComments*\x0c\x08\x80\xec\xca\xff\x01\x10\x81\xec\xca\xff\x01\"\xd0\x02\n\x11GeneratedCodeInfo\x12M\n\nannotation\x18\x01 \x03(\x0b\x32-.google.protobuf.GeneratedCodeInfo.AnnotationR\nannotation\x1a\xeb\x01\n\nAnnotation\x12\x16\n\x04path\x18\x01 \x03(\x05\x42\x02\x10\x01R\x04path\x12\x1f\n\x0bsource_file\x18\x02 \x01(\tR\nsourceFile\x12\x14\n\x05\x62\x65gin\x18\x03 \x01(\x05R\x05\x62\x65gin\x12\x10\n\x03\x65nd\x18\x04 \x01(\x05R\x03\x65nd\x12R\n\x08semantic\x18\x05 \x01(\x0e\x32\x36.google.protobuf.GeneratedCodeInfo.Annotation.SemanticR\x08semantic\"(\n\x08Semantic\x12\x08\n\x04NONE\x10\x00\x12\x07\n\x03SET\x10\x01\x12\t\n\x05\x41LIAS\x10\x02*\xa7\x02\n\x07\x45\x64ition\x12\x13\n\x0f\x45\x44ITION_UNKNOWN\x10\x00\x12\x13\n\x0e\x45\x44ITION_LEGACY\x10\x84\x07\x12\x13\n\x0e\x45\x44ITION_PROTO2\x10\xe6\x07\x12\x13\n\x0e\x45\x44ITION_PROTO3\x10\xe7\x07\x12\x11\n\x0c\x45\x44ITION_2023\x10\xe8\x07\x12\x11\n\x0c\x45\x44ITION_2024\x10\xe9\x07\x12\x17\n\x13\x45\x44ITION_1_TEST_ONLY\x10\x01\x12\x17\n\x13\x45\x44ITION_2_TEST_ONLY\x10\x02\x12\x1d\n\x17\x45\x44ITION_99997_TEST_ONLY\x10\x9d\x8d\x06\x12\x1d\n\x17\x45\x44ITION_99998_TEST_ONLY\x10\x9e\x8d\x06\x12\x1d\n\x17\x45\x44ITION_99999_TEST_ONLY\x10\x9f\x8d\x06\x12\x13\n\x0b\x45\x44ITION_MAX\x10\xff\xff\xff\xff\x07\x42~\n\x13\x63om.google.protobufB\x10\x44\x65scriptorProtosH\x01Z-google.golang.org/protobuf/types/descriptorpb\xf8\x01\x01\xa2\x02\x03GPB\xaa\x02\x1aGoogle.Protobuf.Reflection') + DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n google/protobuf/descriptor.proto\x12\x0fgoogle.protobuf\"[\n\x11\x46ileDescriptorSet\x12\x38\n\x04\x66ile\x18\x01 \x03(\x0b\x32$.google.protobuf.FileDescriptorProtoR\x04\x66ile*\x0c\x08\x80\xec\xca\xff\x01\x10\x81\xec\xca\xff\x01\"\x98\x05\n\x13\x46ileDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x18\n\x07package\x18\x02 \x01(\tR\x07package\x12\x1e\n\ndependency\x18\x03 \x03(\tR\ndependency\x12+\n\x11public_dependency\x18\n \x03(\x05R\x10publicDependency\x12\'\n\x0fweak_dependency\x18\x0b \x03(\x05R\x0eweakDependency\x12\x43\n\x0cmessage_type\x18\x04 \x03(\x0b\x32 .google.protobuf.DescriptorProtoR\x0bmessageType\x12\x41\n\tenum_type\x18\x05 \x03(\x0b\x32$.google.protobuf.EnumDescriptorProtoR\x08\x65numType\x12\x41\n\x07service\x18\x06 \x03(\x0b\x32\'.google.protobuf.ServiceDescriptorProtoR\x07service\x12\x43\n\textension\x18\x07 \x03(\x0b\x32%.google.protobuf.FieldDescriptorProtoR\textension\x12\x36\n\x07options\x18\x08 \x01(\x0b\x32\x1c.google.protobuf.FileOptionsR\x07options\x12I\n\x10source_code_info\x18\t \x01(\x0b\x32\x1f.google.protobuf.SourceCodeInfoR\x0esourceCodeInfo\x12\x16\n\x06syntax\x18\x0c \x01(\tR\x06syntax\x12\x32\n\x07\x65\x64ition\x18\x0e \x01(\x0e\x32\x18.google.protobuf.EditionR\x07\x65\x64ition\"\xb9\x06\n\x0f\x44\x65scriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12;\n\x05\x66ield\x18\x02 \x03(\x0b\x32%.google.protobuf.FieldDescriptorProtoR\x05\x66ield\x12\x43\n\textension\x18\x06 \x03(\x0b\x32%.google.protobuf.FieldDescriptorProtoR\textension\x12\x41\n\x0bnested_type\x18\x03 \x03(\x0b\x32 .google.protobuf.DescriptorProtoR\nnestedType\x12\x41\n\tenum_type\x18\x04 \x03(\x0b\x32$.google.protobuf.EnumDescriptorProtoR\x08\x65numType\x12X\n\x0f\x65xtension_range\x18\x05 \x03(\x0b\x32/.google.protobuf.DescriptorProto.ExtensionRangeR\x0e\x65xtensionRange\x12\x44\n\noneof_decl\x18\x08 \x03(\x0b\x32%.google.protobuf.OneofDescriptorProtoR\toneofDecl\x12\x39\n\x07options\x18\x07 \x01(\x0b\x32\x1f.google.protobuf.MessageOptionsR\x07options\x12U\n\x0ereserved_range\x18\t \x03(\x0b\x32..google.protobuf.DescriptorProto.ReservedRangeR\rreservedRange\x12#\n\rreserved_name\x18\n \x03(\tR\x0creservedName\x1az\n\x0e\x45xtensionRange\x12\x14\n\x05start\x18\x01 \x01(\x05R\x05start\x12\x10\n\x03\x65nd\x18\x02 \x01(\x05R\x03\x65nd\x12@\n\x07options\x18\x03 \x01(\x0b\x32&.google.protobuf.ExtensionRangeOptionsR\x07options\x1a\x37\n\rReservedRange\x12\x14\n\x05start\x18\x01 \x01(\x05R\x05start\x12\x10\n\x03\x65nd\x18\x02 \x01(\x05R\x03\x65nd\"\xcc\x04\n\x15\x45xtensionRangeOptions\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption\x12Y\n\x0b\x64\x65\x63laration\x18\x02 \x03(\x0b\x32\x32.google.protobuf.ExtensionRangeOptions.DeclarationB\x03\x88\x01\x02R\x0b\x64\x65\x63laration\x12\x37\n\x08\x66\x65\x61tures\x18\x32 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12m\n\x0cverification\x18\x03 \x01(\x0e\x32\x38.google.protobuf.ExtensionRangeOptions.VerificationState:\nUNVERIFIEDB\x03\x88\x01\x02R\x0cverification\x1a\x94\x01\n\x0b\x44\x65\x63laration\x12\x16\n\x06number\x18\x01 \x01(\x05R\x06number\x12\x1b\n\tfull_name\x18\x02 \x01(\tR\x08\x66ullName\x12\x12\n\x04type\x18\x03 \x01(\tR\x04type\x12\x1a\n\x08reserved\x18\x05 \x01(\x08R\x08reserved\x12\x1a\n\x08repeated\x18\x06 \x01(\x08R\x08repeatedJ\x04\x08\x04\x10\x05\"4\n\x11VerificationState\x12\x0f\n\x0b\x44\x45\x43LARATION\x10\x00\x12\x0e\n\nUNVERIFIED\x10\x01*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\xc1\x06\n\x14\x46ieldDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x16\n\x06number\x18\x03 \x01(\x05R\x06number\x12\x41\n\x05label\x18\x04 \x01(\x0e\x32+.google.protobuf.FieldDescriptorProto.LabelR\x05label\x12>\n\x04type\x18\x05 \x01(\x0e\x32*.google.protobuf.FieldDescriptorProto.TypeR\x04type\x12\x1b\n\ttype_name\x18\x06 \x01(\tR\x08typeName\x12\x1a\n\x08\x65xtendee\x18\x02 \x01(\tR\x08\x65xtendee\x12#\n\rdefault_value\x18\x07 \x01(\tR\x0c\x64\x65\x66\x61ultValue\x12\x1f\n\x0boneof_index\x18\t \x01(\x05R\noneofIndex\x12\x1b\n\tjson_name\x18\n \x01(\tR\x08jsonName\x12\x37\n\x07options\x18\x08 \x01(\x0b\x32\x1d.google.protobuf.FieldOptionsR\x07options\x12\'\n\x0fproto3_optional\x18\x11 \x01(\x08R\x0eproto3Optional\"\xb6\x02\n\x04Type\x12\x0f\n\x0bTYPE_DOUBLE\x10\x01\x12\x0e\n\nTYPE_FLOAT\x10\x02\x12\x0e\n\nTYPE_INT64\x10\x03\x12\x0f\n\x0bTYPE_UINT64\x10\x04\x12\x0e\n\nTYPE_INT32\x10\x05\x12\x10\n\x0cTYPE_FIXED64\x10\x06\x12\x10\n\x0cTYPE_FIXED32\x10\x07\x12\r\n\tTYPE_BOOL\x10\x08\x12\x0f\n\x0bTYPE_STRING\x10\t\x12\x0e\n\nTYPE_GROUP\x10\n\x12\x10\n\x0cTYPE_MESSAGE\x10\x0b\x12\x0e\n\nTYPE_BYTES\x10\x0c\x12\x0f\n\x0bTYPE_UINT32\x10\r\x12\r\n\tTYPE_ENUM\x10\x0e\x12\x11\n\rTYPE_SFIXED32\x10\x0f\x12\x11\n\rTYPE_SFIXED64\x10\x10\x12\x0f\n\x0bTYPE_SINT32\x10\x11\x12\x0f\n\x0bTYPE_SINT64\x10\x12\"C\n\x05Label\x12\x12\n\x0eLABEL_OPTIONAL\x10\x01\x12\x12\n\x0eLABEL_REPEATED\x10\x03\x12\x12\n\x0eLABEL_REQUIRED\x10\x02\"c\n\x14OneofDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x37\n\x07options\x18\x02 \x01(\x0b\x32\x1d.google.protobuf.OneofOptionsR\x07options\"\xe3\x02\n\x13\x45numDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12?\n\x05value\x18\x02 \x03(\x0b\x32).google.protobuf.EnumValueDescriptorProtoR\x05value\x12\x36\n\x07options\x18\x03 \x01(\x0b\x32\x1c.google.protobuf.EnumOptionsR\x07options\x12]\n\x0ereserved_range\x18\x04 \x03(\x0b\x32\x36.google.protobuf.EnumDescriptorProto.EnumReservedRangeR\rreservedRange\x12#\n\rreserved_name\x18\x05 \x03(\tR\x0creservedName\x1a;\n\x11\x45numReservedRange\x12\x14\n\x05start\x18\x01 \x01(\x05R\x05start\x12\x10\n\x03\x65nd\x18\x02 \x01(\x05R\x03\x65nd\"\x83\x01\n\x18\x45numValueDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x16\n\x06number\x18\x02 \x01(\x05R\x06number\x12;\n\x07options\x18\x03 \x01(\x0b\x32!.google.protobuf.EnumValueOptionsR\x07options\"\xa7\x01\n\x16ServiceDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12>\n\x06method\x18\x02 \x03(\x0b\x32&.google.protobuf.MethodDescriptorProtoR\x06method\x12\x39\n\x07options\x18\x03 \x01(\x0b\x32\x1f.google.protobuf.ServiceOptionsR\x07options\"\x89\x02\n\x15MethodDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1d\n\ninput_type\x18\x02 \x01(\tR\tinputType\x12\x1f\n\x0boutput_type\x18\x03 \x01(\tR\noutputType\x12\x38\n\x07options\x18\x04 \x01(\x0b\x32\x1e.google.protobuf.MethodOptionsR\x07options\x12\x30\n\x10\x63lient_streaming\x18\x05 \x01(\x08:\x05\x66\x61lseR\x0f\x63lientStreaming\x12\x30\n\x10server_streaming\x18\x06 \x01(\x08:\x05\x66\x61lseR\x0fserverStreaming\"\xad\t\n\x0b\x46ileOptions\x12!\n\x0cjava_package\x18\x01 \x01(\tR\x0bjavaPackage\x12\x30\n\x14java_outer_classname\x18\x08 \x01(\tR\x12javaOuterClassname\x12\x35\n\x13java_multiple_files\x18\n \x01(\x08:\x05\x66\x61lseR\x11javaMultipleFiles\x12\x44\n\x1djava_generate_equals_and_hash\x18\x14 \x01(\x08\x42\x02\x18\x01R\x19javaGenerateEqualsAndHash\x12:\n\x16java_string_check_utf8\x18\x1b \x01(\x08:\x05\x66\x61lseR\x13javaStringCheckUtf8\x12S\n\x0coptimize_for\x18\t \x01(\x0e\x32).google.protobuf.FileOptions.OptimizeMode:\x05SPEEDR\x0boptimizeFor\x12\x1d\n\ngo_package\x18\x0b \x01(\tR\tgoPackage\x12\x35\n\x13\x63\x63_generic_services\x18\x10 \x01(\x08:\x05\x66\x61lseR\x11\x63\x63GenericServices\x12\x39\n\x15java_generic_services\x18\x11 \x01(\x08:\x05\x66\x61lseR\x13javaGenericServices\x12\x35\n\x13py_generic_services\x18\x12 \x01(\x08:\x05\x66\x61lseR\x11pyGenericServices\x12%\n\ndeprecated\x18\x17 \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12.\n\x10\x63\x63_enable_arenas\x18\x1f \x01(\x08:\x04trueR\x0e\x63\x63\x45nableArenas\x12*\n\x11objc_class_prefix\x18$ \x01(\tR\x0fobjcClassPrefix\x12)\n\x10\x63sharp_namespace\x18% \x01(\tR\x0f\x63sharpNamespace\x12!\n\x0cswift_prefix\x18\' \x01(\tR\x0bswiftPrefix\x12(\n\x10php_class_prefix\x18( \x01(\tR\x0ephpClassPrefix\x12#\n\rphp_namespace\x18) \x01(\tR\x0cphpNamespace\x12\x34\n\x16php_metadata_namespace\x18, \x01(\tR\x14phpMetadataNamespace\x12!\n\x0cruby_package\x18- \x01(\tR\x0brubyPackage\x12\x37\n\x08\x66\x65\x61tures\x18\x32 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption\":\n\x0cOptimizeMode\x12\t\n\x05SPEED\x10\x01\x12\r\n\tCODE_SIZE\x10\x02\x12\x10\n\x0cLITE_RUNTIME\x10\x03*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02J\x04\x08*\x10+J\x04\x08&\x10\'R\x14php_generic_services\"\xf4\x03\n\x0eMessageOptions\x12<\n\x17message_set_wire_format\x18\x01 \x01(\x08:\x05\x66\x61lseR\x14messageSetWireFormat\x12L\n\x1fno_standard_descriptor_accessor\x18\x02 \x01(\x08:\x05\x66\x61lseR\x1cnoStandardDescriptorAccessor\x12%\n\ndeprecated\x18\x03 \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12\x1b\n\tmap_entry\x18\x07 \x01(\x08R\x08mapEntry\x12V\n&deprecated_legacy_json_field_conflicts\x18\x0b \x01(\x08\x42\x02\x18\x01R\"deprecatedLegacyJsonFieldConflicts\x12\x37\n\x08\x66\x65\x61tures\x18\x0c \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02J\x04\x08\x04\x10\x05J\x04\x08\x05\x10\x06J\x04\x08\x06\x10\x07J\x04\x08\x08\x10\tJ\x04\x08\t\x10\n\"\x9d\r\n\x0c\x46ieldOptions\x12\x41\n\x05\x63type\x18\x01 \x01(\x0e\x32#.google.protobuf.FieldOptions.CType:\x06STRINGR\x05\x63type\x12\x16\n\x06packed\x18\x02 \x01(\x08R\x06packed\x12G\n\x06jstype\x18\x06 \x01(\x0e\x32$.google.protobuf.FieldOptions.JSType:\tJS_NORMALR\x06jstype\x12\x19\n\x04lazy\x18\x05 \x01(\x08:\x05\x66\x61lseR\x04lazy\x12.\n\x0funverified_lazy\x18\x0f \x01(\x08:\x05\x66\x61lseR\x0eunverifiedLazy\x12%\n\ndeprecated\x18\x03 \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12\x19\n\x04weak\x18\n \x01(\x08:\x05\x66\x61lseR\x04weak\x12(\n\x0c\x64\x65\x62ug_redact\x18\x10 \x01(\x08:\x05\x66\x61lseR\x0b\x64\x65\x62ugRedact\x12K\n\tretention\x18\x11 \x01(\x0e\x32-.google.protobuf.FieldOptions.OptionRetentionR\tretention\x12H\n\x07targets\x18\x13 \x03(\x0e\x32..google.protobuf.FieldOptions.OptionTargetTypeR\x07targets\x12W\n\x10\x65\x64ition_defaults\x18\x14 \x03(\x0b\x32,.google.protobuf.FieldOptions.EditionDefaultR\x0f\x65\x64itionDefaults\x12\x37\n\x08\x66\x65\x61tures\x18\x15 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12U\n\x0f\x66\x65\x61ture_support\x18\x16 \x01(\x0b\x32,.google.protobuf.FieldOptions.FeatureSupportR\x0e\x66\x65\x61tureSupport\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption\x1aZ\n\x0e\x45\x64itionDefault\x12\x32\n\x07\x65\x64ition\x18\x03 \x01(\x0e\x32\x18.google.protobuf.EditionR\x07\x65\x64ition\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\x1a\x96\x02\n\x0e\x46\x65\x61tureSupport\x12G\n\x12\x65\x64ition_introduced\x18\x01 \x01(\x0e\x32\x18.google.protobuf.EditionR\x11\x65\x64itionIntroduced\x12G\n\x12\x65\x64ition_deprecated\x18\x02 \x01(\x0e\x32\x18.google.protobuf.EditionR\x11\x65\x64itionDeprecated\x12/\n\x13\x64\x65precation_warning\x18\x03 \x01(\tR\x12\x64\x65precationWarning\x12\x41\n\x0f\x65\x64ition_removed\x18\x04 \x01(\x0e\x32\x18.google.protobuf.EditionR\x0e\x65\x64itionRemoved\"/\n\x05\x43Type\x12\n\n\x06STRING\x10\x00\x12\x08\n\x04\x43ORD\x10\x01\x12\x10\n\x0cSTRING_PIECE\x10\x02\"5\n\x06JSType\x12\r\n\tJS_NORMAL\x10\x00\x12\r\n\tJS_STRING\x10\x01\x12\r\n\tJS_NUMBER\x10\x02\"U\n\x0fOptionRetention\x12\x15\n\x11RETENTION_UNKNOWN\x10\x00\x12\x15\n\x11RETENTION_RUNTIME\x10\x01\x12\x14\n\x10RETENTION_SOURCE\x10\x02\"\x8c\x02\n\x10OptionTargetType\x12\x17\n\x13TARGET_TYPE_UNKNOWN\x10\x00\x12\x14\n\x10TARGET_TYPE_FILE\x10\x01\x12\x1f\n\x1bTARGET_TYPE_EXTENSION_RANGE\x10\x02\x12\x17\n\x13TARGET_TYPE_MESSAGE\x10\x03\x12\x15\n\x11TARGET_TYPE_FIELD\x10\x04\x12\x15\n\x11TARGET_TYPE_ONEOF\x10\x05\x12\x14\n\x10TARGET_TYPE_ENUM\x10\x06\x12\x1a\n\x16TARGET_TYPE_ENUM_ENTRY\x10\x07\x12\x17\n\x13TARGET_TYPE_SERVICE\x10\x08\x12\x16\n\x12TARGET_TYPE_METHOD\x10\t*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02J\x04\x08\x04\x10\x05J\x04\x08\x12\x10\x13\"\xac\x01\n\x0cOneofOptions\x12\x37\n\x08\x66\x65\x61tures\x18\x01 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\xd1\x02\n\x0b\x45numOptions\x12\x1f\n\x0b\x61llow_alias\x18\x02 \x01(\x08R\nallowAlias\x12%\n\ndeprecated\x18\x03 \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12V\n&deprecated_legacy_json_field_conflicts\x18\x06 \x01(\x08\x42\x02\x18\x01R\"deprecatedLegacyJsonFieldConflicts\x12\x37\n\x08\x66\x65\x61tures\x18\x07 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02J\x04\x08\x05\x10\x06\"\xd8\x02\n\x10\x45numValueOptions\x12%\n\ndeprecated\x18\x01 \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12\x37\n\x08\x66\x65\x61tures\x18\x02 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12(\n\x0c\x64\x65\x62ug_redact\x18\x03 \x01(\x08:\x05\x66\x61lseR\x0b\x64\x65\x62ugRedact\x12U\n\x0f\x66\x65\x61ture_support\x18\x04 \x01(\x0b\x32,.google.protobuf.FieldOptions.FeatureSupportR\x0e\x66\x65\x61tureSupport\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\xd5\x01\n\x0eServiceOptions\x12\x37\n\x08\x66\x65\x61tures\x18\" \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12%\n\ndeprecated\x18! \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\x99\x03\n\rMethodOptions\x12%\n\ndeprecated\x18! \x01(\x08:\x05\x66\x61lseR\ndeprecated\x12q\n\x11idempotency_level\x18\" \x01(\x0e\x32/.google.protobuf.MethodOptions.IdempotencyLevel:\x13IDEMPOTENCY_UNKNOWNR\x10idempotencyLevel\x12\x37\n\x08\x66\x65\x61tures\x18# \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x08\x66\x65\x61tures\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b\x32$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption\"P\n\x10IdempotencyLevel\x12\x17\n\x13IDEMPOTENCY_UNKNOWN\x10\x00\x12\x13\n\x0fNO_SIDE_EFFECTS\x10\x01\x12\x0e\n\nIDEMPOTENT\x10\x02*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\x9a\x03\n\x13UninterpretedOption\x12\x41\n\x04name\x18\x02 \x03(\x0b\x32-.google.protobuf.UninterpretedOption.NamePartR\x04name\x12)\n\x10identifier_value\x18\x03 \x01(\tR\x0fidentifierValue\x12,\n\x12positive_int_value\x18\x04 \x01(\x04R\x10positiveIntValue\x12,\n\x12negative_int_value\x18\x05 \x01(\x03R\x10negativeIntValue\x12!\n\x0c\x64ouble_value\x18\x06 \x01(\x01R\x0b\x64oubleValue\x12!\n\x0cstring_value\x18\x07 \x01(\x0cR\x0bstringValue\x12\'\n\x0f\x61ggregate_value\x18\x08 \x01(\tR\x0e\x61ggregateValue\x1aJ\n\x08NamePart\x12\x1b\n\tname_part\x18\x01 \x02(\tR\x08namePart\x12!\n\x0cis_extension\x18\x02 \x02(\x08R\x0bisExtension\"\xa7\n\n\nFeatureSet\x12\x91\x01\n\x0e\x66ield_presence\x18\x01 \x01(\x0e\x32).google.protobuf.FeatureSet.FieldPresenceB?\x88\x01\x01\x98\x01\x04\x98\x01\x01\xa2\x01\r\x12\x08\x45XPLICIT\x18\x84\x07\xa2\x01\r\x12\x08IMPLICIT\x18\xe7\x07\xa2\x01\r\x12\x08\x45XPLICIT\x18\xe8\x07\xb2\x01\x03\x08\xe8\x07R\rfieldPresence\x12l\n\tenum_type\x18\x02 \x01(\x0e\x32$.google.protobuf.FeatureSet.EnumTypeB)\x88\x01\x01\x98\x01\x06\x98\x01\x01\xa2\x01\x0b\x12\x06\x43LOSED\x18\x84\x07\xa2\x01\t\x12\x04OPEN\x18\xe7\x07\xb2\x01\x03\x08\xe8\x07R\x08\x65numType\x12\x98\x01\n\x17repeated_field_encoding\x18\x03 \x01(\x0e\x32\x31.google.protobuf.FeatureSet.RepeatedFieldEncodingB-\x88\x01\x01\x98\x01\x04\x98\x01\x01\xa2\x01\r\x12\x08\x45XPANDED\x18\x84\x07\xa2\x01\x0b\x12\x06PACKED\x18\xe7\x07\xb2\x01\x03\x08\xe8\x07R\x15repeatedFieldEncoding\x12~\n\x0futf8_validation\x18\x04 \x01(\x0e\x32*.google.protobuf.FeatureSet.Utf8ValidationB)\x88\x01\x01\x98\x01\x04\x98\x01\x01\xa2\x01\t\x12\x04NONE\x18\x84\x07\xa2\x01\x0b\x12\x06VERIFY\x18\xe7\x07\xb2\x01\x03\x08\xe8\x07R\x0eutf8Validation\x12~\n\x10message_encoding\x18\x05 \x01(\x0e\x32+.google.protobuf.FeatureSet.MessageEncodingB&\x88\x01\x01\x98\x01\x04\x98\x01\x01\xa2\x01\x14\x12\x0fLENGTH_PREFIXED\x18\x84\x07\xb2\x01\x03\x08\xe8\x07R\x0fmessageEncoding\x12\x82\x01\n\x0bjson_format\x18\x06 \x01(\x0e\x32&.google.protobuf.FeatureSet.JsonFormatB9\x88\x01\x01\x98\x01\x03\x98\x01\x06\x98\x01\x01\xa2\x01\x17\x12\x12LEGACY_BEST_EFFORT\x18\x84\x07\xa2\x01\n\x12\x05\x41LLOW\x18\xe7\x07\xb2\x01\x03\x08\xe8\x07R\njsonFormat\"\\\n\rFieldPresence\x12\x1a\n\x16\x46IELD_PRESENCE_UNKNOWN\x10\x00\x12\x0c\n\x08\x45XPLICIT\x10\x01\x12\x0c\n\x08IMPLICIT\x10\x02\x12\x13\n\x0fLEGACY_REQUIRED\x10\x03\"7\n\x08\x45numType\x12\x15\n\x11\x45NUM_TYPE_UNKNOWN\x10\x00\x12\x08\n\x04OPEN\x10\x01\x12\n\n\x06\x43LOSED\x10\x02\"V\n\x15RepeatedFieldEncoding\x12#\n\x1fREPEATED_FIELD_ENCODING_UNKNOWN\x10\x00\x12\n\n\x06PACKED\x10\x01\x12\x0c\n\x08\x45XPANDED\x10\x02\"I\n\x0eUtf8Validation\x12\x1b\n\x17UTF8_VALIDATION_UNKNOWN\x10\x00\x12\n\n\x06VERIFY\x10\x02\x12\x08\n\x04NONE\x10\x03\"\x04\x08\x01\x10\x01\"S\n\x0fMessageEncoding\x12\x1c\n\x18MESSAGE_ENCODING_UNKNOWN\x10\x00\x12\x13\n\x0fLENGTH_PREFIXED\x10\x01\x12\r\n\tDELIMITED\x10\x02\"H\n\nJsonFormat\x12\x17\n\x13JSON_FORMAT_UNKNOWN\x10\x00\x12\t\n\x05\x41LLOW\x10\x01\x12\x16\n\x12LEGACY_BEST_EFFORT\x10\x02*\x06\x08\xe8\x07\x10\x8bN*\x06\x08\x8bN\x10\x90N*\x06\x08\x90N\x10\x91NJ\x06\x08\xe7\x07\x10\xe8\x07\"\xef\x03\n\x12\x46\x65\x61tureSetDefaults\x12X\n\x08\x64\x65\x66\x61ults\x18\x01 \x03(\x0b\x32<.google.protobuf.FeatureSetDefaults.FeatureSetEditionDefaultR\x08\x64\x65\x66\x61ults\x12\x41\n\x0fminimum_edition\x18\x04 \x01(\x0e\x32\x18.google.protobuf.EditionR\x0eminimumEdition\x12\x41\n\x0fmaximum_edition\x18\x05 \x01(\x0e\x32\x18.google.protobuf.EditionR\x0emaximumEdition\x1a\xf8\x01\n\x18\x46\x65\x61tureSetEditionDefault\x12\x32\n\x07\x65\x64ition\x18\x03 \x01(\x0e\x32\x18.google.protobuf.EditionR\x07\x65\x64ition\x12N\n\x14overridable_features\x18\x04 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\x13overridableFeatures\x12\x42\n\x0e\x66ixed_features\x18\x05 \x01(\x0b\x32\x1b.google.protobuf.FeatureSetR\rfixedFeaturesJ\x04\x08\x01\x10\x02J\x04\x08\x02\x10\x03R\x08\x66\x65\x61tures\"\xb5\x02\n\x0eSourceCodeInfo\x12\x44\n\x08location\x18\x01 \x03(\x0b\x32(.google.protobuf.SourceCodeInfo.LocationR\x08location\x1a\xce\x01\n\x08Location\x12\x16\n\x04path\x18\x01 \x03(\x05\x42\x02\x10\x01R\x04path\x12\x16\n\x04span\x18\x02 \x03(\x05\x42\x02\x10\x01R\x04span\x12)\n\x10leading_comments\x18\x03 \x01(\tR\x0fleadingComments\x12+\n\x11trailing_comments\x18\x04 \x01(\tR\x10trailingComments\x12:\n\x19leading_detached_comments\x18\x06 \x03(\tR\x17leadingDetachedComments*\x0c\x08\x80\xec\xca\xff\x01\x10\x81\xec\xca\xff\x01\"\xd0\x02\n\x11GeneratedCodeInfo\x12M\n\nannotation\x18\x01 \x03(\x0b\x32-.google.protobuf.GeneratedCodeInfo.AnnotationR\nannotation\x1a\xeb\x01\n\nAnnotation\x12\x16\n\x04path\x18\x01 \x03(\x05\x42\x02\x10\x01R\x04path\x12\x1f\n\x0bsource_file\x18\x02 \x01(\tR\nsourceFile\x12\x14\n\x05\x62\x65gin\x18\x03 \x01(\x05R\x05\x62\x65gin\x12\x10\n\x03\x65nd\x18\x04 \x01(\x05R\x03\x65nd\x12R\n\x08semantic\x18\x05 \x01(\x0e\x32\x36.google.protobuf.GeneratedCodeInfo.Annotation.SemanticR\x08semantic\"(\n\x08Semantic\x12\x08\n\x04NONE\x10\x00\x12\x07\n\x03SET\x10\x01\x12\t\n\x05\x41LIAS\x10\x02*\xa7\x02\n\x07\x45\x64ition\x12\x13\n\x0f\x45\x44ITION_UNKNOWN\x10\x00\x12\x13\n\x0e\x45\x44ITION_LEGACY\x10\x84\x07\x12\x13\n\x0e\x45\x44ITION_PROTO2\x10\xe6\x07\x12\x13\n\x0e\x45\x44ITION_PROTO3\x10\xe7\x07\x12\x11\n\x0c\x45\x44ITION_2023\x10\xe8\x07\x12\x11\n\x0c\x45\x44ITION_2024\x10\xe9\x07\x12\x17\n\x13\x45\x44ITION_1_TEST_ONLY\x10\x01\x12\x17\n\x13\x45\x44ITION_2_TEST_ONLY\x10\x02\x12\x1d\n\x17\x45\x44ITION_99997_TEST_ONLY\x10\x9d\x8d\x06\x12\x1d\n\x17\x45\x44ITION_99998_TEST_ONLY\x10\x9e\x8d\x06\x12\x1d\n\x17\x45\x44ITION_99999_TEST_ONLY\x10\x9f\x8d\x06\x12\x13\n\x0b\x45\x44ITION_MAX\x10\xff\xff\xff\xff\x07\x42~\n\x13\x63om.google.protobufB\x10\x44\x65scriptorProtosH\x01Z-google.golang.org/protobuf/types/descriptorpb\xf8\x01\x01\xa2\x02\x03GPB\xaa\x02\x1aGoogle.Protobuf.Reflection') _globals = globals() if not _descriptor._USE_C_DESCRIPTORS: @@ -642,34 +642,6 @@ if not _descriptor._USE_C_DESCRIPTORS: ) _sym_db.RegisterEnumDescriptor(_FEATURESET_JSONFORMAT) - _FEATURESET_ENFORCENAMINGSTYLE = _descriptor.EnumDescriptor( - name='EnforceNamingStyle', - full_name='google.protobuf.FeatureSet.EnforceNamingStyle', - filename=None, - file=DESCRIPTOR, - create_key=_descriptor._internal_create_key, - values=[ - _descriptor.EnumValueDescriptor( - name='ENFORCE_NAMING_STYLE_UNKNOWN', index=0, number=0, - serialized_options=None, - type=None, - create_key=_descriptor._internal_create_key), - _descriptor.EnumValueDescriptor( - name='STYLE2024', index=1, number=1, - serialized_options=None, - type=None, - create_key=_descriptor._internal_create_key), - _descriptor.EnumValueDescriptor( - name='STYLE_LEGACY', index=2, number=2, - serialized_options=None, - type=None, - create_key=_descriptor._internal_create_key), - ], - containing_type=None, - serialized_options=None, - ) - _sym_db.RegisterEnumDescriptor(_FEATURESET_ENFORCENAMINGSTYLE) - _GENERATEDCODEINFO_ANNOTATION_SEMANTIC = _descriptor.EnumDescriptor( name='Semantic', full_name='google.protobuf.GeneratedCodeInfo.Annotation.Semantic', @@ -2345,13 +2317,6 @@ if not _descriptor._USE_C_DESCRIPTORS: message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=b'\210\001\001\230\001\003\230\001\006\230\001\001\242\001\027\022\022LEGACY_BEST_EFFORT\030\204\007\242\001\n\022\005ALLOW\030\347\007\262\001\003\010\350\007', json_name='jsonFormat', file=DESCRIPTOR, create_key=_descriptor._internal_create_key), - _descriptor.FieldDescriptor( - name='enforce_naming_style', full_name='google.protobuf.FeatureSet.enforce_naming_style', index=6, - number=7, type=14, cpp_type=8, label=1, - has_default_value=False, default_value=0, - message_type=None, enum_type=None, containing_type=None, - is_extension=False, extension_scope=None, - serialized_options=b'\210\001\002\230\001\001\230\001\002\230\001\003\230\001\004\230\001\005\230\001\006\230\001\007\230\001\010\230\001\t\242\001\021\022\014STYLE_LEGACY\030\204\007\242\001\016\022\tSTYLE2024\030\351\007\262\001\003\010\351\007', json_name='enforceNamingStyle', file=DESCRIPTOR, create_key=_descriptor._internal_create_key), ], extensions=[ ], @@ -2363,7 +2328,6 @@ if not _descriptor._USE_C_DESCRIPTORS: _FEATURESET_UTF8VALIDATION, _FEATURESET_MESSAGEENCODING, _FEATURESET_JSONFORMAT, - _FEATURESET_ENFORCENAMINGSTYLE, ], serialized_options=None, is_extendable=True, @@ -2712,14 +2676,12 @@ if not _descriptor._USE_C_DESCRIPTORS: _FEATURESET.fields_by_name['utf8_validation'].enum_type = _FEATURESET_UTF8VALIDATION _FEATURESET.fields_by_name['message_encoding'].enum_type = _FEATURESET_MESSAGEENCODING _FEATURESET.fields_by_name['json_format'].enum_type = _FEATURESET_JSONFORMAT - _FEATURESET.fields_by_name['enforce_naming_style'].enum_type = _FEATURESET_ENFORCENAMINGSTYLE _FEATURESET_FIELDPRESENCE.containing_type = _FEATURESET _FEATURESET_ENUMTYPE.containing_type = _FEATURESET _FEATURESET_REPEATEDFIELDENCODING.containing_type = _FEATURESET _FEATURESET_UTF8VALIDATION.containing_type = _FEATURESET _FEATURESET_MESSAGEENCODING.containing_type = _FEATURESET _FEATURESET_JSONFORMAT.containing_type = _FEATURESET - _FEATURESET_ENFORCENAMINGSTYLE.containing_type = _FEATURESET _FEATURESETDEFAULTS_FEATURESETEDITIONDEFAULT.fields_by_name['edition'].enum_type = _EDITION _FEATURESETDEFAULTS_FEATURESETEDITIONDEFAULT.fields_by_name['overridable_features'].message_type = _FEATURESET _FEATURESETDEFAULTS_FEATURESETEDITIONDEFAULT.fields_by_name['fixed_features'].message_type = _FEATURESET @@ -2947,7 +2909,6 @@ if not _descriptor._USE_C_DESCRIPTORS: _FEATURESET.fields[3]._features = _ResolvedFeatures(field_presence=_FEATURESET_FIELDPRESENCE.values_by_name["EXPLICIT"].number,enum_type=_FEATURESET_ENUMTYPE.values_by_name["CLOSED"].number,repeated_field_encoding=_FEATURESET_REPEATEDFIELDENCODING.values_by_name["EXPANDED"].number,utf8_validation=_FEATURESET_UTF8VALIDATION.values_by_name["NONE"].number,message_encoding=_FEATURESET_MESSAGEENCODING.values_by_name["LENGTH_PREFIXED"].number,json_format=_FEATURESET_JSONFORMAT.values_by_name["LEGACY_BEST_EFFORT"].number) _FEATURESET.fields[4]._features = _ResolvedFeatures(field_presence=_FEATURESET_FIELDPRESENCE.values_by_name["EXPLICIT"].number,enum_type=_FEATURESET_ENUMTYPE.values_by_name["CLOSED"].number,repeated_field_encoding=_FEATURESET_REPEATEDFIELDENCODING.values_by_name["EXPANDED"].number,utf8_validation=_FEATURESET_UTF8VALIDATION.values_by_name["NONE"].number,message_encoding=_FEATURESET_MESSAGEENCODING.values_by_name["LENGTH_PREFIXED"].number,json_format=_FEATURESET_JSONFORMAT.values_by_name["LEGACY_BEST_EFFORT"].number) _FEATURESET.fields[5]._features = _ResolvedFeatures(field_presence=_FEATURESET_FIELDPRESENCE.values_by_name["EXPLICIT"].number,enum_type=_FEATURESET_ENUMTYPE.values_by_name["CLOSED"].number,repeated_field_encoding=_FEATURESET_REPEATEDFIELDENCODING.values_by_name["EXPANDED"].number,utf8_validation=_FEATURESET_UTF8VALIDATION.values_by_name["NONE"].number,message_encoding=_FEATURESET_MESSAGEENCODING.values_by_name["LENGTH_PREFIXED"].number,json_format=_FEATURESET_JSONFORMAT.values_by_name["LEGACY_BEST_EFFORT"].number) - _FEATURESET.fields[6]._features = _ResolvedFeatures(field_presence=_FEATURESET_FIELDPRESENCE.values_by_name["EXPLICIT"].number,enum_type=_FEATURESET_ENUMTYPE.values_by_name["CLOSED"].number,repeated_field_encoding=_FEATURESET_REPEATEDFIELDENCODING.values_by_name["EXPANDED"].number,utf8_validation=_FEATURESET_UTF8VALIDATION.values_by_name["NONE"].number,message_encoding=_FEATURESET_MESSAGEENCODING.values_by_name["LENGTH_PREFIXED"].number,json_format=_FEATURESET_JSONFORMAT.values_by_name["LEGACY_BEST_EFFORT"].number) _FEATURESETDEFAULTS._features = _ResolvedFeatures(field_presence=_FEATURESET_FIELDPRESENCE.values_by_name["EXPLICIT"].number,enum_type=_FEATURESET_ENUMTYPE.values_by_name["CLOSED"].number,repeated_field_encoding=_FEATURESET_REPEATEDFIELDENCODING.values_by_name["EXPANDED"].number,utf8_validation=_FEATURESET_UTF8VALIDATION.values_by_name["NONE"].number,message_encoding=_FEATURESET_MESSAGEENCODING.values_by_name["LENGTH_PREFIXED"].number,json_format=_FEATURESET_JSONFORMAT.values_by_name["LEGACY_BEST_EFFORT"].number) _FEATURESETDEFAULTS.fields[0]._features = _ResolvedFeatures(field_presence=_FEATURESET_FIELDPRESENCE.values_by_name["EXPLICIT"].number,enum_type=_FEATURESET_ENUMTYPE.values_by_name["CLOSED"].number,repeated_field_encoding=_FEATURESET_REPEATEDFIELDENCODING.values_by_name["EXPANDED"].number,utf8_validation=_FEATURESET_UTF8VALIDATION.values_by_name["NONE"].number,message_encoding=_FEATURESET_MESSAGEENCODING.values_by_name["LENGTH_PREFIXED"].number,json_format=_FEATURESET_JSONFORMAT.values_by_name["LEGACY_BEST_EFFORT"].number) _FEATURESETDEFAULTS.fields[1]._features = _ResolvedFeatures(field_presence=_FEATURESET_FIELDPRESENCE.values_by_name["EXPLICIT"].number,enum_type=_FEATURESET_ENUMTYPE.values_by_name["CLOSED"].number,repeated_field_encoding=_FEATURESET_REPEATEDFIELDENCODING.values_by_name["EXPANDED"].number,utf8_validation=_FEATURESET_UTF8VALIDATION.values_by_name["NONE"].number,message_encoding=_FEATURESET_MESSAGEENCODING.values_by_name["LENGTH_PREFIXED"].number,json_format=_FEATURESET_JSONFORMAT.values_by_name["LEGACY_BEST_EFFORT"].number) @@ -3054,10 +3015,6 @@ if not _descriptor._USE_C_DESCRIPTORS: _FEATURESET_JSONFORMAT.values[0]._features = _ResolvedFeatures(field_presence=_FEATURESET_FIELDPRESENCE.values_by_name["EXPLICIT"].number,enum_type=_FEATURESET_ENUMTYPE.values_by_name["CLOSED"].number,repeated_field_encoding=_FEATURESET_REPEATEDFIELDENCODING.values_by_name["EXPANDED"].number,utf8_validation=_FEATURESET_UTF8VALIDATION.values_by_name["NONE"].number,message_encoding=_FEATURESET_MESSAGEENCODING.values_by_name["LENGTH_PREFIXED"].number,json_format=_FEATURESET_JSONFORMAT.values_by_name["LEGACY_BEST_EFFORT"].number) _FEATURESET_JSONFORMAT.values[1]._features = _ResolvedFeatures(field_presence=_FEATURESET_FIELDPRESENCE.values_by_name["EXPLICIT"].number,enum_type=_FEATURESET_ENUMTYPE.values_by_name["CLOSED"].number,repeated_field_encoding=_FEATURESET_REPEATEDFIELDENCODING.values_by_name["EXPANDED"].number,utf8_validation=_FEATURESET_UTF8VALIDATION.values_by_name["NONE"].number,message_encoding=_FEATURESET_MESSAGEENCODING.values_by_name["LENGTH_PREFIXED"].number,json_format=_FEATURESET_JSONFORMAT.values_by_name["LEGACY_BEST_EFFORT"].number) _FEATURESET_JSONFORMAT.values[2]._features = _ResolvedFeatures(field_presence=_FEATURESET_FIELDPRESENCE.values_by_name["EXPLICIT"].number,enum_type=_FEATURESET_ENUMTYPE.values_by_name["CLOSED"].number,repeated_field_encoding=_FEATURESET_REPEATEDFIELDENCODING.values_by_name["EXPANDED"].number,utf8_validation=_FEATURESET_UTF8VALIDATION.values_by_name["NONE"].number,message_encoding=_FEATURESET_MESSAGEENCODING.values_by_name["LENGTH_PREFIXED"].number,json_format=_FEATURESET_JSONFORMAT.values_by_name["LEGACY_BEST_EFFORT"].number) - _FEATURESET_ENFORCENAMINGSTYLE._features = _ResolvedFeatures(field_presence=_FEATURESET_FIELDPRESENCE.values_by_name["EXPLICIT"].number,enum_type=_FEATURESET_ENUMTYPE.values_by_name["CLOSED"].number,repeated_field_encoding=_FEATURESET_REPEATEDFIELDENCODING.values_by_name["EXPANDED"].number,utf8_validation=_FEATURESET_UTF8VALIDATION.values_by_name["NONE"].number,message_encoding=_FEATURESET_MESSAGEENCODING.values_by_name["LENGTH_PREFIXED"].number,json_format=_FEATURESET_JSONFORMAT.values_by_name["LEGACY_BEST_EFFORT"].number) - _FEATURESET_ENFORCENAMINGSTYLE.values[0]._features = _ResolvedFeatures(field_presence=_FEATURESET_FIELDPRESENCE.values_by_name["EXPLICIT"].number,enum_type=_FEATURESET_ENUMTYPE.values_by_name["CLOSED"].number,repeated_field_encoding=_FEATURESET_REPEATEDFIELDENCODING.values_by_name["EXPANDED"].number,utf8_validation=_FEATURESET_UTF8VALIDATION.values_by_name["NONE"].number,message_encoding=_FEATURESET_MESSAGEENCODING.values_by_name["LENGTH_PREFIXED"].number,json_format=_FEATURESET_JSONFORMAT.values_by_name["LEGACY_BEST_EFFORT"].number) - _FEATURESET_ENFORCENAMINGSTYLE.values[1]._features = _ResolvedFeatures(field_presence=_FEATURESET_FIELDPRESENCE.values_by_name["EXPLICIT"].number,enum_type=_FEATURESET_ENUMTYPE.values_by_name["CLOSED"].number,repeated_field_encoding=_FEATURESET_REPEATEDFIELDENCODING.values_by_name["EXPANDED"].number,utf8_validation=_FEATURESET_UTF8VALIDATION.values_by_name["NONE"].number,message_encoding=_FEATURESET_MESSAGEENCODING.values_by_name["LENGTH_PREFIXED"].number,json_format=_FEATURESET_JSONFORMAT.values_by_name["LEGACY_BEST_EFFORT"].number) - _FEATURESET_ENFORCENAMINGSTYLE.values[2]._features = _ResolvedFeatures(field_presence=_FEATURESET_FIELDPRESENCE.values_by_name["EXPLICIT"].number,enum_type=_FEATURESET_ENUMTYPE.values_by_name["CLOSED"].number,repeated_field_encoding=_FEATURESET_REPEATEDFIELDENCODING.values_by_name["EXPANDED"].number,utf8_validation=_FEATURESET_UTF8VALIDATION.values_by_name["NONE"].number,message_encoding=_FEATURESET_MESSAGEENCODING.values_by_name["LENGTH_PREFIXED"].number,json_format=_FEATURESET_JSONFORMAT.values_by_name["LEGACY_BEST_EFFORT"].number) _GENERATEDCODEINFO_ANNOTATION_SEMANTIC._features = _ResolvedFeatures(field_presence=_FEATURESET_FIELDPRESENCE.values_by_name["EXPLICIT"].number,enum_type=_FEATURESET_ENUMTYPE.values_by_name["CLOSED"].number,repeated_field_encoding=_FEATURESET_REPEATEDFIELDENCODING.values_by_name["EXPANDED"].number,utf8_validation=_FEATURESET_UTF8VALIDATION.values_by_name["NONE"].number,message_encoding=_FEATURESET_MESSAGEENCODING.values_by_name["LENGTH_PREFIXED"].number,json_format=_FEATURESET_JSONFORMAT.values_by_name["LEGACY_BEST_EFFORT"].number) _GENERATEDCODEINFO_ANNOTATION_SEMANTIC.values[0]._features = _ResolvedFeatures(field_presence=_FEATURESET_FIELDPRESENCE.values_by_name["EXPLICIT"].number,enum_type=_FEATURESET_ENUMTYPE.values_by_name["CLOSED"].number,repeated_field_encoding=_FEATURESET_REPEATEDFIELDENCODING.values_by_name["EXPANDED"].number,utf8_validation=_FEATURESET_UTF8VALIDATION.values_by_name["NONE"].number,message_encoding=_FEATURESET_MESSAGEENCODING.values_by_name["LENGTH_PREFIXED"].number,json_format=_FEATURESET_JSONFORMAT.values_by_name["LEGACY_BEST_EFFORT"].number) _GENERATEDCODEINFO_ANNOTATION_SEMANTIC.values[1]._features = _ResolvedFeatures(field_presence=_FEATURESET_FIELDPRESENCE.values_by_name["EXPLICIT"].number,enum_type=_FEATURESET_ENUMTYPE.values_by_name["CLOSED"].number,repeated_field_encoding=_FEATURESET_REPEATEDFIELDENCODING.values_by_name["EXPANDED"].number,utf8_validation=_FEATURESET_UTF8VALIDATION.values_by_name["NONE"].number,message_encoding=_FEATURESET_MESSAGEENCODING.values_by_name["LENGTH_PREFIXED"].number,json_format=_FEATURESET_JSONFORMAT.values_by_name["LEGACY_BEST_EFFORT"].number) @@ -3103,16 +3060,14 @@ if not _descriptor._USE_C_DESCRIPTORS: _globals['_FEATURESET'].fields_by_name['message_encoding']._serialized_options = b'\210\001\001\230\001\004\230\001\001\242\001\024\022\017LENGTH_PREFIXED\030\204\007\262\001\003\010\350\007' _globals['_FEATURESET'].fields_by_name['json_format']._loaded_options = None _globals['_FEATURESET'].fields_by_name['json_format']._serialized_options = b'\210\001\001\230\001\003\230\001\006\230\001\001\242\001\027\022\022LEGACY_BEST_EFFORT\030\204\007\242\001\n\022\005ALLOW\030\347\007\262\001\003\010\350\007' - _globals['_FEATURESET'].fields_by_name['enforce_naming_style']._loaded_options = None - _globals['_FEATURESET'].fields_by_name['enforce_naming_style']._serialized_options = b'\210\001\002\230\001\001\230\001\002\230\001\003\230\001\004\230\001\005\230\001\006\230\001\007\230\001\010\230\001\t\242\001\021\022\014STYLE_LEGACY\030\204\007\242\001\016\022\tSTYLE2024\030\351\007\262\001\003\010\351\007' _globals['_SOURCECODEINFO_LOCATION'].fields_by_name['path']._loaded_options = None _globals['_SOURCECODEINFO_LOCATION'].fields_by_name['path']._serialized_options = b'\020\001' _globals['_SOURCECODEINFO_LOCATION'].fields_by_name['span']._loaded_options = None _globals['_SOURCECODEINFO_LOCATION'].fields_by_name['span']._serialized_options = b'\020\001' _globals['_GENERATEDCODEINFO_ANNOTATION'].fields_by_name['path']._loaded_options = None _globals['_GENERATEDCODEINFO_ANNOTATION'].fields_by_name['path']._serialized_options = b'\020\001' - _globals['_EDITION']._serialized_start=12136 - _globals['_EDITION']._serialized_end=12431 + _globals['_EDITION']._serialized_start=11873 + _globals['_EDITION']._serialized_end=12168 _globals['_FILEDESCRIPTORSET']._serialized_start=53 _globals['_FILEDESCRIPTORSET']._serialized_end=144 _globals['_FILEDESCRIPTORPROTO']._serialized_start=147 @@ -3184,33 +3139,31 @@ if not _descriptor._USE_C_DESCRIPTORS: _globals['_UNINTERPRETEDOPTION_NAMEPART']._serialized_start=9325 _globals['_UNINTERPRETEDOPTION_NAMEPART']._serialized_end=9399 _globals['_FEATURESET']._serialized_start=9402 - _globals['_FEATURESET']._serialized_end=10984 - _globals['_FEATURESET_FIELDPRESENCE']._serialized_start=10392 - _globals['_FEATURESET_FIELDPRESENCE']._serialized_end=10484 - _globals['_FEATURESET_ENUMTYPE']._serialized_start=10486 - _globals['_FEATURESET_ENUMTYPE']._serialized_end=10541 - _globals['_FEATURESET_REPEATEDFIELDENCODING']._serialized_start=10543 - _globals['_FEATURESET_REPEATEDFIELDENCODING']._serialized_end=10629 - _globals['_FEATURESET_UTF8VALIDATION']._serialized_start=10631 - _globals['_FEATURESET_UTF8VALIDATION']._serialized_end=10704 - _globals['_FEATURESET_MESSAGEENCODING']._serialized_start=10706 - _globals['_FEATURESET_MESSAGEENCODING']._serialized_end=10789 - _globals['_FEATURESET_JSONFORMAT']._serialized_start=10791 - _globals['_FEATURESET_JSONFORMAT']._serialized_end=10863 - _globals['_FEATURESET_ENFORCENAMINGSTYLE']._serialized_start=10865 - _globals['_FEATURESET_ENFORCENAMINGSTYLE']._serialized_end=10952 - _globals['_FEATURESETDEFAULTS']._serialized_start=10987 - _globals['_FEATURESETDEFAULTS']._serialized_end=11482 - _globals['_FEATURESETDEFAULTS_FEATURESETEDITIONDEFAULT']._serialized_start=11234 - _globals['_FEATURESETDEFAULTS_FEATURESETEDITIONDEFAULT']._serialized_end=11482 - _globals['_SOURCECODEINFO']._serialized_start=11485 - _globals['_SOURCECODEINFO']._serialized_end=11794 - _globals['_SOURCECODEINFO_LOCATION']._serialized_start=11574 - _globals['_SOURCECODEINFO_LOCATION']._serialized_end=11780 - _globals['_GENERATEDCODEINFO']._serialized_start=11797 - _globals['_GENERATEDCODEINFO']._serialized_end=12133 - _globals['_GENERATEDCODEINFO_ANNOTATION']._serialized_start=11898 - _globals['_GENERATEDCODEINFO_ANNOTATION']._serialized_end=12133 - _globals['_GENERATEDCODEINFO_ANNOTATION_SEMANTIC']._serialized_start=12093 - _globals['_GENERATEDCODEINFO_ANNOTATION_SEMANTIC']._serialized_end=12133 + _globals['_FEATURESET']._serialized_end=10721 + _globals['_FEATURESET_FIELDPRESENCE']._serialized_start=10218 + _globals['_FEATURESET_FIELDPRESENCE']._serialized_end=10310 + _globals['_FEATURESET_ENUMTYPE']._serialized_start=10312 + _globals['_FEATURESET_ENUMTYPE']._serialized_end=10367 + _globals['_FEATURESET_REPEATEDFIELDENCODING']._serialized_start=10369 + _globals['_FEATURESET_REPEATEDFIELDENCODING']._serialized_end=10455 + _globals['_FEATURESET_UTF8VALIDATION']._serialized_start=10457 + _globals['_FEATURESET_UTF8VALIDATION']._serialized_end=10530 + _globals['_FEATURESET_MESSAGEENCODING']._serialized_start=10532 + _globals['_FEATURESET_MESSAGEENCODING']._serialized_end=10615 + _globals['_FEATURESET_JSONFORMAT']._serialized_start=10617 + _globals['_FEATURESET_JSONFORMAT']._serialized_end=10689 + _globals['_FEATURESETDEFAULTS']._serialized_start=10724 + _globals['_FEATURESETDEFAULTS']._serialized_end=11219 + _globals['_FEATURESETDEFAULTS_FEATURESETEDITIONDEFAULT']._serialized_start=10971 + _globals['_FEATURESETDEFAULTS_FEATURESETEDITIONDEFAULT']._serialized_end=11219 + _globals['_SOURCECODEINFO']._serialized_start=11222 + _globals['_SOURCECODEINFO']._serialized_end=11531 + _globals['_SOURCECODEINFO_LOCATION']._serialized_start=11311 + _globals['_SOURCECODEINFO_LOCATION']._serialized_end=11517 + _globals['_GENERATEDCODEINFO']._serialized_start=11534 + _globals['_GENERATEDCODEINFO']._serialized_end=11870 + _globals['_GENERATEDCODEINFO_ANNOTATION']._serialized_start=11635 + _globals['_GENERATEDCODEINFO_ANNOTATION']._serialized_end=11870 + _globals['_GENERATEDCODEINFO_ANNOTATION_SEMANTIC']._serialized_start=11830 + _globals['_GENERATEDCODEINFO_ANNOTATION_SEMANTIC']._serialized_end=11870 # @@protoc_insertion_point(module_scope) diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/descriptor_pool.py b/.venv/lib/python3.10/site-packages/google/protobuf/descriptor_pool.py old mode 100755 new mode 100644 diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/duration.py b/.venv/lib/python3.10/site-packages/google/protobuf/duration.py old mode 100755 new mode 100644 diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/duration_pb2.py b/.venv/lib/python3.10/site-packages/google/protobuf/duration_pb2.py old mode 100755 new mode 100644 index 7b6340e1..e767a14c --- a/.venv/lib/python3.10/site-packages/google/protobuf/duration_pb2.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/duration_pb2.py @@ -2,7 +2,7 @@ # Generated by the protocol buffer compiler. DO NOT EDIT! # NO CHECKED-IN PROTOBUF GENCODE # source: google/protobuf/duration.proto -# Protobuf Python Version: 6.30.2 +# Protobuf Python Version: 5.29.4 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool @@ -11,9 +11,9 @@ from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder _runtime_version.ValidateProtobufRuntimeVersion( _runtime_version.Domain.PUBLIC, - 6, - 30, - 2, + 5, + 29, + 4, '', 'google/protobuf/duration.proto' ) diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/empty_pb2.py b/.venv/lib/python3.10/site-packages/google/protobuf/empty_pb2.py old mode 100755 new mode 100644 index 687db166..41626d54 --- a/.venv/lib/python3.10/site-packages/google/protobuf/empty_pb2.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/empty_pb2.py @@ -2,7 +2,7 @@ # Generated by the protocol buffer compiler. DO NOT EDIT! # NO CHECKED-IN PROTOBUF GENCODE # source: google/protobuf/empty.proto -# Protobuf Python Version: 6.30.2 +# Protobuf Python Version: 5.29.4 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool @@ -11,9 +11,9 @@ from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder _runtime_version.ValidateProtobufRuntimeVersion( _runtime_version.Domain.PUBLIC, - 6, - 30, - 2, + 5, + 29, + 4, '', 'google/protobuf/empty.proto' ) diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/field_mask_pb2.py b/.venv/lib/python3.10/site-packages/google/protobuf/field_mask_pb2.py old mode 100755 new mode 100644 index 5d7477d8..122ba518 --- a/.venv/lib/python3.10/site-packages/google/protobuf/field_mask_pb2.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/field_mask_pb2.py @@ -2,7 +2,7 @@ # Generated by the protocol buffer compiler. DO NOT EDIT! # NO CHECKED-IN PROTOBUF GENCODE # source: google/protobuf/field_mask.proto -# Protobuf Python Version: 6.30.2 +# Protobuf Python Version: 5.29.4 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool @@ -11,9 +11,9 @@ from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder _runtime_version.ValidateProtobufRuntimeVersion( _runtime_version.Domain.PUBLIC, - 6, - 30, - 2, + 5, + 29, + 4, '', 'google/protobuf/field_mask.proto' ) diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__init__.py b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__init__.py old mode 100755 new mode 100644 diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/__init__.cpython-310.pyc index 828d1161..c1d4cde7 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/api_implementation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/api_implementation.cpython-310.pyc index d8b7e958..9194277f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/api_implementation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/api_implementation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/builder.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/builder.cpython-310.pyc index 46257571..f62d59d0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/builder.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/builder.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/containers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/containers.cpython-310.pyc index 4ccb2ca0..b64f0316 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/containers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/containers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/decoder.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/decoder.cpython-310.pyc index 971169c3..76dde97c 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/decoder.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/decoder.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/encoder.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/encoder.cpython-310.pyc index fe5a36a6..40669013 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/encoder.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/encoder.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/enum_type_wrapper.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/enum_type_wrapper.cpython-310.pyc index 39e7443f..c6325c0b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/enum_type_wrapper.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/enum_type_wrapper.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/extension_dict.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/extension_dict.cpython-310.pyc index 6f495de4..26b065ae 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/extension_dict.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/extension_dict.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/field_mask.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/field_mask.cpython-310.pyc index 386c89a2..d8578226 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/field_mask.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/field_mask.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/message_listener.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/message_listener.cpython-310.pyc index 0e9ea860..1aca3d7b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/message_listener.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/message_listener.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/python_edition_defaults.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/python_edition_defaults.cpython-310.pyc index 4625e0a5..c92cdb49 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/python_edition_defaults.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/python_edition_defaults.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/python_message.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/python_message.cpython-310.pyc index 8fcedf17..ecfac199 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/python_message.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/python_message.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/testing_refleaks.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/testing_refleaks.cpython-310.pyc deleted file mode 100644 index 35c38fe5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/testing_refleaks.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/type_checkers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/type_checkers.cpython-310.pyc index 56655932..ead71bd0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/type_checkers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/type_checkers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/well_known_types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/well_known_types.cpython-310.pyc index 65ef416d..8ddce34d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/well_known_types.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/well_known_types.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/wire_format.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/wire_format.cpython-310.pyc index f53b5e70..6fa10cbe 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/wire_format.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/wire_format.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/api_implementation.py b/.venv/lib/python3.10/site-packages/google/protobuf/internal/api_implementation.py old mode 100755 new mode 100644 diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/builder.py b/.venv/lib/python3.10/site-packages/google/protobuf/internal/builder.py old mode 100755 new mode 100644 index 9859e490..4c0f2873 --- a/.venv/lib/python3.10/site-packages/google/protobuf/internal/builder.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/internal/builder.py @@ -54,13 +54,12 @@ def BuildTopDescriptorsAndMessages(file_des, module_name, module): module: Generated _pb2 module """ - def BuildMessage(msg_des, prefix): + def BuildMessage(msg_des): create_dict = {} for (name, nested_msg) in msg_des.nested_types_by_name.items(): - create_dict[name] = BuildMessage(nested_msg, prefix + msg_des.name + '.') + create_dict[name] = BuildMessage(nested_msg) create_dict['DESCRIPTOR'] = msg_des create_dict['__module__'] = module_name - create_dict['__qualname__'] = prefix + msg_des.name message_class = _reflection.GeneratedProtocolMessageType( msg_des.name, (_message.Message,), create_dict) _sym_db.RegisterMessage(message_class) @@ -84,7 +83,7 @@ def BuildTopDescriptorsAndMessages(file_des, module_name, module): # Build messages. for (name, msg_des) in file_des.message_types_by_name.items(): - module[name] = BuildMessage(msg_des, '') + module[name] = BuildMessage(msg_des) def AddHelpersToExtensions(file_des): diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/containers.py b/.venv/lib/python3.10/site-packages/google/protobuf/internal/containers.py old mode 100755 new mode 100644 index 7298bc5c..23357816 --- a/.venv/lib/python3.10/site-packages/google/protobuf/internal/containers.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/internal/containers.py @@ -412,13 +412,6 @@ class ScalarMap(MutableMapping[_K, _V]): def __repr__(self) -> str: return repr(self._values) - def setdefault(self, key: _K, value: Optional[_V] = None) -> _V: - if value == None: - raise ValueError('The value for scalar map setdefault must be set.') - if key not in self._values: - self.__setitem__(key, value) - return self[key] - def MergeFrom(self, other: 'ScalarMap[_K, _V]') -> None: self._values.update(other._values) self._message_listener.Modified() @@ -533,12 +526,6 @@ class MessageMap(MutableMapping[_K, _V]): def __repr__(self) -> str: return repr(self._values) - def setdefault(self, key: _K, value: Optional[_V] = None) -> _V: - raise NotImplementedError( - 'Set message map value directly is not supported, call' - ' my_map[key].foo = 5' - ) - def MergeFrom(self, other: 'MessageMap[_K, _V]') -> None: # pylint: disable=protected-access for key in other._values: diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/decoder.py b/.venv/lib/python3.10/site-packages/google/protobuf/internal/decoder.py old mode 100755 new mode 100644 index 91a4c754..dcde1d94 --- a/.venv/lib/python3.10/site-packages/google/protobuf/internal/decoder.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/internal/decoder.py @@ -58,7 +58,6 @@ we repeatedly read a tag, look up the corresponding decoder, and invoke it. __author__ = 'kenton@google.com (Kenton Varda)' import math -import numbers import struct from google.protobuf import message @@ -72,27 +71,6 @@ from google.protobuf.internal import wire_format _DecodeError = message.DecodeError -def IsDefaultScalarValue(value): - """Returns whether or not a scalar value is the default value of its type. - - Specifically, this should be used to determine presence of implicit-presence - fields, where we disallow custom defaults. - - Args: - value: A scalar value to check. - - Returns: - True if the value is equivalent to a default value, False otherwise. - """ - if isinstance(value, numbers.Number) and math.copysign(1.0, value) < 0: - # Special case for negative zero, where "truthiness" fails to give the right - # answer. - return False - - # Normally, we can just use Python's boolean conversion. - return not value - - def _VarintDecoder(mask, result_type): """Return an encoder for a basic varint value (does not include tag). @@ -190,19 +168,6 @@ def ReadTag(buffer, pos): return tag_bytes, pos -def DecodeTag(tag_bytes): - """Decode a tag from the bytes. - - Args: - tag_bytes: the bytes of the tag - - Returns: - Tuple[int, int] of the tag field number and wire type. - """ - (tag, _) = _DecodeVarint(tag_bytes, 0) - return wire_format.UnpackTag(tag) - - # -------------------------------------------------------------------- @@ -259,7 +224,7 @@ def _SimpleDecoder(wire_type, decode_value): (new_value, pos) = decode_value(buffer, pos) if pos > end: raise _DecodeError('Truncated message.') - if clear_if_default and IsDefaultScalarValue(new_value): + if clear_if_default and not new_value: field_dict.pop(key, None) else: field_dict[key] = new_value @@ -500,7 +465,7 @@ def EnumDecoder(field_number, is_repeated, is_packed, key, new_default, (enum_value, pos) = _DecodeSignedVarint32(buffer, pos) if pos > end: raise _DecodeError('Truncated message.') - if clear_if_default and IsDefaultScalarValue(enum_value): + if clear_if_default and not enum_value: field_dict.pop(key, None) return pos # pylint: disable=protected-access @@ -595,7 +560,7 @@ def StringDecoder(field_number, is_repeated, is_packed, key, new_default, new_pos = pos + size if new_pos > end: raise _DecodeError('Truncated string.') - if clear_if_default and IsDefaultScalarValue(size): + if clear_if_default and not size: field_dict.pop(key, None) else: field_dict[key] = _ConvertToUnicode(buffer[pos:new_pos]) @@ -636,7 +601,7 @@ def BytesDecoder(field_number, is_repeated, is_packed, key, new_default, new_pos = pos + size if new_pos > end: raise _DecodeError('Truncated string.') - if clear_if_default and IsDefaultScalarValue(size): + if clear_if_default and not size: field_dict.pop(key, None) else: field_dict[key] = buffer[pos:new_pos].tobytes() @@ -765,6 +730,7 @@ def MessageSetItemDecoder(descriptor): local_ReadTag = ReadTag local_DecodeVarint = _DecodeVarint + local_SkipField = SkipField def DecodeItem(buffer, pos, end, message, field_dict): """Decode serialized message set to its value and new position. @@ -796,10 +762,9 @@ def MessageSetItemDecoder(descriptor): elif tag_bytes == item_end_tag_bytes: break else: - field_number, wire_type = DecodeTag(tag_bytes) - _, pos = _DecodeUnknownField(buffer, pos, end, field_number, wire_type) + pos = SkipField(buffer, pos, end, tag_bytes) if pos == -1: - raise _DecodeError('Unexpected end-group tag.') + raise _DecodeError('Missing group end tag.') if pos > end: raise _DecodeError('Truncated message.') @@ -857,10 +822,9 @@ def UnknownMessageSetItemDecoder(): elif tag_bytes == item_end_tag_bytes: break else: - field_number, wire_type = DecodeTag(tag_bytes) - _, pos = _DecodeUnknownField(buffer, pos, end, field_number, wire_type) + pos = SkipField(buffer, pos, end, tag_bytes) if pos == -1: - raise _DecodeError('Unexpected end-group tag.') + raise _DecodeError('Missing group end tag.') if pos > end: raise _DecodeError('Truncated message.') @@ -918,6 +882,30 @@ def MapDecoder(field_descriptor, new_default, is_message_map): return DecodeMap +# -------------------------------------------------------------------- +# Optimization is not as heavy here because calls to SkipField() are rare, +# except for handling end-group tags. + +def _SkipVarint(buffer, pos, end): + """Skip a varint value. Returns the new position.""" + # Previously ord(buffer[pos]) raised IndexError when pos is out of range. + # With this code, ord(b'') raises TypeError. Both are handled in + # python_message.py to generate a 'Truncated message' error. + while ord(buffer[pos:pos+1].tobytes()) & 0x80: + pos += 1 + pos += 1 + if pos > end: + raise _DecodeError('Truncated message.') + return pos + +def _SkipFixed64(buffer, pos, end): + """Skip a fixed64 value. Returns the new position.""" + + pos += 8 + if pos > end: + raise _DecodeError('Truncated message.') + return pos + def _DecodeFixed64(buffer, pos): """Decode a fixed64.""" @@ -925,11 +913,25 @@ def _DecodeFixed64(buffer, pos): return (struct.unpack(' end: + raise _DecodeError('Truncated message.') + return pos + + +def _SkipGroup(buffer, pos, end): + """Skip sub-group. Returns the new position.""" + + while 1: + (tag_bytes, pos) = ReadTag(buffer, pos) + new_pos = SkipField(buffer, pos, end, tag_bytes) + if new_pos == -1: + return pos + pos = new_pos def _DecodeUnknownFieldSet(buffer, pos, end_pos=None): @@ -942,16 +944,14 @@ def _DecodeUnknownFieldSet(buffer, pos, end_pos=None): field_number, wire_type = wire_format.UnpackTag(tag) if wire_type == wire_format.WIRETYPE_END_GROUP: break - (data, pos) = _DecodeUnknownField( - buffer, pos, end_pos, field_number, wire_type - ) + (data, pos) = _DecodeUnknownField(buffer, pos, wire_type) # pylint: disable=protected-access unknown_field_set._add(field_number, wire_type, data) return (unknown_field_set, pos) -def _DecodeUnknownField(buffer, pos, end_pos, field_number, wire_type): +def _DecodeUnknownField(buffer, pos, wire_type): """Decode a unknown field. Returns the UnknownField and new position.""" if wire_type == wire_format.WIRETYPE_VARINT: @@ -965,19 +965,72 @@ def _DecodeUnknownField(buffer, pos, end_pos, field_number, wire_type): data = buffer[pos:pos+size].tobytes() pos += size elif wire_type == wire_format.WIRETYPE_START_GROUP: - end_tag_bytes = encoder.TagBytes( - field_number, wire_format.WIRETYPE_END_GROUP - ) - data, pos = _DecodeUnknownFieldSet(buffer, pos, end_pos) - # Check end tag. - if buffer[pos - len(end_tag_bytes) : pos] != end_tag_bytes: - raise _DecodeError('Missing group end tag.') + (data, pos) = _DecodeUnknownFieldSet(buffer, pos) elif wire_type == wire_format.WIRETYPE_END_GROUP: return (0, -1) else: raise _DecodeError('Wrong wire type in tag.') - if pos > end_pos: - raise _DecodeError('Truncated message.') - return (data, pos) + + +def _EndGroup(buffer, pos, end): + """Skipping an END_GROUP tag returns -1 to tell the parent loop to break.""" + + return -1 + + +def _SkipFixed32(buffer, pos, end): + """Skip a fixed32 value. Returns the new position.""" + + pos += 4 + if pos > end: + raise _DecodeError('Truncated message.') + return pos + + +def _DecodeFixed32(buffer, pos): + """Decode a fixed32.""" + + new_pos = pos + 4 + return (struct.unpack(' _FLOAT_MAX: - if converted_value <= _MAX_FLOAT_AS_DOUBLE_ROUNDED: - return _FLOAT_MAX return _INF if converted_value < _FLOAT_MIN: - if converted_value >= -_MAX_FLOAT_AS_DOUBLE_ROUNDED: - return _FLOAT_MIN return _NEG_INF return TruncateToFourByteFloat(converted_value) diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/well_known_types.py b/.venv/lib/python3.10/site-packages/google/protobuf/internal/well_known_types.py old mode 100755 new mode 100644 index 0d95b4b9..bbc63f49 --- a/.venv/lib/python3.10/site-packages/google/protobuf/internal/well_known_types.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/internal/well_known_types.py @@ -26,7 +26,7 @@ from typing import Union FieldMask = field_mask.FieldMask -_TIMESTAMPFORMAT = '%Y-%m-%dT%H:%M:%S' +_TIMESTAMPFOMAT = '%Y-%m-%dT%H:%M:%S' _NANOS_PER_SECOND = 1000000000 _NANOS_PER_MILLISECOND = 1000000 _NANOS_PER_MICROSECOND = 1000 @@ -68,7 +68,7 @@ class Any(object): def TypeName(self): """Returns the protobuf type name of the inner message.""" # Only last part is to be used: b/25630112 - return self.type_url.rpartition('/')[2] + return self.type_url.split('/')[-1] def Is(self, descriptor): """Checks if this Any represents the given protobuf type.""" @@ -142,7 +142,7 @@ class Timestamp(object): raise ValueError( 'time data \'{0}\' does not match format \'%Y-%m-%dT%H:%M:%S\', ' 'lowercase \'t\' is not accepted'.format(second_value)) - date_object = datetime.datetime.strptime(second_value, _TIMESTAMPFORMAT) + date_object = datetime.datetime.strptime(second_value, _TIMESTAMPFOMAT) td = date_object - datetime.datetime(1970, 1, 1) seconds = td.seconds + td.days * _SECONDS_PER_DAY if len(nano_value) > 9: diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/internal/wire_format.py b/.venv/lib/python3.10/site-packages/google/protobuf/internal/wire_format.py old mode 100755 new mode 100644 diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/json_format.py b/.venv/lib/python3.10/site-packages/google/protobuf/json_format.py old mode 100755 new mode 100644 index 3eafd132..2a6bba93 --- a/.venv/lib/python3.10/site-packages/google/protobuf/json_format.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/json_format.py @@ -497,7 +497,6 @@ def ParseDict( _INT_OR_FLOAT = (int, float) -_LIST_LIKE = (list, tuple) class _Parser(object): @@ -639,7 +638,7 @@ class _Parser(object): ) elif field.label == descriptor.FieldDescriptor.LABEL_REPEATED: message.ClearField(field.name) - if not isinstance(value, _LIST_LIKE): + if not isinstance(value, list): raise ParseError( 'repeated field {0} must be in [] which is {1} at {2}'.format( name, value, path @@ -734,10 +733,8 @@ class _Parser(object): )(self) else: del value['@type'] - try: - self._ConvertFieldValuePair(value, sub_message, path) - finally: - value['@type'] = type_url + self._ConvertFieldValuePair(value, sub_message, path) + value['@type'] = type_url # Sets Any message message.value = sub_message.SerializeToString() message.type_url = type_url @@ -755,8 +752,8 @@ class _Parser(object): """Convert a JSON representation into Value message.""" if isinstance(value, dict): self._ConvertStructMessage(value, message.struct_value, path) - elif isinstance(value, _LIST_LIKE): - self._ConvertListOrTupleValueMessage(value, message.list_value, path) + elif isinstance(value, list): + self._ConvertListValueMessage(value, message.list_value, path) elif value is None: message.null_value = 0 elif isinstance(value, bool): @@ -772,9 +769,9 @@ class _Parser(object): ) ) - def _ConvertListOrTupleValueMessage(self, value, message, path): + def _ConvertListValueMessage(self, value, message, path): """Convert a JSON representation into ListValue message.""" - if not isinstance(value, _LIST_LIKE): + if not isinstance(value, list): raise ParseError( 'ListValue must be in [] which is {0} at {1}'.format(value, path) ) @@ -974,20 +971,7 @@ def _ConvertInteger(value): 'Bool value {0} is not acceptable for integer field'.format(value) ) - try: - return int(value) - except ValueError as e: - # Attempt to parse as an integer-valued float. - try: - f = float(value) - except ValueError: - # Raise the original exception for the int parse. - raise e # pylint: disable=raise-missing-from - if not f.is_integer(): - raise ParseError( - 'Couldn\'t parse non-integer string: "{0}"'.format(value) - ) from e - return int(f) + return int(value) def _ConvertFloat(value, field): @@ -1068,7 +1052,7 @@ _WKTJSONMETHODS = { ], 'google.protobuf.ListValue': [ '_ListValueMessageToJsonObject', - '_ConvertListOrTupleValueMessage', + '_ConvertListValueMessage', ], 'google.protobuf.Struct': [ '_StructMessageToJsonObject', diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/message.py b/.venv/lib/python3.10/site-packages/google/protobuf/message.py old mode 100755 new mode 100644 index d48f4f40..ae9cb147 --- a/.venv/lib/python3.10/site-packages/google/protobuf/message.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/message.py @@ -13,9 +13,6 @@ __author__ = 'robinson@google.com (Will Robinson)' -_INCONSISTENT_MESSAGE_ATTRIBUTES = ('Extensions',) - - class Error(Exception): """Base error type for this module.""" pass @@ -59,29 +56,6 @@ class Message(object): clone.MergeFrom(self) return clone - def __dir__(self): - """Provides the list of all accessible Message attributes.""" - message_attributes = set(super().__dir__()) - - # TODO: Remove this once the UPB implementation is improved. - # The UPB proto implementation currently doesn't provide proto fields as - # attributes and they have to added. - if self.DESCRIPTOR is not None: - for field in self.DESCRIPTOR.fields: - message_attributes.add(field.name) - - # The Fast C++ proto implementation provides inaccessible attributes that - # have to be removed. - for attribute in _INCONSISTENT_MESSAGE_ATTRIBUTES: - if attribute not in message_attributes: - continue - try: - getattr(self, attribute) - except AttributeError: - message_attributes.remove(attribute) - - return sorted(message_attributes) - def __eq__(self, other_msg): """Recursively compares two messages by value and structure.""" raise NotImplementedError diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/message_factory.py b/.venv/lib/python3.10/site-packages/google/protobuf/message_factory.py old mode 100755 new mode 100644 index 9b64ff05..05e330d0 --- a/.venv/lib/python3.10/site-packages/google/protobuf/message_factory.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/message_factory.py @@ -142,6 +142,69 @@ class MessageFactory(object): """Initializes a new factory.""" self.pool = pool or descriptor_pool.DescriptorPool() + def GetPrototype(self, descriptor): + """Obtains a proto2 message class based on the passed in descriptor. + + Passing a descriptor with a fully qualified name matching a previous + invocation will cause the same class to be returned. + + Args: + descriptor: The descriptor to build from. + + Returns: + A class describing the passed in descriptor. + """ + warnings.warn( + 'MessageFactory class is deprecated. Please use ' + 'GetMessageClass() instead of MessageFactory.GetPrototype. ' + 'MessageFactory class will be removed after 2024.', + stacklevel=2, + ) + return GetMessageClass(descriptor) + + def CreatePrototype(self, descriptor): + """Builds a proto2 message class based on the passed in descriptor. + + Don't call this function directly, it always creates a new class. Call + GetMessageClass() instead. + + Args: + descriptor: The descriptor to build from. + + Returns: + A class describing the passed in descriptor. + """ + warnings.warn( + 'Directly call CreatePrototype is wrong. Please use ' + 'GetMessageClass() method instead. Directly use ' + 'CreatePrototype will raise error after July 2023.', + stacklevel=2, + ) + return _InternalCreateMessageClass(descriptor) + + def GetMessages(self, files): + """Gets all the messages from a specified file. + + This will find and resolve dependencies, failing if the descriptor + pool cannot satisfy them. + + Args: + files: The file names to extract messages from. + + Returns: + A dictionary mapping proto names to the message classes. This will include + any dependent messages as well as any messages defined in the same file as + a specified message. + """ + warnings.warn( + 'MessageFactory class is deprecated. Please use ' + 'GetMessageClassesForFiles() instead of ' + 'MessageFactory.GetMessages(). MessageFactory class ' + 'will be removed after 2024.', + stacklevel=2, + ) + return GetMessageClassesForFiles(files, self.pool) + def GetMessages(file_protos, pool=None): """Builds a dictionary of all the messages available in a set of files. diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/proto.py b/.venv/lib/python3.10/site-packages/google/protobuf/proto.py old mode 100755 new mode 100644 index 1e6291c3..df0a0d02 --- a/.venv/lib/python3.10/site-packages/google/protobuf/proto.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/proto.py @@ -8,7 +8,7 @@ """Contains the Nextgen Pythonic protobuf APIs.""" import io -from typing import Text, Type, TypeVar +from typing import Type, TypeVar from google.protobuf.internal import decoder from google.protobuf.internal import encoder @@ -114,40 +114,3 @@ def parse_length_prefixed( '{2}.'.format(size, parsed_size, message.DESCRIPTOR.name) ) return message - - -def byte_size(message: Message) -> int: - """Returns the serialized size of this message. - - Args: - message: A proto message. - - Returns: - int: The number of bytes required to serialize this message. - """ - return message.ByteSize() - - -def clear_message(message: Message) -> None: - """Clears all data that was set in the message. - - Args: - message: The proto message to be cleared. - """ - message.Clear() - - -def clear_field(message: Message, field_name: Text) -> None: - """Clears the contents of a given field. - - Inside a oneof group, clears the field set. If the name neither refers to a - defined field or oneof group, :exc:`ValueError` is raised. - - Args: - message: The proto message. - field_name (str): The name of the field to be cleared. - - Raises: - ValueError: if the `field_name` is not a member of this message. - """ - message.ClearField(field_name) diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/proto_builder.py b/.venv/lib/python3.10/site-packages/google/protobuf/proto_builder.py old mode 100755 new mode 100644 diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/proto_json.py b/.venv/lib/python3.10/site-packages/google/protobuf/proto_json.py old mode 100755 new mode 100644 diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/proto_text.py b/.venv/lib/python3.10/site-packages/google/protobuf/proto_text.py deleted file mode 100755 index 169fb4fc..00000000 --- a/.venv/lib/python3.10/site-packages/google/protobuf/proto_text.py +++ /dev/null @@ -1,129 +0,0 @@ -# Protocol Buffers - Google's data interchange format -# Copyright 2025 Google Inc. All rights reserved. -# -# Use of this source code is governed by a BSD-style -# license that can be found in the LICENSE file or at -# https://developers.google.com/open-source/licenses/bsd - -"""Contains the Nextgen Pythonic Protobuf Text Format APIs.""" -from typing import AnyStr, Callable, Optional, Text, Type, Union - -from google.protobuf import text_format -from google.protobuf.descriptor_pool import DescriptorPool -from google.protobuf.message import Message - -_MsgFormatter = Callable[[Message, Union[int, bool], bool], Optional[Text]] - - -def serialize( - message: Message, - as_utf8: bool = True, - as_one_line: bool = False, - use_short_repeated_primitives: bool = False, - pointy_brackets: bool = False, - use_index_order: bool = False, - float_format: Optional[str] = None, - double_format: Optional[str] = None, - use_field_number: bool = False, - descriptor_pool: Optional[DescriptorPool] = None, - indent: int = 0, - message_formatter: Optional[_MsgFormatter] = None, - print_unknown_fields: bool = False, - force_colon: bool = False, -) -> str: - """Convert protobuf message to text format. - - Double values can be formatted compactly with 15 digits of - precision (which is the most that IEEE 754 "double" can guarantee) - using double_format='.15g'. To ensure that converting to text and back to a - proto will result in an identical value, double_format='.17g' should be used. - - Args: - message: The protocol buffers message. - as_utf8: Return unescaped Unicode for non-ASCII characters. - as_one_line: Don't introduce newlines between fields. - use_short_repeated_primitives: Use short repeated format for primitives. - pointy_brackets: If True, use angle brackets instead of curly braces for - nesting. - use_index_order: If True, fields of a proto message will be printed using - the order defined in source code instead of the field number, extensions - will be printed at the end of the message and their relative order is - determined by the extension number. By default, use the field number - order. - float_format (str): If set, use this to specify float field formatting (per - the "Format Specification Mini-Language"); otherwise, shortest float that - has same value in wire will be printed. Also affect double field if - double_format is not set but float_format is set. - double_format (str): If set, use this to specify double field formatting - (per the "Format Specification Mini-Language"); if it is not set but - float_format is set, use float_format. Otherwise, use ``str()`` - use_field_number: If True, print field numbers instead of names. - descriptor_pool (DescriptorPool): Descriptor pool used to resolve Any types. - indent (int): The initial indent level, in terms of spaces, for pretty - print. - message_formatter (function(message, indent, as_one_line) -> unicode|None): - Custom formatter for selected sub-messages (usually based on message - type). Use to pretty print parts of the protobuf for easier diffing. - print_unknown_fields: If True, unknown fields will be printed. - force_colon: If set, a colon will be added after the field name even if the - field is a proto message. - - Returns: - str: A string of the text formatted protocol buffer message. - """ - return text_format.MessageToString( - message=message, - as_utf8=as_utf8, - as_one_line=as_one_line, - use_short_repeated_primitives=use_short_repeated_primitives, - pointy_brackets=pointy_brackets, - use_index_order=use_index_order, - float_format=float_format, - double_format=double_format, - use_field_number=use_field_number, - descriptor_pool=descriptor_pool, - indent=indent, - message_formatter=message_formatter, - print_unknown_fields=print_unknown_fields, - force_colon=force_colon, - ) - - -def parse( - message_class: Type[Message], - text: AnyStr, - allow_unknown_extension: bool = False, - allow_field_number: bool = False, - descriptor_pool: Optional[DescriptorPool] = None, - allow_unknown_field: bool = False, -) -> Message: - """Parses a text representation of a protocol message into a message. - - Args: - message_class: The message meta class. - text (str): Message text representation. - message (Message): A protocol buffer message to merge into. - allow_unknown_extension: if True, skip over missing extensions and keep - parsing - allow_field_number: if True, both field number and field name are allowed. - descriptor_pool (DescriptorPool): Descriptor pool used to resolve Any types. - allow_unknown_field: if True, skip over unknown field and keep parsing. - Avoid to use this option if possible. It may hide some errors (e.g. - spelling error on field name) - - Returns: - Message: A new message passed from text. - - Raises: - ParseError: On text parsing problems. - """ - new_message = message_class() - text_format.Parse( - text=text, - message=new_message, - allow_unknown_extension=allow_unknown_extension, - allow_field_number=allow_field_number, - descriptor_pool=descriptor_pool, - allow_unknown_field=allow_unknown_field, - ) - return new_message diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/pyext/__init__.py b/.venv/lib/python3.10/site-packages/google/protobuf/pyext/__init__.py old mode 100755 new mode 100644 diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/pyext/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/pyext/__pycache__/__init__.cpython-310.pyc index 44478659..50ae5cc0 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/pyext/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/pyext/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/pyext/__pycache__/cpp_message.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/pyext/__pycache__/cpp_message.cpython-310.pyc index 4b2b109f..c165b6c6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/pyext/__pycache__/cpp_message.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/protobuf/pyext/__pycache__/cpp_message.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/pyext/cpp_message.py b/.venv/lib/python3.10/site-packages/google/protobuf/pyext/cpp_message.py old mode 100755 new mode 100644 diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/reflection.py b/.venv/lib/python3.10/site-packages/google/protobuf/reflection.py old mode 100755 new mode 100644 index a29f41a0..0943c2fe --- a/.venv/lib/python3.10/site-packages/google/protobuf/reflection.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/reflection.py @@ -34,3 +34,52 @@ from google.protobuf import symbol_database GeneratedProtocolMessageType = message_factory._GENERATED_PROTOCOL_MESSAGE_TYPE MESSAGE_CLASS_CACHE = {} + + +# Deprecated. Please NEVER use reflection.ParseMessage(). +def ParseMessage(descriptor, byte_str): + """Generate a new Message instance from this Descriptor and a byte string. + + DEPRECATED: ParseMessage is deprecated because it is using MakeClass(). + Please use MessageFactory.GetMessageClass() instead. + + Args: + descriptor: Protobuf Descriptor object + byte_str: Serialized protocol buffer byte string + + Returns: + Newly created protobuf Message object. + """ + warnings.warn( + 'reflection.ParseMessage() is deprecated. Please use ' + 'MessageFactory.GetMessageClass() and message.ParseFromString() instead. ' + 'reflection.ParseMessage() will be removed in Jan 2025.', + stacklevel=2, + ) + result_class = MakeClass(descriptor) + new_msg = result_class() + new_msg.ParseFromString(byte_str) + return new_msg + + +# Deprecated. Please NEVER use reflection.MakeClass(). +def MakeClass(descriptor): + """Construct a class object for a protobuf described by descriptor. + + DEPRECATED: use MessageFactory.GetMessageClass() instead. + + Args: + descriptor: A descriptor.Descriptor object describing the protobuf. + Returns: + The Message class object described by the descriptor. + """ + warnings.warn( + 'reflection.MakeClass() is deprecated. Please use ' + 'MessageFactory.GetMessageClass() instead. ' + 'reflection.MakeClass() will be removed in Jan 2025.', + stacklevel=2, + ) + # Original implementation leads to duplicate message classes, which won't play + # well with extensions. Message factory info is also missing. + # Redirect to message_factory. + return message_factory.GetMessageClass(descriptor) diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/runtime_version.py b/.venv/lib/python3.10/site-packages/google/protobuf/runtime_version.py old mode 100755 new mode 100644 index 02889243..e20e4653 --- a/.venv/lib/python3.10/site-packages/google/protobuf/runtime_version.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/runtime_version.py @@ -27,9 +27,9 @@ class Domain(Enum): # the Protobuf release process. Do not edit them manually. # These OSS versions are not stripped to avoid merging conflicts. OSS_DOMAIN = Domain.PUBLIC -OSS_MAJOR = 6 -OSS_MINOR = 30 -OSS_PATCH = 2 +OSS_MAJOR = 5 +OSS_MINOR = 29 +OSS_PATCH = 4 OSS_SUFFIX = '' DOMAIN = OSS_DOMAIN diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/service_reflection.py b/.venv/lib/python3.10/site-packages/google/protobuf/service_reflection.py old mode 100755 new mode 100644 diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/source_context_pb2.py b/.venv/lib/python3.10/site-packages/google/protobuf/source_context_pb2.py old mode 100755 new mode 100644 index 3909fdf9..65491f08 --- a/.venv/lib/python3.10/site-packages/google/protobuf/source_context_pb2.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/source_context_pb2.py @@ -2,7 +2,7 @@ # Generated by the protocol buffer compiler. DO NOT EDIT! # NO CHECKED-IN PROTOBUF GENCODE # source: google/protobuf/source_context.proto -# Protobuf Python Version: 6.30.2 +# Protobuf Python Version: 5.29.4 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool @@ -11,9 +11,9 @@ from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder _runtime_version.ValidateProtobufRuntimeVersion( _runtime_version.Domain.PUBLIC, - 6, - 30, - 2, + 5, + 29, + 4, '', 'google/protobuf/source_context.proto' ) diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/struct_pb2.py b/.venv/lib/python3.10/site-packages/google/protobuf/struct_pb2.py old mode 100755 new mode 100644 index 0176d30f..cf50eb55 --- a/.venv/lib/python3.10/site-packages/google/protobuf/struct_pb2.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/struct_pb2.py @@ -2,7 +2,7 @@ # Generated by the protocol buffer compiler. DO NOT EDIT! # NO CHECKED-IN PROTOBUF GENCODE # source: google/protobuf/struct.proto -# Protobuf Python Version: 6.30.2 +# Protobuf Python Version: 5.29.4 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool @@ -11,9 +11,9 @@ from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder _runtime_version.ValidateProtobufRuntimeVersion( _runtime_version.Domain.PUBLIC, - 6, - 30, - 2, + 5, + 29, + 4, '', 'google/protobuf/struct.proto' ) diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/symbol_database.py b/.venv/lib/python3.10/site-packages/google/protobuf/symbol_database.py old mode 100755 new mode 100644 index a538d5d6..1941e811 --- a/.venv/lib/python3.10/site-packages/google/protobuf/symbol_database.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/symbol_database.py @@ -51,6 +51,24 @@ class SymbolDatabase(): """Initializes a new SymbolDatabase.""" self.pool = pool or descriptor_pool.DescriptorPool() + def GetPrototype(self, descriptor): + warnings.warn('SymbolDatabase.GetPrototype() is deprecated. Please ' + 'use message_factory.GetMessageClass() instead. ' + 'SymbolDatabase.GetPrototype() will be removed soon.') + return message_factory.GetMessageClass(descriptor) + + def CreatePrototype(self, descriptor): + warnings.warn('Directly call CreatePrototype() is wrong. Please use ' + 'message_factory.GetMessageClass() instead. ' + 'SymbolDatabase.CreatePrototype() will be removed soon.') + return message_factory._InternalCreateMessageClass(descriptor) + + def GetMessages(self, files): + warnings.warn('SymbolDatabase.GetMessages() is deprecated. Please use ' + 'message_factory.GetMessageClassedForFiles() instead. ' + 'SymbolDatabase.GetMessages() will be removed soon.') + return message_factory.GetMessageClassedForFiles(files, self.pool) + def RegisterMessage(self, message): """Registers the given message type in the local database. diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/testdata/__init__.py b/.venv/lib/python3.10/site-packages/google/protobuf/testdata/__init__.py old mode 100755 new mode 100644 diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/testdata/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/testdata/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index ec525c79..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/testdata/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/text_encoding.py b/.venv/lib/python3.10/site-packages/google/protobuf/text_encoding.py old mode 100755 new mode 100644 diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/text_format.py b/.venv/lib/python3.10/site-packages/google/protobuf/text_format.py old mode 100755 new mode 100644 index e8e1a30d..7e17b43e --- a/.venv/lib/python3.10/site-packages/google/protobuf/text_format.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/text_format.py @@ -42,7 +42,6 @@ _INTEGER_CHECKERS = (type_checkers.Uint32ValueChecker(), type_checkers.Int64ValueChecker()) _FLOAT_INFINITY = re.compile('-?inf(?:inity)?f?$', re.IGNORECASE) _FLOAT_NAN = re.compile('nanf?$', re.IGNORECASE) -_FLOAT_OCTAL_PREFIX = re.compile('-?0[0-9]+') _QUOTES = frozenset(("'", '"')) _ANY_FULL_TYPE_NAME = 'google.protobuf.Any' _DEBUG_STRING_SILENT_MARKER = '\t ' @@ -431,7 +430,7 @@ class _Printer(object): return False packed_message = _BuildMessageFromTypeName(message.TypeName(), self.descriptor_pool) - if packed_message is not None: + if packed_message: packed_message.MergeFromString(message.value) colon = ':' if self.force_colon else '' self.out.write('%s[%s]%s ' % (self.indent * ' ', message.type_url, colon)) @@ -1166,9 +1165,7 @@ class _Parser(object): else: # For field that doesn't represent presence, try best effort to # check multiple scalars by compare to default values. - duplicate_error = not decoder.IsDefaultScalarValue( - getattr(message, field.name) - ) + duplicate_error = bool(getattr(message, field.name)) if duplicate_error: raise tokenizer.ParseErrorPreviousToken( @@ -1792,8 +1789,6 @@ def ParseFloat(text): Raises: ValueError: If a floating point number couldn't be parsed. """ - if _FLOAT_OCTAL_PREFIX.match(text): - raise ValueError('Invalid octal float: %s' % text) try: # Assume Python compatible syntax. return float(text) @@ -1809,7 +1804,7 @@ def ParseFloat(text): else: # assume '1.0f' format try: - return float(text.rstrip('fF')) + return float(text.rstrip('f')) except ValueError: raise ValueError("Couldn't parse float: %s" % text) diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/timestamp.py b/.venv/lib/python3.10/site-packages/google/protobuf/timestamp.py old mode 100755 new mode 100644 diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/timestamp_pb2.py b/.venv/lib/python3.10/site-packages/google/protobuf/timestamp_pb2.py old mode 100755 new mode 100644 index 82d67ceb..2bf7cef3 --- a/.venv/lib/python3.10/site-packages/google/protobuf/timestamp_pb2.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/timestamp_pb2.py @@ -2,7 +2,7 @@ # Generated by the protocol buffer compiler. DO NOT EDIT! # NO CHECKED-IN PROTOBUF GENCODE # source: google/protobuf/timestamp.proto -# Protobuf Python Version: 6.30.2 +# Protobuf Python Version: 5.29.4 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool @@ -11,9 +11,9 @@ from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder _runtime_version.ValidateProtobufRuntimeVersion( _runtime_version.Domain.PUBLIC, - 6, - 30, - 2, + 5, + 29, + 4, '', 'google/protobuf/timestamp.proto' ) diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/type_pb2.py b/.venv/lib/python3.10/site-packages/google/protobuf/type_pb2.py old mode 100755 new mode 100644 index 39ded780..4c63c33c --- a/.venv/lib/python3.10/site-packages/google/protobuf/type_pb2.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/type_pb2.py @@ -2,7 +2,7 @@ # Generated by the protocol buffer compiler. DO NOT EDIT! # NO CHECKED-IN PROTOBUF GENCODE # source: google/protobuf/type.proto -# Protobuf Python Version: 6.30.2 +# Protobuf Python Version: 5.29.4 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool @@ -11,9 +11,9 @@ from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder _runtime_version.ValidateProtobufRuntimeVersion( _runtime_version.Domain.PUBLIC, - 6, - 30, - 2, + 5, + 29, + 4, '', 'google/protobuf/type.proto' ) diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/unknown_fields.py b/.venv/lib/python3.10/site-packages/google/protobuf/unknown_fields.py old mode 100755 new mode 100644 index 6c16a2d3..9b1e5493 --- a/.venv/lib/python3.10/site-packages/google/protobuf/unknown_fields.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/unknown_fields.py @@ -72,12 +72,13 @@ else: InternalAdd(field_number, wire_format.WIRETYPE_LENGTH_DELIMITED, data) else: for tag_bytes, buffer in unknown_fields: - field_number, wire_type = decoder.DecodeTag(tag_bytes) + # pylint: disable=protected-access + (tag, _) = decoder._DecodeVarint(tag_bytes, 0) + field_number, wire_type = wire_format.UnpackTag(tag) if field_number == 0: raise RuntimeError('Field number 0 is illegal.') (data, _) = decoder._DecodeUnknownField( - memoryview(buffer), 0, len(buffer), field_number, wire_type - ) + memoryview(buffer), 0, wire_type) InternalAdd(field_number, wire_type, data) def __getitem__(self, index): diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/util/__init__.py b/.venv/lib/python3.10/site-packages/google/protobuf/util/__init__.py old mode 100755 new mode 100644 diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/util/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/protobuf/util/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index dadd8841..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/util/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/protobuf/wrappers_pb2.py b/.venv/lib/python3.10/site-packages/google/protobuf/wrappers_pb2.py old mode 100755 new mode 100644 index 34a7a082..d2f98b68 --- a/.venv/lib/python3.10/site-packages/google/protobuf/wrappers_pb2.py +++ b/.venv/lib/python3.10/site-packages/google/protobuf/wrappers_pb2.py @@ -2,7 +2,7 @@ # Generated by the protocol buffer compiler. DO NOT EDIT! # NO CHECKED-IN PROTOBUF GENCODE # source: google/protobuf/wrappers.proto -# Protobuf Python Version: 6.30.2 +# Protobuf Python Version: 5.29.4 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool @@ -11,9 +11,9 @@ from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder _runtime_version.ValidateProtobufRuntimeVersion( _runtime_version.Domain.PUBLIC, - 6, - 30, - 2, + 5, + 29, + 4, '', 'google/protobuf/wrappers.proto' ) diff --git a/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/__init__.cpython-310.pyc index 51129f0e..3c8cda5a 100644 Binary files a/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/_download.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/_download.cpython-310.pyc index b626d8eb..05d74d45 100644 Binary files a/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/_download.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/_download.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/_helpers.cpython-310.pyc index 74087cd9..42ec6820 100644 Binary files a/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/_helpers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/_helpers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/_upload.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/_upload.cpython-310.pyc index ec4366af..a448a74d 100644 Binary files a/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/_upload.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/_upload.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/common.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/common.cpython-310.pyc index 62b54934..42fc2e02 100644 Binary files a/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/common.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/common.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/resumable_media/requests/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/resumable_media/requests/__pycache__/__init__.cpython-310.pyc index 4eacc542..c8b9fb8f 100644 Binary files a/.venv/lib/python3.10/site-packages/google/resumable_media/requests/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/resumable_media/requests/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/resumable_media/requests/__pycache__/_request_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/resumable_media/requests/__pycache__/_request_helpers.cpython-310.pyc index 6e09b1e3..2dcaba03 100644 Binary files a/.venv/lib/python3.10/site-packages/google/resumable_media/requests/__pycache__/_request_helpers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/resumable_media/requests/__pycache__/_request_helpers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/resumable_media/requests/__pycache__/download.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/resumable_media/requests/__pycache__/download.cpython-310.pyc index 6dda8ac6..c832c7c6 100644 Binary files a/.venv/lib/python3.10/site-packages/google/resumable_media/requests/__pycache__/download.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/resumable_media/requests/__pycache__/download.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/resumable_media/requests/__pycache__/upload.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/resumable_media/requests/__pycache__/upload.cpython-310.pyc index bba1614b..85072fae 100644 Binary files a/.venv/lib/python3.10/site-packages/google/resumable_media/requests/__pycache__/upload.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/resumable_media/requests/__pycache__/upload.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/rpc/__pycache__/code_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/rpc/__pycache__/code_pb2.cpython-310.pyc index 82882fb2..4b7c44fd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/rpc/__pycache__/code_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/rpc/__pycache__/code_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/rpc/__pycache__/error_details_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/rpc/__pycache__/error_details_pb2.cpython-310.pyc index a11ba03b..fff2d124 100644 Binary files a/.venv/lib/python3.10/site-packages/google/rpc/__pycache__/error_details_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/rpc/__pycache__/error_details_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/rpc/__pycache__/http_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/rpc/__pycache__/http_pb2.cpython-310.pyc deleted file mode 100644 index c46f12a5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/rpc/__pycache__/http_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/rpc/__pycache__/status_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/rpc/__pycache__/status_pb2.cpython-310.pyc index a246dff6..d83ec59b 100644 Binary files a/.venv/lib/python3.10/site-packages/google/rpc/__pycache__/status_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/rpc/__pycache__/status_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/rpc/context/__pycache__/attribute_context_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/rpc/context/__pycache__/attribute_context_pb2.cpython-310.pyc deleted file mode 100644 index 943f7964..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/rpc/context/__pycache__/attribute_context_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/rpc/context/__pycache__/audit_context_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/rpc/context/__pycache__/audit_context_pb2.cpython-310.pyc deleted file mode 100644 index d624438a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/rpc/context/__pycache__/audit_context_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/type/__pycache__/calendar_period_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/type/__pycache__/calendar_period_pb2.cpython-310.pyc deleted file mode 100644 index 1932a978..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/type/__pycache__/calendar_period_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/type/__pycache__/color_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/type/__pycache__/color_pb2.cpython-310.pyc deleted file mode 100644 index 0406eb1b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/type/__pycache__/color_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/type/__pycache__/date_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/type/__pycache__/date_pb2.cpython-310.pyc index fb06380c..95e520fd 100644 Binary files a/.venv/lib/python3.10/site-packages/google/type/__pycache__/date_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/type/__pycache__/date_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/type/__pycache__/datetime_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/type/__pycache__/datetime_pb2.cpython-310.pyc deleted file mode 100644 index 13ef9ea0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/type/__pycache__/datetime_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/type/__pycache__/dayofweek_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/type/__pycache__/dayofweek_pb2.cpython-310.pyc deleted file mode 100644 index a7c1f7da..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/type/__pycache__/dayofweek_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/type/__pycache__/decimal_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/type/__pycache__/decimal_pb2.cpython-310.pyc deleted file mode 100644 index 6258d8cf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/type/__pycache__/decimal_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/type/__pycache__/expr_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/type/__pycache__/expr_pb2.cpython-310.pyc index 4ebee020..f88f0a7e 100644 Binary files a/.venv/lib/python3.10/site-packages/google/type/__pycache__/expr_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/type/__pycache__/expr_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/type/__pycache__/fraction_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/type/__pycache__/fraction_pb2.cpython-310.pyc deleted file mode 100644 index e8d8843c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/type/__pycache__/fraction_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/type/__pycache__/interval_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/type/__pycache__/interval_pb2.cpython-310.pyc index b5fdf824..02908e87 100644 Binary files a/.venv/lib/python3.10/site-packages/google/type/__pycache__/interval_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/type/__pycache__/interval_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/type/__pycache__/latlng_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/type/__pycache__/latlng_pb2.cpython-310.pyc index 6d418aba..a45cc489 100644 Binary files a/.venv/lib/python3.10/site-packages/google/type/__pycache__/latlng_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/type/__pycache__/latlng_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/type/__pycache__/localized_text_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/type/__pycache__/localized_text_pb2.cpython-310.pyc deleted file mode 100644 index c87181f5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/type/__pycache__/localized_text_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/type/__pycache__/money_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/type/__pycache__/money_pb2.cpython-310.pyc index d780eff0..54cba6df 100644 Binary files a/.venv/lib/python3.10/site-packages/google/type/__pycache__/money_pb2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/google/type/__pycache__/money_pb2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/google/type/__pycache__/month_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/type/__pycache__/month_pb2.cpython-310.pyc deleted file mode 100644 index 33d26fa4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/type/__pycache__/month_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/type/__pycache__/phone_number_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/type/__pycache__/phone_number_pb2.cpython-310.pyc deleted file mode 100644 index 62972c08..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/type/__pycache__/phone_number_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/type/__pycache__/postal_address_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/type/__pycache__/postal_address_pb2.cpython-310.pyc deleted file mode 100644 index 72a9734c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/type/__pycache__/postal_address_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/type/__pycache__/quaternion_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/type/__pycache__/quaternion_pb2.cpython-310.pyc deleted file mode 100644 index 723aefac..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/type/__pycache__/quaternion_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google/type/__pycache__/timeofday_pb2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google/type/__pycache__/timeofday_pb2.cpython-310.pyc deleted file mode 100644 index e02f6c9b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/type/__pycache__/timeofday_pb2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google_crc32c/__pycache__/__config__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google_crc32c/__pycache__/__config__.cpython-310.pyc deleted file mode 100644 index 376eed83..00000000 Binary files a/.venv/lib/python3.10/site-packages/google_crc32c/__pycache__/__config__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google_crc32c/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google_crc32c/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 68e8f791..00000000 Binary files a/.venv/lib/python3.10/site-packages/google_crc32c/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google_crc32c/__pycache__/_checksum.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google_crc32c/__pycache__/_checksum.cpython-310.pyc deleted file mode 100644 index 923a5df5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google_crc32c/__pycache__/_checksum.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google_crc32c/__pycache__/cext.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google_crc32c/__pycache__/cext.cpython-310.pyc deleted file mode 100644 index f06b8fe0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google_crc32c/__pycache__/cext.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/google_crc32c/__pycache__/python.cpython-310.pyc b/.venv/lib/python3.10/site-packages/google_crc32c/__pycache__/python.cpython-310.pyc deleted file mode 100644 index 78e3d510..00000000 Binary files a/.venv/lib/python3.10/site-packages/google_crc32c/__pycache__/python.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 7eca3de1..00000000 Binary files a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/_auth.cpython-310.pyc b/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/_auth.cpython-310.pyc deleted file mode 100644 index f5e043d3..00000000 Binary files a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/_auth.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/_helpers.cpython-310.pyc deleted file mode 100644 index 2ae7fc19..00000000 Binary files a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/_helpers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/channel.cpython-310.pyc b/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/channel.cpython-310.pyc deleted file mode 100644 index 1bf4395b..00000000 Binary files a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/channel.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/discovery.cpython-310.pyc b/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/discovery.cpython-310.pyc deleted file mode 100644 index 28b2be5e..00000000 Binary files a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/discovery.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/errors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/errors.cpython-310.pyc deleted file mode 100644 index f1366d00..00000000 Binary files a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/errors.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/http.cpython-310.pyc b/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/http.cpython-310.pyc deleted file mode 100644 index e6156569..00000000 Binary files a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/http.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/mimeparse.cpython-310.pyc b/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/mimeparse.cpython-310.pyc deleted file mode 100644 index 3ed85f84..00000000 Binary files a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/mimeparse.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/model.cpython-310.pyc deleted file mode 100644 index 3252c335..00000000 Binary files a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/model.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/sample_tools.cpython-310.pyc b/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/sample_tools.cpython-310.pyc deleted file mode 100644 index 6247e25a..00000000 Binary files a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/sample_tools.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/schema.cpython-310.pyc b/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/schema.cpython-310.pyc deleted file mode 100644 index 3ba53aaa..00000000 Binary files a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/schema.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/version.cpython-310.pyc deleted file mode 100644 index 6c8a091f..00000000 Binary files a/.venv/lib/python3.10/site-packages/googleapiclient/__pycache__/version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/googleapiclient/discovery_cache/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/googleapiclient/discovery_cache/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 945e43ba..00000000 Binary files a/.venv/lib/python3.10/site-packages/googleapiclient/discovery_cache/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/googleapiclient/discovery_cache/__pycache__/appengine_memcache.cpython-310.pyc b/.venv/lib/python3.10/site-packages/googleapiclient/discovery_cache/__pycache__/appengine_memcache.cpython-310.pyc deleted file mode 100644 index cce5615d..00000000 Binary files a/.venv/lib/python3.10/site-packages/googleapiclient/discovery_cache/__pycache__/appengine_memcache.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/googleapiclient/discovery_cache/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/googleapiclient/discovery_cache/__pycache__/base.cpython-310.pyc deleted file mode 100644 index 3b990ec4..00000000 Binary files a/.venv/lib/python3.10/site-packages/googleapiclient/discovery_cache/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/googleapiclient/discovery_cache/__pycache__/file_cache.cpython-310.pyc b/.venv/lib/python3.10/site-packages/googleapiclient/discovery_cache/__pycache__/file_cache.cpython-310.pyc deleted file mode 100644 index 5c1fc565..00000000 Binary files a/.venv/lib/python3.10/site-packages/googleapiclient/discovery_cache/__pycache__/file_cache.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 3adb699c..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/_compat.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/__pycache__/_compat.cpython-310.pyc deleted file mode 100644 index dc0ea16d..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/_compat.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/_defaults.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/__pycache__/_defaults.cpython-310.pyc deleted file mode 100644 index 9680c7ad..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/_defaults.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/_tools.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/__pycache__/_tools.cpython-310.pyc deleted file mode 100644 index 17d0e983..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/_tools.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/__pycache__/base.cpython-310.pyc deleted file mode 100644 index 4cf8faed..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/copying.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/__pycache__/copying.cpython-310.pyc deleted file mode 100644 index f9565f02..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/copying.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/dot.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/__pycache__/dot.cpython-310.pyc deleted file mode 100644 index 879ac778..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/dot.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/encoding.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/__pycache__/encoding.cpython-310.pyc deleted file mode 100644 index 16fde405..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/encoding.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/__pycache__/exceptions.cpython-310.pyc deleted file mode 100644 index d8198ae3..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/exceptions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/graphs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/__pycache__/graphs.cpython-310.pyc deleted file mode 100644 index 85fddab1..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/graphs.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/jupyter_integration.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/__pycache__/jupyter_integration.cpython-310.pyc deleted file mode 100644 index eb7a2f6b..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/jupyter_integration.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/piping.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/__pycache__/piping.cpython-310.pyc deleted file mode 100644 index 090aaf1b..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/piping.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/quoting.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/__pycache__/quoting.cpython-310.pyc deleted file mode 100644 index 3884f318..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/quoting.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/rendering.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/__pycache__/rendering.cpython-310.pyc deleted file mode 100644 index 1fdeea45..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/rendering.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/saving.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/__pycache__/saving.cpython-310.pyc deleted file mode 100644 index 89f41158..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/saving.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/sources.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/__pycache__/sources.cpython-310.pyc deleted file mode 100644 index b80aab73..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/sources.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/unflattening.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/__pycache__/unflattening.cpython-310.pyc deleted file mode 100644 index 00fe13d1..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/__pycache__/unflattening.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 7d97174c..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/dot_command.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/dot_command.cpython-310.pyc deleted file mode 100644 index 28d73834..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/dot_command.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/execute.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/execute.cpython-310.pyc deleted file mode 100644 index 34adaaef..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/execute.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/mixins.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/mixins.cpython-310.pyc deleted file mode 100644 index 9b294ced..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/mixins.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/piping.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/piping.cpython-310.pyc deleted file mode 100644 index 377e46e0..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/piping.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/rendering.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/rendering.cpython-310.pyc deleted file mode 100644 index 0da5a755..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/rendering.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/unflattening.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/unflattening.cpython-310.pyc deleted file mode 100644 index 2118f19b..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/unflattening.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/upstream_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/upstream_version.cpython-310.pyc deleted file mode 100644 index f2be09bf..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/upstream_version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/viewing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/viewing.cpython-310.pyc deleted file mode 100644 index 9e475076..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/backend/__pycache__/viewing.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/parameters/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/parameters/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 74b668c7..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/parameters/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/parameters/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/parameters/__pycache__/base.cpython-310.pyc deleted file mode 100644 index cad366a7..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/parameters/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/parameters/__pycache__/engines.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/parameters/__pycache__/engines.cpython-310.pyc deleted file mode 100644 index 7aa0d215..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/parameters/__pycache__/engines.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/parameters/__pycache__/formats.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/parameters/__pycache__/formats.cpython-310.pyc deleted file mode 100644 index d9e49fec..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/parameters/__pycache__/formats.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/parameters/__pycache__/formatters.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/parameters/__pycache__/formatters.cpython-310.pyc deleted file mode 100644 index e7b94e72..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/parameters/__pycache__/formatters.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/parameters/__pycache__/mixins.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/parameters/__pycache__/mixins.cpython-310.pyc deleted file mode 100644 index e36032c1..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/parameters/__pycache__/mixins.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/graphviz/parameters/__pycache__/renderers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/graphviz/parameters/__pycache__/renderers.cpython-310.pyc deleted file mode 100644 index 04bc15cf..00000000 Binary files a/.venv/lib/python3.10/site-packages/graphviz/parameters/__pycache__/renderers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/__pycache__/__init__.cpython-310.pyc index c32fdaf6..f719ac46 100644 Binary files a/.venv/lib/python3.10/site-packages/greenlet/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/greenlet/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/platform/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/platform/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 78ab5368..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/platform/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 9872a3e3..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/fail_clearing_run_switches.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/fail_clearing_run_switches.cpython-310.pyc deleted file mode 100644 index 1d566503..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/fail_clearing_run_switches.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/fail_cpp_exception.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/fail_cpp_exception.cpython-310.pyc deleted file mode 100644 index 6e59e064..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/fail_cpp_exception.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/fail_initialstub_already_started.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/fail_initialstub_already_started.cpython-310.pyc deleted file mode 100644 index 22bb9ec6..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/fail_initialstub_already_started.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/fail_slp_switch.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/fail_slp_switch.cpython-310.pyc deleted file mode 100644 index 3ad831a5..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/fail_slp_switch.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/fail_switch_three_greenlets.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/fail_switch_three_greenlets.cpython-310.pyc deleted file mode 100644 index ed4117fa..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/fail_switch_three_greenlets.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/fail_switch_three_greenlets2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/fail_switch_three_greenlets2.cpython-310.pyc deleted file mode 100644 index 0d70bf96..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/fail_switch_three_greenlets2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/fail_switch_two_greenlets.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/fail_switch_two_greenlets.cpython-310.pyc deleted file mode 100644 index ca22f08b..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/fail_switch_two_greenlets.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/leakcheck.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/leakcheck.cpython-310.pyc deleted file mode 100644 index 2646475e..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/leakcheck.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_contextvars.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_contextvars.cpython-310.pyc deleted file mode 100644 index 1f9cd888..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_contextvars.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_cpp.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_cpp.cpython-310.pyc deleted file mode 100644 index 7d0d5cad..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_cpp.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_extension_interface.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_extension_interface.cpython-310.pyc deleted file mode 100644 index f193c2ae..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_extension_interface.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_gc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_gc.cpython-310.pyc deleted file mode 100644 index 81fbf284..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_gc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_generator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_generator.cpython-310.pyc deleted file mode 100644 index fa4a0c5e..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_generator.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_generator_nested.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_generator_nested.cpython-310.pyc deleted file mode 100644 index 97faa31f..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_generator_nested.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_greenlet.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_greenlet.cpython-310.pyc deleted file mode 100644 index 7f6ad443..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_greenlet.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_greenlet_trash.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_greenlet_trash.cpython-310.pyc deleted file mode 100644 index 7e629599..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_greenlet_trash.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_leaks.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_leaks.cpython-310.pyc deleted file mode 100644 index f6a72920..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_leaks.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_stack_saved.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_stack_saved.cpython-310.pyc deleted file mode 100644 index 120e23af..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_stack_saved.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_throw.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_throw.cpython-310.pyc deleted file mode 100644 index bcad2cc1..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_throw.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_tracing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_tracing.cpython-310.pyc deleted file mode 100644 index 16fca4fa..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_tracing.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_version.cpython-310.pyc deleted file mode 100644 index 4218da79..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_weakref.cpython-310.pyc b/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_weakref.cpython-310.pyc deleted file mode 100644 index 359d4139..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/tests/__pycache__/test_weakref.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/__pycache__/__init__.cpython-310.pyc index 0eb7bda2..eb94e0f0 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_auth.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/__pycache__/_auth.cpython-310.pyc deleted file mode 100644 index 956caed9..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_auth.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_channel.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/__pycache__/_channel.cpython-310.pyc index be104d8f..2dc63ea0 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_channel.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/__pycache__/_channel.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_common.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/__pycache__/_common.cpython-310.pyc index 1e31c7fe..a9d4afc7 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_common.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/__pycache__/_common.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_compression.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/__pycache__/_compression.cpython-310.pyc index dd3d5a01..e9abeb33 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_compression.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/__pycache__/_compression.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_grpcio_metadata.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/__pycache__/_grpcio_metadata.cpython-310.pyc index 5b6eedc3..0cc410ea 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_grpcio_metadata.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/__pycache__/_grpcio_metadata.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_interceptor.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/__pycache__/_interceptor.cpython-310.pyc deleted file mode 100644 index c7e46b5f..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_interceptor.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_observability.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/__pycache__/_observability.cpython-310.pyc index 9e7f4fbe..cb7ac5fa 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_observability.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/__pycache__/_observability.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_plugin_wrapping.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/__pycache__/_plugin_wrapping.cpython-310.pyc deleted file mode 100644 index ab4ca88b..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_plugin_wrapping.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_runtime_protos.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/__pycache__/_runtime_protos.cpython-310.pyc index a558477e..89a551bc 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_runtime_protos.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/__pycache__/_runtime_protos.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_server.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/__pycache__/_server.cpython-310.pyc deleted file mode 100644 index ba00ab2e..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_server.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_simple_stubs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/__pycache__/_simple_stubs.cpython-310.pyc index e9083e2c..62e44cee 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_simple_stubs.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/__pycache__/_simple_stubs.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_typing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/__pycache__/_typing.cpython-310.pyc index 77fe143f..895f3eae 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_typing.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/__pycache__/_typing.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_utilities.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/__pycache__/_utilities.cpython-310.pyc deleted file mode 100644 index f192e540..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_utilities.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/_cython/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/_cython/__pycache__/__init__.cpython-310.pyc index 6b7b8102..33d5bf19 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/_cython/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/_cython/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/_cython/_cygrpc/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/_cython/_cygrpc/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index bcbad68c..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/_cython/_cygrpc/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/_cython/cygrpc.cpython-310-x86_64-linux-gnu.so b/.venv/lib/python3.10/site-packages/grpc/_cython/cygrpc.cpython-310-x86_64-linux-gnu.so index 7e03495e..e8b5b695 100755 Binary files a/.venv/lib/python3.10/site-packages/grpc/_cython/cygrpc.cpython-310-x86_64-linux-gnu.so and b/.venv/lib/python3.10/site-packages/grpc/_cython/cygrpc.cpython-310-x86_64-linux-gnu.so differ diff --git a/.venv/lib/python3.10/site-packages/grpc/_grpcio_metadata.py b/.venv/lib/python3.10/site-packages/grpc/_grpcio_metadata.py index e5c16699..63ff17d1 100644 --- a/.venv/lib/python3.10/site-packages/grpc/_grpcio_metadata.py +++ b/.venv/lib/python3.10/site-packages/grpc/_grpcio_metadata.py @@ -1 +1 @@ -__version__ = """1.72.0""" \ No newline at end of file +__version__ = """1.71.0""" \ No newline at end of file diff --git a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/__init__.cpython-310.pyc index 22003684..b4b43aa9 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_base_call.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_base_call.cpython-310.pyc index 5f5bfd0c..c48fccc3 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_base_call.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_base_call.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_base_channel.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_base_channel.cpython-310.pyc index 6f541899..5125ef39 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_base_channel.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_base_channel.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_base_server.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_base_server.cpython-310.pyc index f5b2c270..1797a4b2 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_base_server.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_base_server.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_call.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_call.cpython-310.pyc index a259da29..d5310a92 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_call.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_call.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_channel.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_channel.cpython-310.pyc index 3be29fa7..c88a61f0 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_channel.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_channel.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_interceptor.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_interceptor.cpython-310.pyc index 171dc7cd..a1162061 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_interceptor.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_interceptor.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_metadata.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_metadata.cpython-310.pyc index 90ed6c9a..956faeb0 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_metadata.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_metadata.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_server.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_server.cpython-310.pyc index d1ed8db7..ecb47cdf 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_server.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_server.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_typing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_typing.cpython-310.pyc index 00e13489..dfc84696 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_typing.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_typing.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_utils.cpython-310.pyc index 7449f76c..df3de290 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/beta/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/beta/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index faab80b6..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/beta/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/beta/__pycache__/_client_adaptations.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/beta/__pycache__/_client_adaptations.cpython-310.pyc deleted file mode 100644 index cfb01fca..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/beta/__pycache__/_client_adaptations.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/beta/__pycache__/_metadata.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/beta/__pycache__/_metadata.cpython-310.pyc deleted file mode 100644 index 6a40b333..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/beta/__pycache__/_metadata.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/beta/__pycache__/_server_adaptations.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/beta/__pycache__/_server_adaptations.cpython-310.pyc deleted file mode 100644 index 4f3c3cbc..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/beta/__pycache__/_server_adaptations.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/beta/__pycache__/implementations.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/beta/__pycache__/implementations.cpython-310.pyc deleted file mode 100644 index 43e38069..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/beta/__pycache__/implementations.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/beta/__pycache__/interfaces.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/beta/__pycache__/interfaces.cpython-310.pyc deleted file mode 100644 index f399f4d9..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/beta/__pycache__/interfaces.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/beta/__pycache__/utilities.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/beta/__pycache__/utilities.cpython-310.pyc deleted file mode 100644 index 863b16f8..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/beta/__pycache__/utilities.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/experimental/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/experimental/__pycache__/__init__.cpython-310.pyc index 8820030c..d45506c5 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/experimental/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/experimental/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/experimental/__pycache__/gevent.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/experimental/__pycache__/gevent.cpython-310.pyc deleted file mode 100644 index 8dd1f59a..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/experimental/__pycache__/gevent.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/experimental/__pycache__/session_cache.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/experimental/__pycache__/session_cache.cpython-310.pyc deleted file mode 100644 index b1ee227a..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/experimental/__pycache__/session_cache.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/experimental/aio/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/experimental/aio/__pycache__/__init__.cpython-310.pyc index fedacd76..7d1fe6d3 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc/experimental/aio/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc/experimental/aio/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc/framework/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/framework/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index f693ce1b..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/framework/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/framework/common/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/framework/common/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 65900819..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/framework/common/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/framework/common/__pycache__/cardinality.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/framework/common/__pycache__/cardinality.cpython-310.pyc deleted file mode 100644 index ebe95720..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/framework/common/__pycache__/cardinality.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/framework/common/__pycache__/style.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/framework/common/__pycache__/style.cpython-310.pyc deleted file mode 100644 index bdbbd597..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/framework/common/__pycache__/style.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/framework/foundation/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/framework/foundation/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index b58d0034..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/framework/foundation/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/framework/foundation/__pycache__/abandonment.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/framework/foundation/__pycache__/abandonment.cpython-310.pyc deleted file mode 100644 index 18d3f04a..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/framework/foundation/__pycache__/abandonment.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/framework/foundation/__pycache__/callable_util.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/framework/foundation/__pycache__/callable_util.cpython-310.pyc deleted file mode 100644 index 4d697d05..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/framework/foundation/__pycache__/callable_util.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/framework/foundation/__pycache__/future.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/framework/foundation/__pycache__/future.cpython-310.pyc deleted file mode 100644 index 6de436f8..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/framework/foundation/__pycache__/future.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/framework/foundation/__pycache__/logging_pool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/framework/foundation/__pycache__/logging_pool.cpython-310.pyc deleted file mode 100644 index 2049f7c0..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/framework/foundation/__pycache__/logging_pool.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/framework/foundation/__pycache__/stream.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/framework/foundation/__pycache__/stream.cpython-310.pyc deleted file mode 100644 index 123f4bf2..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/framework/foundation/__pycache__/stream.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/framework/foundation/__pycache__/stream_util.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/framework/foundation/__pycache__/stream_util.cpython-310.pyc deleted file mode 100644 index 83c8e051..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/framework/foundation/__pycache__/stream_util.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/framework/interfaces/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/framework/interfaces/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 16d3aa57..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/framework/interfaces/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/framework/interfaces/base/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/framework/interfaces/base/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index dfc015fa..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/framework/interfaces/base/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/framework/interfaces/base/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/framework/interfaces/base/__pycache__/base.cpython-310.pyc deleted file mode 100644 index 5b8a9666..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/framework/interfaces/base/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/framework/interfaces/base/__pycache__/utilities.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/framework/interfaces/base/__pycache__/utilities.cpython-310.pyc deleted file mode 100644 index 92f64780..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/framework/interfaces/base/__pycache__/utilities.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/framework/interfaces/face/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/framework/interfaces/face/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 1fb116f6..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/framework/interfaces/face/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/framework/interfaces/face/__pycache__/face.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/framework/interfaces/face/__pycache__/face.cpython-310.pyc deleted file mode 100644 index 0c5276bc..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/framework/interfaces/face/__pycache__/face.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc/framework/interfaces/face/__pycache__/utilities.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc/framework/interfaces/face/__pycache__/utilities.cpython-310.pyc deleted file mode 100644 index 1ad84d67..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/framework/interfaces/face/__pycache__/utilities.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/grpc_status/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc_status/__pycache__/__init__.cpython-310.pyc index f0f4ab07..a7416782 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc_status/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc_status/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc_status/__pycache__/_async.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc_status/__pycache__/_async.cpython-310.pyc index aa0eee0f..a0bbcbab 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc_status/__pycache__/_async.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc_status/__pycache__/_async.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc_status/__pycache__/_common.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc_status/__pycache__/_common.cpython-310.pyc index 100a084e..83ce3061 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc_status/__pycache__/_common.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc_status/__pycache__/_common.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpc_status/__pycache__/rpc_status.cpython-310.pyc b/.venv/lib/python3.10/site-packages/grpc_status/__pycache__/rpc_status.cpython-310.pyc index f1d17439..1e3425ef 100644 Binary files a/.venv/lib/python3.10/site-packages/grpc_status/__pycache__/rpc_status.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/grpc_status/__pycache__/rpc_status.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/grpcio-1.72.0.dist-info/INSTALLER b/.venv/lib/python3.10/site-packages/grpcio-1.72.0.dist-info/INSTALLER deleted file mode 100644 index a1b589e3..00000000 --- a/.venv/lib/python3.10/site-packages/grpcio-1.72.0.dist-info/INSTALLER +++ /dev/null @@ -1 +0,0 @@ -pip diff --git a/.venv/lib/python3.10/site-packages/grpcio-1.72.0.dist-info/LICENSE b/.venv/lib/python3.10/site-packages/grpcio-1.72.0.dist-info/LICENSE deleted file mode 100644 index 0e09a3e9..00000000 --- a/.venv/lib/python3.10/site-packages/grpcio-1.72.0.dist-info/LICENSE +++ /dev/null @@ -1,610 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - ------------------------------------------------------------ - -BSD 3-Clause License - -Copyright 2016, Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its -contributors may be used to endorse or promote products derived from this -software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF -THE POSSIBILITY OF SUCH DAMAGE. - ------------------------------------------------------------ - -Mozilla Public License Version 2.0 -================================== - -1. Definitions --------------- - -1.1. "Contributor" - means each individual or legal entity that creates, contributes to - the creation of, or owns Covered Software. - -1.2. "Contributor Version" - means the combination of the Contributions of others (if any) used - by a Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - means Source Code Form to which the initial Contributor has attached - the notice in Exhibit A, the Executable Form of such Source Code - Form, and Modifications of such Source Code Form, in each case - including portions thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - (a) that the initial Contributor has attached the notice described - in Exhibit B to the Covered Software; or - - (b) that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the - terms of a Secondary License. - -1.6. "Executable Form" - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - means a work that combines Covered Software with other material, in - a separate file or files, that is not Covered Software. - -1.8. "License" - means this document. - -1.9. "Licensable" - means having the right to grant, to the maximum extent possible, - whether at the time of the initial grant or subsequently, any and - all of the rights conveyed by this License. - -1.10. "Modifications" - means any of the following: - - (a) any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered - Software; or - - (b) any new file in Source Code Form that contains any Covered - Software. - -1.11. "Patent Claims" of a Contributor - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the - License, by the making, using, selling, offering for sale, having - made, import, or transfer of either its Contributions or its - Contributor Version. - -1.12. "Secondary License" - means either the GNU General Public License, Version 2.0, the GNU - Lesser General Public License, Version 2.1, the GNU Affero General - Public License, Version 3.0, or any later versions of those - licenses. - -1.13. "Source Code Form" - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that - controls, is controlled by, or is under common control with You. For - purposes of this definition, "control" means (a) the power, direct - or indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of more than - fifty percent (50%) of the outstanding shares or beneficial - ownership of such entity. - -2. License Grants and Conditions --------------------------------- - -2.1. Grants - -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license: - -(a) under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - -(b) under Patent Claims of such Contributor to make, use, sell, offer - for sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - -The licenses granted in Section 2.1 with respect to any Contribution -become effective for each Contribution on the date the Contributor first -distributes such Contribution. - -2.3. Limitations on Grant Scope - -The licenses granted in this Section 2 are the only rights granted under -this License. No additional rights or licenses will be implied from the -distribution or licensing of Covered Software under this License. -Notwithstanding Section 2.1(b) above, no patent license is granted by a -Contributor: - -(a) for any code that a Contributor has removed from Covered Software; - or - -(b) for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - -(c) under Patent Claims infringed by Covered Software in the absence of - its Contributions. - -This License does not grant any rights in the trademarks, service marks, -or logos of any Contributor (except as may be necessary to comply with -the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - -No Contributor makes additional grants as a result of Your choice to -distribute the Covered Software under a subsequent version of this -License (see Section 10.2) or under the terms of a Secondary License (if -permitted under the terms of Section 3.3). - -2.5. Representation - -Each Contributor represents that the Contributor believes its -Contributions are its original creation(s) or it has sufficient rights -to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - -This License is not intended to limit any rights You have under -applicable copyright doctrines of fair use, fair dealing, or other -equivalents. - -2.7. Conditions - -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted -in Section 2.1. - -3. Responsibilities -------------------- - -3.1. Distribution of Source Form - -All distribution of Covered Software in Source Code Form, including any -Modifications that You create or to which You contribute, must be under -the terms of this License. You must inform recipients that the Source -Code Form of the Covered Software is governed by the terms of this -License, and how they can obtain a copy of this License. You may not -attempt to alter or restrict the recipients' rights in the Source Code -Form. - -3.2. Distribution of Executable Form - -If You distribute Covered Software in Executable Form then: - -(a) such Covered Software must also be made available in Source Code - Form, as described in Section 3.1, and You must inform recipients of - the Executable Form how they can obtain a copy of such Source Code - Form by reasonable means in a timely manner, at a charge no more - than the cost of distribution to the recipient; and - -(b) You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter - the recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - -You may create and distribute a Larger Work under terms of Your choice, -provided that You also comply with the requirements of this License for -the Covered Software. If the Larger Work is a combination of Covered -Software with a work governed by one or more Secondary Licenses, and the -Covered Software is not Incompatible With Secondary Licenses, this -License permits You to additionally distribute such Covered Software -under the terms of such Secondary License(s), so that the recipient of -the Larger Work may, at their option, further distribute the Covered -Software under the terms of either this License or such Secondary -License(s). - -3.4. Notices - -You may not remove or alter the substance of any license notices -(including copyright notices, patent notices, disclaimers of warranty, -or limitations of liability) contained within the Source Code Form of -the Covered Software, except that You may alter any license notices to -the extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - -You may choose to offer, and to charge a fee for, warranty, support, -indemnity or liability obligations to one or more recipients of Covered -Software. However, You may do so only on Your own behalf, and not on -behalf of any Contributor. You must make it absolutely clear that any -such warranty, support, indemnity, or liability obligation is offered by -You alone, and You hereby agree to indemnify every Contributor for any -liability incurred by such Contributor as a result of warranty, support, -indemnity or liability terms You offer. You may include additional -disclaimers of warranty and limitations of liability specific to any -jurisdiction. - -4. Inability to Comply Due to Statute or Regulation ---------------------------------------------------- - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Software due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description must -be placed in a text file included with all distributions of the Covered -Software under this License. Except to the extent prohibited by statute -or regulation, such description must be sufficiently detailed for a -recipient of ordinary skill to be able to understand it. - -5. Termination --------------- - -5.1. The rights granted under this License will terminate automatically -if You fail to comply with any of its terms. However, if You become -compliant, then the rights granted under this License from a particular -Contributor are reinstated (a) provisionally, unless and until such -Contributor explicitly and finally terminates Your grants, and (b) on an -ongoing basis, if such Contributor fails to notify You of the -non-compliance by some reasonable means prior to 60 days after You have -come back into compliance. Moreover, Your grants from a particular -Contributor are reinstated on an ongoing basis if such Contributor -notifies You of the non-compliance by some reasonable means, this is the -first time You have received notice of non-compliance with this License -from such Contributor, and You become compliant prior to 30 days after -Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent -infringement claim (excluding declaratory judgment actions, -counter-claims, and cross-claims) alleging that a Contributor Version -directly or indirectly infringes any patent, then the rights granted to -You by any and all Contributors for the Covered Software under Section -2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all -end user license agreements (excluding distributors and resellers) which -have been validly granted by You or Your distributors under this License -prior to termination shall survive termination. - -************************************************************************ -* * -* 6. Disclaimer of Warranty * -* ------------------------- * -* * -* Covered Software is provided under this License on an "as is" * -* basis, without warranty of any kind, either expressed, implied, or * -* statutory, including, without limitation, warranties that the * -* Covered Software is free of defects, merchantable, fit for a * -* particular purpose or non-infringing. The entire risk as to the * -* quality and performance of the Covered Software is with You. * -* Should any Covered Software prove defective in any respect, You * -* (not any Contributor) assume the cost of any necessary servicing, * -* repair, or correction. This disclaimer of warranty constitutes an * -* essential part of this License. No use of any Covered Software is * -* authorized under this License except under this disclaimer. * -* * -************************************************************************ - -************************************************************************ -* * -* 7. Limitation of Liability * -* -------------------------- * -* * -* Under no circumstances and under no legal theory, whether tort * -* (including negligence), contract, or otherwise, shall any * -* Contributor, or anyone who distributes Covered Software as * -* permitted above, be liable to You for any direct, indirect, * -* special, incidental, or consequential damages of any character * -* including, without limitation, damages for lost profits, loss of * -* goodwill, work stoppage, computer failure or malfunction, or any * -* and all other commercial damages or losses, even if such party * -* shall have been informed of the possibility of such damages. This * -* limitation of liability shall not apply to liability for death or * -* personal injury resulting from such party's negligence to the * -* extent applicable law prohibits such limitation. Some * -* jurisdictions do not allow the exclusion or limitation of * -* incidental or consequential damages, so this exclusion and * -* limitation may not apply to You. * -* * -************************************************************************ - -8. Litigation -------------- - -Any litigation relating to this License may be brought only in the -courts of a jurisdiction where the defendant maintains its principal -place of business and such litigation shall be governed by laws of that -jurisdiction, without reference to its conflict-of-law provisions. -Nothing in this Section shall prevent a party's ability to bring -cross-claims or counter-claims. - -9. Miscellaneous ----------------- - -This License represents the complete agreement concerning the subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. Any law or regulation which provides -that the language of a contract shall be construed against the drafter -shall not be used to construe this License against a Contributor. - -10. Versions of the License ---------------------------- - -10.1. New Versions - -Mozilla Foundation is the license steward. Except as provided in Section -10.3, no one other than the license steward has the right to modify or -publish new versions of this License. Each version will be given a -distinguishing version number. - -10.2. Effect of New Versions - -You may distribute the Covered Software under the terms of the version -of the License under which You originally received the Covered Software, -or under the terms of any subsequent version published by the license -steward. - -10.3. Modified Versions - -If you create software not governed by this License, and you want to -create a new license for such software, you may create and use a -modified version of this License if you rename the license and remove -any references to the name of the license steward (except to note that -such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary -Licenses - -If You choose to distribute Source Code Form that is Incompatible With -Secondary Licenses under the terms of this version of the License, the -notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice -------------------------------------------- - - This Source Code Form is subject to the terms of the Mozilla Public - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular -file, then You may include the notice in a location (such as a LICENSE -file in a relevant directory) where a recipient would be likely to look -for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice ---------------------------------------------------------- - - This Source Code Form is "Incompatible With Secondary Licenses", as - defined by the Mozilla Public License, v. 2.0. diff --git a/.venv/lib/python3.10/site-packages/grpcio-1.72.0.dist-info/METADATA b/.venv/lib/python3.10/site-packages/grpcio-1.72.0.dist-info/METADATA deleted file mode 100644 index d5ef7ec9..00000000 --- a/.venv/lib/python3.10/site-packages/grpcio-1.72.0.dist-info/METADATA +++ /dev/null @@ -1,129 +0,0 @@ -Metadata-Version: 2.1 -Name: grpcio -Version: 1.72.0 -Summary: HTTP/2-based RPC framework -Home-page: https://grpc.io -Author: The gRPC Authors -Author-email: grpc-io@googlegroups.com -License: Apache License 2.0 -Project-URL: Source Code, https://github.com/grpc/grpc -Project-URL: Bug Tracker, https://github.com/grpc/grpc/issues -Project-URL: Documentation, https://grpc.github.io/grpc/python -Classifier: Development Status :: 5 - Production/Stable -Classifier: Programming Language :: Python -Classifier: Programming Language :: Python :: 3 -Classifier: Programming Language :: Python :: 3.9 -Classifier: Programming Language :: Python :: 3.10 -Classifier: Programming Language :: Python :: 3.11 -Classifier: Programming Language :: Python :: 3.12 -Classifier: Programming Language :: Python :: 3.13 -Classifier: License :: OSI Approved :: Apache Software License -Requires-Python: >=3.9 -Description-Content-Type: text/x-rst -License-File: LICENSE -Provides-Extra: protobuf -Requires-Dist: grpcio-tools >=1.72.0 ; extra == 'protobuf' - -gRPC Python -=========== - -|compat_check_pypi| - -Package for gRPC Python. - -.. |compat_check_pypi| image:: https://python-compatibility-tools.appspot.com/one_badge_image?package=grpcio - :target: https://python-compatibility-tools.appspot.com/one_badge_target?package=grpcio - - -Installation ------------- - -gRPC Python is available for Linux, macOS, and Windows. - -Installing From PyPI -~~~~~~~~~~~~~~~~~~~~ - -If you are installing locally... - -:: - - $ pip install grpcio - -Else system wide (on Ubuntu)... - -:: - - $ sudo pip install grpcio - -If you're on Windows make sure that you installed the :code:`pip.exe` component -when you installed Python (if not go back and install it!) then invoke: - -:: - - $ pip.exe install grpcio - -Windows users may need to invoke :code:`pip.exe` from a command line ran as -administrator. - -n.b. On Windows and on Mac OS X one *must* have a recent release of :code:`pip` -to retrieve the proper wheel from PyPI. Be sure to upgrade to the latest -version! - -Installing From Source -~~~~~~~~~~~~~~~~~~~~~~ - -Building from source requires that you have the Python headers (usually a -package named :code:`python-dev`). - -:: - - $ export REPO_ROOT=grpc # REPO_ROOT can be any directory of your choice - $ git clone -b RELEASE_TAG_HERE https://github.com/grpc/grpc $REPO_ROOT - $ cd $REPO_ROOT - $ git submodule update --init - - # To include systemd socket-activation feature in the build, - # first install the `libsystemd-dev` package, then : - $ export GRPC_PYTHON_BUILD_WITH_SYSTEMD=1 - - # For the next two commands do `sudo pip install` if you get permission-denied errors - $ pip install -r requirements.txt - $ GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install . - -You cannot currently install Python from source on Windows. Things might work -out for you in MSYS2 (follow the Linux instructions), but it isn't officially -supported at the moment. - -Troubleshooting -~~~~~~~~~~~~~~~ - -Help, I ... - -* **... see the following error on some platforms** - - :: - - /tmp/pip-build-U8pSsr/cython/Cython/Plex/Scanners.c:4:20: fatal error: Python.h: No such file or directory - #include "Python.h" - ^ - compilation terminated. - - You can fix it by installing `python-dev` package. i.e - - :: - - sudo apt-get install python-dev - - -Versioning -~~~~~~~~~~ - -gRPC Python is developed in a monorepo shared with implementations of gRPC in -other programming languages. While the minor versions are released in -lock-step with other languages in the repo (e.g. 1.63.0 is guaranteed to exist -for all languages), patch versions may be specific to only a single -language. For example, if 1.63.1 is a C++-specific patch, 1.63.1 may not be -uploaded to PyPi. As a result, it is __not__ a good assumption that the latest -patch for a given minor version on Github is also the latest patch for that -same minor version on PyPi. - diff --git a/.venv/lib/python3.10/site-packages/grpcio-1.72.0.dist-info/RECORD b/.venv/lib/python3.10/site-packages/grpcio-1.72.0.dist-info/RECORD deleted file mode 100644 index d564739b..00000000 --- a/.venv/lib/python3.10/site-packages/grpcio-1.72.0.dist-info/RECORD +++ /dev/null @@ -1,120 +0,0 @@ -grpc/__init__.py,sha256=RUN1ZIKXNgRqOEaUbqKJP2sDpn7C1wCcompDQsS_UkA,82333 -grpc/__pycache__/__init__.cpython-310.pyc,, -grpc/__pycache__/_auth.cpython-310.pyc,, -grpc/__pycache__/_channel.cpython-310.pyc,, -grpc/__pycache__/_common.cpython-310.pyc,, -grpc/__pycache__/_compression.cpython-310.pyc,, -grpc/__pycache__/_grpcio_metadata.cpython-310.pyc,, -grpc/__pycache__/_interceptor.cpython-310.pyc,, -grpc/__pycache__/_observability.cpython-310.pyc,, -grpc/__pycache__/_plugin_wrapping.cpython-310.pyc,, -grpc/__pycache__/_runtime_protos.cpython-310.pyc,, -grpc/__pycache__/_server.cpython-310.pyc,, -grpc/__pycache__/_simple_stubs.cpython-310.pyc,, -grpc/__pycache__/_typing.cpython-310.pyc,, -grpc/__pycache__/_utilities.cpython-310.pyc,, -grpc/_auth.py,sha256=UNjlkWE4rTsTZlVzJRpgupTJgEJYop-fpTkgJmvien4,2635 -grpc/_channel.py,sha256=sPVbiPQ5BuDx1rgBPlajXi9XH958XCeGGsKXie08Ttw,81346 -grpc/_common.py,sha256=PQdgX83qEG3BUCfXlQVnrv9t5yFD9wjHhrckvX_UkfA,6784 -grpc/_compression.py,sha256=0P9yfNIn33BmcQmOdnMUTogbLIPR0eT_Lmmnm3llcFg,1983 -grpc/_cython/__init__.py,sha256=w3kqSAyaZgP-W0890xR4L4WeBPGrtsQCQJe0FUFR0K0,577 -grpc/_cython/__pycache__/__init__.cpython-310.pyc,, -grpc/_cython/_credentials/roots.pem,sha256=lhQzRMSuEJWIElssQdXa9lSl-vxuI_rDf3uj0p2n53Y,264440 -grpc/_cython/_cygrpc/__init__.py,sha256=w3kqSAyaZgP-W0890xR4L4WeBPGrtsQCQJe0FUFR0K0,577 -grpc/_cython/_cygrpc/__pycache__/__init__.cpython-310.pyc,, -grpc/_cython/cygrpc.cpython-310-x86_64-linux-gnu.so,sha256=tiPJvFp_qK9aHyhJBP7pZxATK73oxzPlB7WO0HYo02M,13648504 -grpc/_grpcio_metadata.py,sha256=-ID9uMhRyK8tnCf7SCtfodNZAu290rfkFW_yIL1slNw,26 -grpc/_interceptor.py,sha256=5qiM2lQWabbBd8IeR6VHzTJKmhz7R2_Tf3m5Xp3C6Y0,25862 -grpc/_observability.py,sha256=JVe0NZ1uGNwSAt-oo9_KS6k2eYlcA5P1h1id8BsJImA,10417 -grpc/_plugin_wrapping.py,sha256=sbJLmw0reHc0aBaSQuPuFr9hHnzllEVoDYgrkre7bkk,4382 -grpc/_runtime_protos.py,sha256=2JtQGu0T8NlZn_GfzH_lpmTwVJPE1rkB5X9jcE7UXos,5805 -grpc/_server.py,sha256=VXOqgBjwXURqLTnIA1AaxO3VdxkuAhQSLATgsTkMP8E,50885 -grpc/_simple_stubs.py,sha256=2hK8LsbRdWhG8kT5DR1p0gLNr5Q818XYox8Sv__w0ws,24610 -grpc/_typing.py,sha256=-wdtuGJpvR10J6r4LSUYTDeRCWpMsQTo67HwowaVOCk,2758 -grpc/_utilities.py,sha256=befrEhsHGPfSuVPEMTNEVaQCPwTD8tKV8yIrge7I4Vo,7043 -grpc/aio/__init__.py,sha256=80Ho1FolpueFqIIvyl7d5b9FJgvw5ilZgHcXxN1NmUs,3160 -grpc/aio/__pycache__/__init__.cpython-310.pyc,, -grpc/aio/__pycache__/_base_call.cpython-310.pyc,, -grpc/aio/__pycache__/_base_channel.cpython-310.pyc,, -grpc/aio/__pycache__/_base_server.cpython-310.pyc,, -grpc/aio/__pycache__/_call.cpython-310.pyc,, -grpc/aio/__pycache__/_channel.cpython-310.pyc,, -grpc/aio/__pycache__/_interceptor.cpython-310.pyc,, -grpc/aio/__pycache__/_metadata.cpython-310.pyc,, -grpc/aio/__pycache__/_server.cpython-310.pyc,, -grpc/aio/__pycache__/_typing.cpython-310.pyc,, -grpc/aio/__pycache__/_utils.cpython-310.pyc,, -grpc/aio/_base_call.py,sha256=THFXG0o0ISn40Jrw0sNlcFzfobD8UrjgjddMWtg8ZJA,7560 -grpc/aio/_base_channel.py,sha256=wVwElJ73bfTTkYC9J6NZjCq-q2MEvTOLSbOseNPzr8k,13893 -grpc/aio/_base_server.py,sha256=_bBNGAy6feBwyE4aIuwjKVdCy2wQYpiBOtFg2rXaZ-8,12560 -grpc/aio/_call.py,sha256=N9rbvu8-0B_rV7RthtSlp-nZakDoshHgptOozEuVqtU,25356 -grpc/aio/_channel.py,sha256=J1opppQ_zkyhYTqh0cxo85tX14wdki3qccp1BFSUzd0,22099 -grpc/aio/_interceptor.py,sha256=mXz0ivpOBkbBpMQyxInHmFCqVm1HrYX0GRq4IZwWCFQ,41345 -grpc/aio/_metadata.py,sha256=Bhxf6d8r90FQe-HPEUEOrowfAb-DA_6OfaQejcYJjog,5009 -grpc/aio/_server.py,sha256=_7v2-W92W1Ag1LINrxCED-647nAquGFUKbgGnKN06_s,8931 -grpc/aio/_typing.py,sha256=xMlG33vn_UkdkRv39Udx421BWVgt5RHCu8gJXAQ18do,1378 -grpc/aio/_utils.py,sha256=Bh5-lQO2xszdZeTFAWFfFhhaKy20ll4kucD6f_YZTlg,821 -grpc/beta/__init__.py,sha256=w3kqSAyaZgP-W0890xR4L4WeBPGrtsQCQJe0FUFR0K0,577 -grpc/beta/__pycache__/__init__.cpython-310.pyc,, -grpc/beta/__pycache__/_client_adaptations.cpython-310.pyc,, -grpc/beta/__pycache__/_metadata.cpython-310.pyc,, -grpc/beta/__pycache__/_server_adaptations.cpython-310.pyc,, -grpc/beta/__pycache__/implementations.cpython-310.pyc,, -grpc/beta/__pycache__/interfaces.cpython-310.pyc,, -grpc/beta/__pycache__/utilities.cpython-310.pyc,, -grpc/beta/_client_adaptations.py,sha256=q4rwPyIv9ratLPhC3xmq9M1_fuAVTW71slsBChHP4T0,27023 -grpc/beta/_metadata.py,sha256=pC2-RLU3nHhTXTk_RMyoA3WwmRhm_woLbB-13lKO-aY,1638 -grpc/beta/_server_adaptations.py,sha256=-f_hSbqBZqNgaz55B1zbE7TK-kwc1oHnngXHMDU-kKk,14611 -grpc/beta/implementations.py,sha256=0yITggzqKKo8Lb8ZwPx2zIu414mIQxfan3jmenchIHk,12058 -grpc/beta/interfaces.py,sha256=mtQnvm7Bg2u5MQZf2_nmxUxKFCANDw7VUOHHvE7cBhM,6082 -grpc/beta/utilities.py,sha256=h_2yPH_5sCsFWKr9bBfa-JXj0CnSFaSa-_snKqtUUTo,5005 -grpc/experimental/__init__.py,sha256=uUcQbntsX9ROKozWD6eTVnAYJ6Dea7VUSpGGv1L5Hz0,4103 -grpc/experimental/__pycache__/__init__.cpython-310.pyc,, -grpc/experimental/__pycache__/gevent.cpython-310.pyc,, -grpc/experimental/__pycache__/session_cache.cpython-310.pyc,, -grpc/experimental/aio/__init__.py,sha256=bIyDdGBbNHi5F_kHvwByONjc4M_74thy53YmBDr1ZPo,660 -grpc/experimental/aio/__pycache__/__init__.cpython-310.pyc,, -grpc/experimental/gevent.py,sha256=_YAk9aH2PCZCpaCnW9uGY77W21342dEWm8wOVApTx88,973 -grpc/experimental/session_cache.py,sha256=wAauvDzxvTC6-p3jMbPnTc7y74nhDKSRjb0ktfMPCm8,1533 -grpc/framework/__init__.py,sha256=w3kqSAyaZgP-W0890xR4L4WeBPGrtsQCQJe0FUFR0K0,577 -grpc/framework/__pycache__/__init__.cpython-310.pyc,, -grpc/framework/common/__init__.py,sha256=w3kqSAyaZgP-W0890xR4L4WeBPGrtsQCQJe0FUFR0K0,577 -grpc/framework/common/__pycache__/__init__.cpython-310.pyc,, -grpc/framework/common/__pycache__/cardinality.cpython-310.pyc,, -grpc/framework/common/__pycache__/style.cpython-310.pyc,, -grpc/framework/common/cardinality.py,sha256=ygWtrjjsk-SOPLHaey6-7ekD23Qhu3k4QUNmYI1ScVU,988 -grpc/framework/common/style.py,sha256=X9wN-af8T7WWhFfdtmFkdqPN5PbpI8FJsKGdmPivaAU,824 -grpc/framework/foundation/__init__.py,sha256=w3kqSAyaZgP-W0890xR4L4WeBPGrtsQCQJe0FUFR0K0,577 -grpc/framework/foundation/__pycache__/__init__.cpython-310.pyc,, -grpc/framework/foundation/__pycache__/abandonment.cpython-310.pyc,, -grpc/framework/foundation/__pycache__/callable_util.cpython-310.pyc,, -grpc/framework/foundation/__pycache__/future.cpython-310.pyc,, -grpc/framework/foundation/__pycache__/logging_pool.cpython-310.pyc,, -grpc/framework/foundation/__pycache__/stream.cpython-310.pyc,, -grpc/framework/foundation/__pycache__/stream_util.cpython-310.pyc,, -grpc/framework/foundation/abandonment.py,sha256=AF4Y734bGIVaX0CL8W9XaaPYuPUacgciBEZ9Wb4fpGA,878 -grpc/framework/foundation/callable_util.py,sha256=_uvikTKQnBPQv0Bfo59FkzwvclWDLxssFqHhdn-qqEY,3151 -grpc/framework/foundation/future.py,sha256=djoeNq-Wd5_tkzQwF_ZeL1nYAWKJ5rwzelGoTPdR1ME,8373 -grpc/framework/foundation/logging_pool.py,sha256=j8PFaWarQrnDebsDxmcJMzfFsJH8xGY2A4z6Plo_Q9c,2248 -grpc/framework/foundation/stream.py,sha256=F6XQUJC8rT-ciybPtHP7PTMlMXNoVXyzmnRwYKos0Ms,1377 -grpc/framework/foundation/stream_util.py,sha256=CUx6geCSB9zwgdlE0XHXcPSbuLeuNfClsZFyjsQVMB0,4772 -grpc/framework/interfaces/__init__.py,sha256=w3kqSAyaZgP-W0890xR4L4WeBPGrtsQCQJe0FUFR0K0,577 -grpc/framework/interfaces/__pycache__/__init__.cpython-310.pyc,, -grpc/framework/interfaces/base/__init__.py,sha256=w3kqSAyaZgP-W0890xR4L4WeBPGrtsQCQJe0FUFR0K0,577 -grpc/framework/interfaces/base/__pycache__/__init__.cpython-310.pyc,, -grpc/framework/interfaces/base/__pycache__/base.cpython-310.pyc,, -grpc/framework/interfaces/base/__pycache__/utilities.cpython-310.pyc,, -grpc/framework/interfaces/base/base.py,sha256=aDW-nCVA4brDc3ZRf_b1-MOZ4Jv7ss_F4V6jIeJugTc,12234 -grpc/framework/interfaces/base/utilities.py,sha256=buvlDv3ulHgsF4ej6DzQecoPGXwfMV2eyZ70lPMJfNA,2362 -grpc/framework/interfaces/face/__init__.py,sha256=w3kqSAyaZgP-W0890xR4L4WeBPGrtsQCQJe0FUFR0K0,577 -grpc/framework/interfaces/face/__pycache__/__init__.cpython-310.pyc,, -grpc/framework/interfaces/face/__pycache__/face.cpython-310.pyc,, -grpc/framework/interfaces/face/__pycache__/utilities.cpython-310.pyc,, -grpc/framework/interfaces/face/face.py,sha256=OGyApdjsZ8BF9nNq-2sd6WXd9bPpbvj4jvXrGdJu-nY,39700 -grpc/framework/interfaces/face/utilities.py,sha256=jRmAmV0hXPXcN5a6Vg7OlBbcltGB6B10bUfoqqHJmUc,6777 -grpcio-1.72.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 -grpcio-1.72.0.dist-info/LICENSE,sha256=WQGY4_MF8sNH_eZNY3xlSSu-9VTbbINk4UnNN143l-4,29687 -grpcio-1.72.0.dist-info/METADATA,sha256=5POnktFJJTerOr0wbN7BEs72UjIYYJJBj65EzazURyI,3838 -grpcio-1.72.0.dist-info/RECORD,, -grpcio-1.72.0.dist-info/WHEEL,sha256=CzQQWV-lNyM92gr3iaBk8dvO35YDHRxgzkZ-dxumUIM,152 -grpcio-1.72.0.dist-info/top_level.txt,sha256=eEd2Jq_aVQFp38bWW8Pfwjz_5iibqeOFT-2zXlPAq_8,5 diff --git a/.venv/lib/python3.10/site-packages/grpcio-1.72.0.dist-info/WHEEL b/.venv/lib/python3.10/site-packages/grpcio-1.72.0.dist-info/WHEEL deleted file mode 100644 index 9bb86cf3..00000000 --- a/.venv/lib/python3.10/site-packages/grpcio-1.72.0.dist-info/WHEEL +++ /dev/null @@ -1,6 +0,0 @@ -Wheel-Version: 1.0 -Generator: bdist_wheel (0.43.0) -Root-Is-Purelib: false -Tag: cp310-cp310-manylinux_2_17_x86_64 -Tag: cp310-cp310-manylinux2014_x86_64 - diff --git a/.venv/lib/python3.10/site-packages/grpcio-1.72.0.dist-info/top_level.txt b/.venv/lib/python3.10/site-packages/grpcio-1.72.0.dist-info/top_level.txt deleted file mode 100644 index 3b2fe54c..00000000 --- a/.venv/lib/python3.10/site-packages/grpcio-1.72.0.dist-info/top_level.txt +++ /dev/null @@ -1 +0,0 @@ -grpc diff --git a/.venv/lib/python3.10/site-packages/grpcio_status-1.72.0.dist-info/INSTALLER b/.venv/lib/python3.10/site-packages/grpcio_status-1.72.0.dist-info/INSTALLER deleted file mode 100644 index a1b589e3..00000000 --- a/.venv/lib/python3.10/site-packages/grpcio_status-1.72.0.dist-info/INSTALLER +++ /dev/null @@ -1 +0,0 @@ -pip diff --git a/.venv/lib/python3.10/site-packages/grpcio_status-1.72.0.dist-info/LICENSE b/.venv/lib/python3.10/site-packages/grpcio_status-1.72.0.dist-info/LICENSE deleted file mode 100644 index 0e09a3e9..00000000 --- a/.venv/lib/python3.10/site-packages/grpcio_status-1.72.0.dist-info/LICENSE +++ /dev/null @@ -1,610 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - ------------------------------------------------------------ - -BSD 3-Clause License - -Copyright 2016, Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its -contributors may be used to endorse or promote products derived from this -software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF -THE POSSIBILITY OF SUCH DAMAGE. - ------------------------------------------------------------ - -Mozilla Public License Version 2.0 -================================== - -1. Definitions --------------- - -1.1. "Contributor" - means each individual or legal entity that creates, contributes to - the creation of, or owns Covered Software. - -1.2. "Contributor Version" - means the combination of the Contributions of others (if any) used - by a Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - means Source Code Form to which the initial Contributor has attached - the notice in Exhibit A, the Executable Form of such Source Code - Form, and Modifications of such Source Code Form, in each case - including portions thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - (a) that the initial Contributor has attached the notice described - in Exhibit B to the Covered Software; or - - (b) that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the - terms of a Secondary License. - -1.6. "Executable Form" - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - means a work that combines Covered Software with other material, in - a separate file or files, that is not Covered Software. - -1.8. "License" - means this document. - -1.9. "Licensable" - means having the right to grant, to the maximum extent possible, - whether at the time of the initial grant or subsequently, any and - all of the rights conveyed by this License. - -1.10. "Modifications" - means any of the following: - - (a) any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered - Software; or - - (b) any new file in Source Code Form that contains any Covered - Software. - -1.11. "Patent Claims" of a Contributor - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the - License, by the making, using, selling, offering for sale, having - made, import, or transfer of either its Contributions or its - Contributor Version. - -1.12. "Secondary License" - means either the GNU General Public License, Version 2.0, the GNU - Lesser General Public License, Version 2.1, the GNU Affero General - Public License, Version 3.0, or any later versions of those - licenses. - -1.13. "Source Code Form" - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that - controls, is controlled by, or is under common control with You. For - purposes of this definition, "control" means (a) the power, direct - or indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of more than - fifty percent (50%) of the outstanding shares or beneficial - ownership of such entity. - -2. License Grants and Conditions --------------------------------- - -2.1. Grants - -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license: - -(a) under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - -(b) under Patent Claims of such Contributor to make, use, sell, offer - for sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - -The licenses granted in Section 2.1 with respect to any Contribution -become effective for each Contribution on the date the Contributor first -distributes such Contribution. - -2.3. Limitations on Grant Scope - -The licenses granted in this Section 2 are the only rights granted under -this License. No additional rights or licenses will be implied from the -distribution or licensing of Covered Software under this License. -Notwithstanding Section 2.1(b) above, no patent license is granted by a -Contributor: - -(a) for any code that a Contributor has removed from Covered Software; - or - -(b) for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - -(c) under Patent Claims infringed by Covered Software in the absence of - its Contributions. - -This License does not grant any rights in the trademarks, service marks, -or logos of any Contributor (except as may be necessary to comply with -the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - -No Contributor makes additional grants as a result of Your choice to -distribute the Covered Software under a subsequent version of this -License (see Section 10.2) or under the terms of a Secondary License (if -permitted under the terms of Section 3.3). - -2.5. Representation - -Each Contributor represents that the Contributor believes its -Contributions are its original creation(s) or it has sufficient rights -to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - -This License is not intended to limit any rights You have under -applicable copyright doctrines of fair use, fair dealing, or other -equivalents. - -2.7. Conditions - -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted -in Section 2.1. - -3. Responsibilities -------------------- - -3.1. Distribution of Source Form - -All distribution of Covered Software in Source Code Form, including any -Modifications that You create or to which You contribute, must be under -the terms of this License. You must inform recipients that the Source -Code Form of the Covered Software is governed by the terms of this -License, and how they can obtain a copy of this License. You may not -attempt to alter or restrict the recipients' rights in the Source Code -Form. - -3.2. Distribution of Executable Form - -If You distribute Covered Software in Executable Form then: - -(a) such Covered Software must also be made available in Source Code - Form, as described in Section 3.1, and You must inform recipients of - the Executable Form how they can obtain a copy of such Source Code - Form by reasonable means in a timely manner, at a charge no more - than the cost of distribution to the recipient; and - -(b) You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter - the recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - -You may create and distribute a Larger Work under terms of Your choice, -provided that You also comply with the requirements of this License for -the Covered Software. If the Larger Work is a combination of Covered -Software with a work governed by one or more Secondary Licenses, and the -Covered Software is not Incompatible With Secondary Licenses, this -License permits You to additionally distribute such Covered Software -under the terms of such Secondary License(s), so that the recipient of -the Larger Work may, at their option, further distribute the Covered -Software under the terms of either this License or such Secondary -License(s). - -3.4. Notices - -You may not remove or alter the substance of any license notices -(including copyright notices, patent notices, disclaimers of warranty, -or limitations of liability) contained within the Source Code Form of -the Covered Software, except that You may alter any license notices to -the extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - -You may choose to offer, and to charge a fee for, warranty, support, -indemnity or liability obligations to one or more recipients of Covered -Software. However, You may do so only on Your own behalf, and not on -behalf of any Contributor. You must make it absolutely clear that any -such warranty, support, indemnity, or liability obligation is offered by -You alone, and You hereby agree to indemnify every Contributor for any -liability incurred by such Contributor as a result of warranty, support, -indemnity or liability terms You offer. You may include additional -disclaimers of warranty and limitations of liability specific to any -jurisdiction. - -4. Inability to Comply Due to Statute or Regulation ---------------------------------------------------- - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Software due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description must -be placed in a text file included with all distributions of the Covered -Software under this License. Except to the extent prohibited by statute -or regulation, such description must be sufficiently detailed for a -recipient of ordinary skill to be able to understand it. - -5. Termination --------------- - -5.1. The rights granted under this License will terminate automatically -if You fail to comply with any of its terms. However, if You become -compliant, then the rights granted under this License from a particular -Contributor are reinstated (a) provisionally, unless and until such -Contributor explicitly and finally terminates Your grants, and (b) on an -ongoing basis, if such Contributor fails to notify You of the -non-compliance by some reasonable means prior to 60 days after You have -come back into compliance. Moreover, Your grants from a particular -Contributor are reinstated on an ongoing basis if such Contributor -notifies You of the non-compliance by some reasonable means, this is the -first time You have received notice of non-compliance with this License -from such Contributor, and You become compliant prior to 30 days after -Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent -infringement claim (excluding declaratory judgment actions, -counter-claims, and cross-claims) alleging that a Contributor Version -directly or indirectly infringes any patent, then the rights granted to -You by any and all Contributors for the Covered Software under Section -2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all -end user license agreements (excluding distributors and resellers) which -have been validly granted by You or Your distributors under this License -prior to termination shall survive termination. - -************************************************************************ -* * -* 6. Disclaimer of Warranty * -* ------------------------- * -* * -* Covered Software is provided under this License on an "as is" * -* basis, without warranty of any kind, either expressed, implied, or * -* statutory, including, without limitation, warranties that the * -* Covered Software is free of defects, merchantable, fit for a * -* particular purpose or non-infringing. The entire risk as to the * -* quality and performance of the Covered Software is with You. * -* Should any Covered Software prove defective in any respect, You * -* (not any Contributor) assume the cost of any necessary servicing, * -* repair, or correction. This disclaimer of warranty constitutes an * -* essential part of this License. No use of any Covered Software is * -* authorized under this License except under this disclaimer. * -* * -************************************************************************ - -************************************************************************ -* * -* 7. Limitation of Liability * -* -------------------------- * -* * -* Under no circumstances and under no legal theory, whether tort * -* (including negligence), contract, or otherwise, shall any * -* Contributor, or anyone who distributes Covered Software as * -* permitted above, be liable to You for any direct, indirect, * -* special, incidental, or consequential damages of any character * -* including, without limitation, damages for lost profits, loss of * -* goodwill, work stoppage, computer failure or malfunction, or any * -* and all other commercial damages or losses, even if such party * -* shall have been informed of the possibility of such damages. This * -* limitation of liability shall not apply to liability for death or * -* personal injury resulting from such party's negligence to the * -* extent applicable law prohibits such limitation. Some * -* jurisdictions do not allow the exclusion or limitation of * -* incidental or consequential damages, so this exclusion and * -* limitation may not apply to You. * -* * -************************************************************************ - -8. Litigation -------------- - -Any litigation relating to this License may be brought only in the -courts of a jurisdiction where the defendant maintains its principal -place of business and such litigation shall be governed by laws of that -jurisdiction, without reference to its conflict-of-law provisions. -Nothing in this Section shall prevent a party's ability to bring -cross-claims or counter-claims. - -9. Miscellaneous ----------------- - -This License represents the complete agreement concerning the subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. Any law or regulation which provides -that the language of a contract shall be construed against the drafter -shall not be used to construe this License against a Contributor. - -10. Versions of the License ---------------------------- - -10.1. New Versions - -Mozilla Foundation is the license steward. Except as provided in Section -10.3, no one other than the license steward has the right to modify or -publish new versions of this License. Each version will be given a -distinguishing version number. - -10.2. Effect of New Versions - -You may distribute the Covered Software under the terms of the version -of the License under which You originally received the Covered Software, -or under the terms of any subsequent version published by the license -steward. - -10.3. Modified Versions - -If you create software not governed by this License, and you want to -create a new license for such software, you may create and use a -modified version of this License if you rename the license and remove -any references to the name of the license steward (except to note that -such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary -Licenses - -If You choose to distribute Source Code Form that is Incompatible With -Secondary Licenses under the terms of this version of the License, the -notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice -------------------------------------------- - - This Source Code Form is subject to the terms of the Mozilla Public - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular -file, then You may include the notice in a location (such as a LICENSE -file in a relevant directory) where a recipient would be likely to look -for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice ---------------------------------------------------------- - - This Source Code Form is "Incompatible With Secondary Licenses", as - defined by the Mozilla Public License, v. 2.0. diff --git a/.venv/lib/python3.10/site-packages/grpcio_status-1.72.0.dist-info/METADATA b/.venv/lib/python3.10/site-packages/grpcio_status-1.72.0.dist-info/METADATA deleted file mode 100644 index 479e2ea0..00000000 --- a/.venv/lib/python3.10/site-packages/grpcio_status-1.72.0.dist-info/METADATA +++ /dev/null @@ -1,33 +0,0 @@ -Metadata-Version: 2.1 -Name: grpcio-status -Version: 1.72.0 -Summary: Status proto mapping for gRPC -Home-page: https://grpc.io -Author: The gRPC Authors -Author-email: grpc-io@googlegroups.com -License: Apache License 2.0 -Classifier: Development Status :: 5 - Production/Stable -Classifier: Programming Language :: Python -Classifier: Programming Language :: Python :: 3 -Classifier: Programming Language :: Python :: 3.9 -Classifier: Programming Language :: Python :: 3.10 -Classifier: Programming Language :: Python :: 3.11 -Classifier: Programming Language :: Python :: 3.12 -Classifier: Programming Language :: Python :: 3.13 -Classifier: License :: OSI Approved :: Apache Software License -Requires-Python: >=3.9 -License-File: LICENSE -Requires-Dist: protobuf <7.0dev,>=6.30.0 -Requires-Dist: grpcio >=1.72.0 -Requires-Dist: googleapis-common-protos >=1.5.5 - -gRPC Python Status Proto -=========================== - -Reference package for GRPC Python status proto mapping. - - -Dependencies ------------- - -Depends on the `grpcio` package, available from PyPI via `pip install grpcio`. diff --git a/.venv/lib/python3.10/site-packages/grpcio_status-1.72.0.dist-info/RECORD b/.venv/lib/python3.10/site-packages/grpcio_status-1.72.0.dist-info/RECORD deleted file mode 100644 index 6b85c7fa..00000000 --- a/.venv/lib/python3.10/site-packages/grpcio_status-1.72.0.dist-info/RECORD +++ /dev/null @@ -1,14 +0,0 @@ -grpc_status/__init__.py,sha256=Y4nCOh9lDjUtOPLoO7VWHkB-96lRNUo0k6Cs7H_DTK0,580 -grpc_status/__pycache__/__init__.cpython-310.pyc,, -grpc_status/__pycache__/_async.cpython-310.pyc,, -grpc_status/__pycache__/_common.cpython-310.pyc,, -grpc_status/__pycache__/rpc_status.cpython-310.pyc,, -grpc_status/_async.py,sha256=VVYnftzgq0h5JWiPlanlcXFI1sJRysfkgKNmbsbSsOc,2004 -grpc_status/_common.py,sha256=fntl-3SZf7M0JhjjicHObNAjcKv4qS8QjSJZqs8kGNY,959 -grpc_status/rpc_status.py,sha256=N0iuEZitOl4lMRnRVrOfSahPyp9O-viFq8YsCSuQt10,2992 -grpcio_status-1.72.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 -grpcio_status-1.72.0.dist-info/LICENSE,sha256=WQGY4_MF8sNH_eZNY3xlSSu-9VTbbINk4UnNN143l-4,29687 -grpcio_status-1.72.0.dist-info/METADATA,sha256=KaFyRZ1CFzDJiwi65JeSUBtMRaNeKFuYjqiPRIZegUU,1064 -grpcio_status-1.72.0.dist-info/RECORD,, -grpcio_status-1.72.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92 -grpcio_status-1.72.0.dist-info/top_level.txt,sha256=yQk7zXr3YXmKtg7OddIv6jlXTTFFMTnDpXSla2xtV58,12 diff --git a/.venv/lib/python3.10/site-packages/grpcio_status-1.72.0.dist-info/WHEEL b/.venv/lib/python3.10/site-packages/grpcio_status-1.72.0.dist-info/WHEEL deleted file mode 100644 index bab98d67..00000000 --- a/.venv/lib/python3.10/site-packages/grpcio_status-1.72.0.dist-info/WHEEL +++ /dev/null @@ -1,5 +0,0 @@ -Wheel-Version: 1.0 -Generator: bdist_wheel (0.43.0) -Root-Is-Purelib: true -Tag: py3-none-any - diff --git a/.venv/lib/python3.10/site-packages/grpcio_status-1.72.0.dist-info/top_level.txt b/.venv/lib/python3.10/site-packages/grpcio_status-1.72.0.dist-info/top_level.txt deleted file mode 100644 index 46d4e466..00000000 --- a/.venv/lib/python3.10/site-packages/grpcio_status-1.72.0.dist-info/top_level.txt +++ /dev/null @@ -1 +0,0 @@ -grpc_status diff --git a/.venv/lib/python3.10/site-packages/h11/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/h11/__pycache__/__init__.cpython-310.pyc index 91593db9..f66a16b8 100644 Binary files a/.venv/lib/python3.10/site-packages/h11/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/h11/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/h11/__pycache__/_abnf.cpython-310.pyc b/.venv/lib/python3.10/site-packages/h11/__pycache__/_abnf.cpython-310.pyc index 84ca0d10..6e07e517 100644 Binary files a/.venv/lib/python3.10/site-packages/h11/__pycache__/_abnf.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/h11/__pycache__/_abnf.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/h11/__pycache__/_connection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/h11/__pycache__/_connection.cpython-310.pyc index 66d0ed01..aa1c174b 100644 Binary files a/.venv/lib/python3.10/site-packages/h11/__pycache__/_connection.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/h11/__pycache__/_connection.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/h11/__pycache__/_events.cpython-310.pyc b/.venv/lib/python3.10/site-packages/h11/__pycache__/_events.cpython-310.pyc index 9fefa6e5..45826fec 100644 Binary files a/.venv/lib/python3.10/site-packages/h11/__pycache__/_events.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/h11/__pycache__/_events.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/h11/__pycache__/_headers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/h11/__pycache__/_headers.cpython-310.pyc index ef560362..7304b564 100644 Binary files a/.venv/lib/python3.10/site-packages/h11/__pycache__/_headers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/h11/__pycache__/_headers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/h11/__pycache__/_readers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/h11/__pycache__/_readers.cpython-310.pyc index 1e6df85e..56ca63c9 100644 Binary files a/.venv/lib/python3.10/site-packages/h11/__pycache__/_readers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/h11/__pycache__/_readers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/h11/__pycache__/_receivebuffer.cpython-310.pyc b/.venv/lib/python3.10/site-packages/h11/__pycache__/_receivebuffer.cpython-310.pyc index 3038fbb4..983cf41f 100644 Binary files a/.venv/lib/python3.10/site-packages/h11/__pycache__/_receivebuffer.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/h11/__pycache__/_receivebuffer.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/h11/__pycache__/_state.cpython-310.pyc b/.venv/lib/python3.10/site-packages/h11/__pycache__/_state.cpython-310.pyc index 9b9e6581..f56acc1e 100644 Binary files a/.venv/lib/python3.10/site-packages/h11/__pycache__/_state.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/h11/__pycache__/_state.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/h11/__pycache__/_util.cpython-310.pyc b/.venv/lib/python3.10/site-packages/h11/__pycache__/_util.cpython-310.pyc index 79739ef9..363ad728 100644 Binary files a/.venv/lib/python3.10/site-packages/h11/__pycache__/_util.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/h11/__pycache__/_util.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/h11/__pycache__/_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/h11/__pycache__/_version.cpython-310.pyc index 6ddd2ce2..556e3b99 100644 Binary files a/.venv/lib/python3.10/site-packages/h11/__pycache__/_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/h11/__pycache__/_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/h11/__pycache__/_writers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/h11/__pycache__/_writers.cpython-310.pyc index bb12eda4..43f2bf31 100644 Binary files a/.venv/lib/python3.10/site-packages/h11/__pycache__/_writers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/h11/__pycache__/_writers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/__pycache__/__init__.cpython-310.pyc index 694083a9..1e2cdca2 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_api.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_api.cpython-310.pyc index 9ce42828..3fe9f6df 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_api.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_api.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_exceptions.cpython-310.pyc index 3a8154c1..5d315af0 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_exceptions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_exceptions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_models.cpython-310.pyc index 4589638c..d6e0821a 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_models.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_models.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_ssl.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_ssl.cpython-310.pyc index 62f138df..712db0ac 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_ssl.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_ssl.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_synchronization.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_synchronization.cpython-310.pyc index 3cd8253a..79ec580e 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_synchronization.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_synchronization.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_trace.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_trace.cpython-310.pyc index 01b7821e..a3047e67 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_trace.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_trace.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_utils.cpython-310.pyc index 7b3e3a3b..2dfbe5cc 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/__init__.cpython-310.pyc index 9a69bf78..fa9a4747 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/connection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/connection.cpython-310.pyc index 4c5f9dea..be69c7e4 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/connection.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/connection.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/connection_pool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/connection_pool.cpython-310.pyc index 371319f7..1cb8bcdd 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/connection_pool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/connection_pool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/http11.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/http11.cpython-310.pyc index 2979e14e..8be8a479 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/http11.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/http11.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/http2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/http2.cpython-310.pyc index a71ef94c..5fad642a 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/http2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/http2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/http_proxy.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/http_proxy.cpython-310.pyc index f4101cd6..7948d562 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/http_proxy.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/http_proxy.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/interfaces.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/interfaces.cpython-310.pyc index b65ceb02..7fc7440b 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/interfaces.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/interfaces.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/socks_proxy.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/socks_proxy.cpython-310.pyc index edc785ba..a423e878 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/socks_proxy.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/socks_proxy.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/__init__.cpython-310.pyc index a156d957..ab1d9b0e 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/anyio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/anyio.cpython-310.pyc index 2a4388e9..d57a0c5b 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/anyio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/anyio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/auto.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/auto.cpython-310.pyc index 1aa83965..08869918 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/auto.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/auto.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/base.cpython-310.pyc index 061649a3..5f45eb9d 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/mock.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/mock.cpython-310.pyc index 06d8d89f..c7e4dfdc 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/mock.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/mock.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/sync.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/sync.cpython-310.pyc index 660e1e85..a0b15236 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/sync.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/sync.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/trio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/trio.cpython-310.pyc index b7e5deb4..07832232 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/trio.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/trio.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/__init__.cpython-310.pyc index 9fc28a8f..e341bd3f 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/connection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/connection.cpython-310.pyc index bb4bf222..de2a5805 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/connection.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/connection.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/connection_pool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/connection_pool.cpython-310.pyc index c10c48ca..3421166b 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/connection_pool.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/connection_pool.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/http11.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/http11.cpython-310.pyc index 540a5c5f..74fe946d 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/http11.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/http11.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/http2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/http2.cpython-310.pyc index 909230c1..0a28392a 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/http2.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/http2.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/http_proxy.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/http_proxy.cpython-310.pyc index 1df9f948..b7da4031 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/http_proxy.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/http_proxy.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/interfaces.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/interfaces.cpython-310.pyc index df70f559..83a5dbf4 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/interfaces.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/interfaces.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/socks_proxy.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/socks_proxy.cpython-310.pyc index 89e54fe6..b2d8ff3c 100644 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/socks_proxy.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/socks_proxy.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httplib2/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httplib2/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index ad3e6585..00000000 Binary files a/.venv/lib/python3.10/site-packages/httplib2/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/httplib2/__pycache__/auth.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httplib2/__pycache__/auth.cpython-310.pyc deleted file mode 100644 index 0c82047e..00000000 Binary files a/.venv/lib/python3.10/site-packages/httplib2/__pycache__/auth.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/httplib2/__pycache__/certs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httplib2/__pycache__/certs.cpython-310.pyc deleted file mode 100644 index 5a523ceb..00000000 Binary files a/.venv/lib/python3.10/site-packages/httplib2/__pycache__/certs.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/httplib2/__pycache__/error.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httplib2/__pycache__/error.cpython-310.pyc deleted file mode 100644 index d6036a72..00000000 Binary files a/.venv/lib/python3.10/site-packages/httplib2/__pycache__/error.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/httplib2/__pycache__/iri2uri.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httplib2/__pycache__/iri2uri.cpython-310.pyc deleted file mode 100644 index f690291d..00000000 Binary files a/.venv/lib/python3.10/site-packages/httplib2/__pycache__/iri2uri.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/httplib2/__pycache__/socks.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httplib2/__pycache__/socks.cpython-310.pyc deleted file mode 100644 index bb1bd02b..00000000 Binary files a/.venv/lib/python3.10/site-packages/httplib2/__pycache__/socks.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/httpx/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/__pycache__/__init__.cpython-310.pyc index 582601b8..23f7e66f 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx/__pycache__/__version__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/__pycache__/__version__.cpython-310.pyc index af64ea31..e86c05e5 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/__version__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/__pycache__/__version__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_api.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_api.cpython-310.pyc index a9b017f8..99e4417e 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_api.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_api.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_auth.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_auth.cpython-310.pyc index af995a77..998bef49 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_auth.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_auth.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_client.cpython-310.pyc index b558071e..b0e565e5 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_client.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_client.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_config.cpython-310.pyc index 81ffdb2b..334a2949 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_config.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_config.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_content.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_content.cpython-310.pyc index 53d63f84..6daef892 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_content.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_content.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_decoders.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_decoders.cpython-310.pyc index b6aeb115..e1336779 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_decoders.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_decoders.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_exceptions.cpython-310.pyc index 9b0d0d7a..4a21f381 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_exceptions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_exceptions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_main.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_main.cpython-310.pyc index c69952e4..6871bc49 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_main.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_main.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_models.cpython-310.pyc index 298369f5..9ea842ae 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_models.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_models.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_multipart.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_multipart.cpython-310.pyc index 0e840ea2..9cb74e53 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_multipart.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_multipart.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_status_codes.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_status_codes.cpython-310.pyc index 4fe2b5fe..3353b404 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_status_codes.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_status_codes.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_types.cpython-310.pyc index 46e9d182..9c7e8792 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_types.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_types.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_urlparse.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_urlparse.cpython-310.pyc index 31b7baf4..0283041a 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_urlparse.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_urlparse.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_urls.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_urls.cpython-310.pyc index ac8a43e6..8ed07e22 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_urls.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_urls.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_utils.cpython-310.pyc index b7beba35..2d7b0170 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/__pycache__/_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/__init__.cpython-310.pyc index ce3b3b39..47023ed8 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/asgi.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/asgi.cpython-310.pyc index 57e3b1bd..c36f1a5b 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/asgi.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/asgi.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/base.cpython-310.pyc index 892e9bc5..4ffd3adc 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/default.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/default.cpython-310.pyc index cf0215ed..0723a4c2 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/default.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/default.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/mock.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/mock.cpython-310.pyc index 0f370aaa..d7839113 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/mock.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/mock.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/wsgi.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/wsgi.cpython-310.pyc index cb187e53..61d14ff9 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/wsgi.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/wsgi.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/__init__.cpython-310.pyc index 17b19fc2..11813b29 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/_api.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/_api.cpython-310.pyc index 706bcd10..46f0767d 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/_api.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/_api.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/_decoders.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/_decoders.cpython-310.pyc index 31a85057..ae2fc9de 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/_decoders.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/_decoders.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/_exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/_exceptions.cpython-310.pyc index 859f39ca..603a8b00 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/_exceptions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/_exceptions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/_models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/_models.cpython-310.pyc index 0b7fb706..d64a7c89 100644 Binary files a/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/_models.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/_models.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 64758d80..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_commit_api.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_commit_api.cpython-310.pyc deleted file mode 100644 index e916bc89..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_commit_api.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_commit_scheduler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_commit_scheduler.cpython-310.pyc deleted file mode 100644 index 1f81f14f..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_commit_scheduler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_inference_endpoints.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_inference_endpoints.cpython-310.pyc deleted file mode 100644 index 19bdb739..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_inference_endpoints.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_local_folder.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_local_folder.cpython-310.pyc deleted file mode 100644 index 0d8421c6..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_local_folder.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_login.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_login.cpython-310.pyc deleted file mode 100644 index 224599f1..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_login.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_snapshot_download.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_snapshot_download.cpython-310.pyc deleted file mode 100644 index d8c643d7..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_snapshot_download.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_space_api.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_space_api.cpython-310.pyc deleted file mode 100644 index 90e01282..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_space_api.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_tensorboard_logger.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_tensorboard_logger.cpython-310.pyc deleted file mode 100644 index 7b4ea3f4..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_tensorboard_logger.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_upload_large_folder.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_upload_large_folder.cpython-310.pyc deleted file mode 100644 index f239d760..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_upload_large_folder.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_webhooks_payload.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_webhooks_payload.cpython-310.pyc deleted file mode 100644 index 389fabc9..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_webhooks_payload.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_webhooks_server.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_webhooks_server.cpython-310.pyc deleted file mode 100644 index 02bcada1..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/_webhooks_server.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/community.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/community.cpython-310.pyc deleted file mode 100644 index 412f5c08..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/community.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/constants.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/constants.cpython-310.pyc deleted file mode 100644 index 09b947d0..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/constants.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/errors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/errors.cpython-310.pyc deleted file mode 100644 index 12832804..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/errors.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/fastai_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/fastai_utils.cpython-310.pyc deleted file mode 100644 index b145864f..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/fastai_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/file_download.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/file_download.cpython-310.pyc deleted file mode 100644 index 54456d36..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/file_download.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/hf_api.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/hf_api.cpython-310.pyc deleted file mode 100644 index 22a231cc..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/hf_api.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/hf_file_system.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/hf_file_system.cpython-310.pyc deleted file mode 100644 index e292d7b7..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/hf_file_system.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/hub_mixin.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/hub_mixin.cpython-310.pyc deleted file mode 100644 index 9773a5ed..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/hub_mixin.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/inference_api.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/inference_api.cpython-310.pyc deleted file mode 100644 index e3b11db9..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/inference_api.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/keras_mixin.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/keras_mixin.cpython-310.pyc deleted file mode 100644 index 43b00a4b..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/keras_mixin.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/lfs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/lfs.cpython-310.pyc deleted file mode 100644 index f74bae3c..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/lfs.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/repocard.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/repocard.cpython-310.pyc deleted file mode 100644 index d538e6ef..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/repocard.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/repocard_data.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/repocard_data.cpython-310.pyc deleted file mode 100644 index dc3aadd7..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/repocard_data.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/repository.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/repository.cpython-310.pyc deleted file mode 100644 index 2524ab74..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/__pycache__/repository.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index fd29e81e..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/_cli_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/_cli_utils.cpython-310.pyc deleted file mode 100644 index b5eb7f89..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/_cli_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/delete_cache.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/delete_cache.cpython-310.pyc deleted file mode 100644 index c8c6fb5f..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/delete_cache.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/download.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/download.cpython-310.pyc deleted file mode 100644 index 1db0366c..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/download.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/env.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/env.cpython-310.pyc deleted file mode 100644 index 9c5b51da..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/env.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/huggingface_cli.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/huggingface_cli.cpython-310.pyc deleted file mode 100644 index 006c5297..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/huggingface_cli.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/lfs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/lfs.cpython-310.pyc deleted file mode 100644 index d3889b25..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/lfs.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/repo_files.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/repo_files.cpython-310.pyc deleted file mode 100644 index 94f8aecb..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/repo_files.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/scan_cache.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/scan_cache.cpython-310.pyc deleted file mode 100644 index 26ed936a..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/scan_cache.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/tag.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/tag.cpython-310.pyc deleted file mode 100644 index f20ab427..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/tag.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/upload.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/upload.cpython-310.pyc deleted file mode 100644 index 13e9a55c..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/upload.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/upload_large_folder.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/upload_large_folder.cpython-310.pyc deleted file mode 100644 index 28840093..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/upload_large_folder.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/user.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/user.cpython-310.pyc deleted file mode 100644 index 29fedca1..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/user.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/version.cpython-310.pyc deleted file mode 100644 index b48e956f..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/commands/__pycache__/version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 188fe102..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/__pycache__/_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/__pycache__/_client.cpython-310.pyc deleted file mode 100644 index 29ded6b2..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/__pycache__/_client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/__pycache__/_common.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/__pycache__/_common.cpython-310.pyc deleted file mode 100644 index 1554b308..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/__pycache__/_common.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 78b7f645..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/__pycache__/_async_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/__pycache__/_async_client.cpython-310.pyc deleted file mode 100644 index 5741cf33..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/__pycache__/_async_client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index e7727f71..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/audio_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/audio_classification.cpython-310.pyc deleted file mode 100644 index a62bf6e2..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/audio_classification.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/audio_to_audio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/audio_to_audio.cpython-310.pyc deleted file mode 100644 index a7866548..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/audio_to_audio.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/automatic_speech_recognition.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/automatic_speech_recognition.cpython-310.pyc deleted file mode 100644 index 3ce4d78c..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/automatic_speech_recognition.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/base.cpython-310.pyc deleted file mode 100644 index 91946f6b..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/chat_completion.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/chat_completion.cpython-310.pyc deleted file mode 100644 index 203ce720..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/chat_completion.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/depth_estimation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/depth_estimation.cpython-310.pyc deleted file mode 100644 index fdf98e25..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/depth_estimation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/document_question_answering.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/document_question_answering.cpython-310.pyc deleted file mode 100644 index 5c48e1d5..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/document_question_answering.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/feature_extraction.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/feature_extraction.cpython-310.pyc deleted file mode 100644 index db5202f9..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/feature_extraction.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/fill_mask.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/fill_mask.cpython-310.pyc deleted file mode 100644 index 041207a4..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/fill_mask.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/image_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/image_classification.cpython-310.pyc deleted file mode 100644 index 17b5cebb..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/image_classification.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/image_segmentation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/image_segmentation.cpython-310.pyc deleted file mode 100644 index 85aa28be..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/image_segmentation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/image_to_image.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/image_to_image.cpython-310.pyc deleted file mode 100644 index 2af69497..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/image_to_image.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/image_to_text.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/image_to_text.cpython-310.pyc deleted file mode 100644 index 0de9d68f..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/image_to_text.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/object_detection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/object_detection.cpython-310.pyc deleted file mode 100644 index 4c793a6b..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/object_detection.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/question_answering.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/question_answering.cpython-310.pyc deleted file mode 100644 index dc0b3785..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/question_answering.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/sentence_similarity.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/sentence_similarity.cpython-310.pyc deleted file mode 100644 index 0d4e87c2..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/sentence_similarity.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/summarization.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/summarization.cpython-310.pyc deleted file mode 100644 index 27897ac8..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/summarization.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/table_question_answering.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/table_question_answering.cpython-310.pyc deleted file mode 100644 index 2cdcce8b..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/table_question_answering.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/text2text_generation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/text2text_generation.cpython-310.pyc deleted file mode 100644 index da90552c..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/text2text_generation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/text_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/text_classification.cpython-310.pyc deleted file mode 100644 index cf5c389f..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/text_classification.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/text_generation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/text_generation.cpython-310.pyc deleted file mode 100644 index 4a17718b..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/text_generation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/text_to_audio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/text_to_audio.cpython-310.pyc deleted file mode 100644 index c54db092..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/text_to_audio.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/text_to_image.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/text_to_image.cpython-310.pyc deleted file mode 100644 index 05021e07..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/text_to_image.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/text_to_speech.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/text_to_speech.cpython-310.pyc deleted file mode 100644 index 9b2077a2..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/text_to_speech.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/text_to_video.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/text_to_video.cpython-310.pyc deleted file mode 100644 index 2793cad3..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/text_to_video.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/token_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/token_classification.cpython-310.pyc deleted file mode 100644 index 26596743..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/token_classification.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/translation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/translation.cpython-310.pyc deleted file mode 100644 index b3964805..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/translation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/video_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/video_classification.cpython-310.pyc deleted file mode 100644 index 2315e874..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/video_classification.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/visual_question_answering.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/visual_question_answering.cpython-310.pyc deleted file mode 100644 index 186a7db1..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/visual_question_answering.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/zero_shot_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/zero_shot_classification.cpython-310.pyc deleted file mode 100644 index d58d9b70..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/zero_shot_classification.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/zero_shot_image_classification.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/zero_shot_image_classification.cpython-310.pyc deleted file mode 100644 index 8ca4e4f6..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/zero_shot_image_classification.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/zero_shot_object_detection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/zero_shot_object_detection.cpython-310.pyc deleted file mode 100644 index fe941aed..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_generated/types/__pycache__/zero_shot_object_detection.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 40442422..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/_common.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/_common.cpython-310.pyc deleted file mode 100644 index d0b2b422..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/_common.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/black_forest_labs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/black_forest_labs.cpython-310.pyc deleted file mode 100644 index cf2277cd..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/black_forest_labs.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/cerebras.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/cerebras.cpython-310.pyc deleted file mode 100644 index 8460e999..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/cerebras.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/cohere.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/cohere.cpython-310.pyc deleted file mode 100644 index 84d29b34..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/cohere.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/fal_ai.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/fal_ai.cpython-310.pyc deleted file mode 100644 index 00febaa8..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/fal_ai.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/fireworks_ai.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/fireworks_ai.cpython-310.pyc deleted file mode 100644 index 689de409..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/fireworks_ai.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/hf_inference.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/hf_inference.cpython-310.pyc deleted file mode 100644 index 03cbbe15..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/hf_inference.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/hyperbolic.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/hyperbolic.cpython-310.pyc deleted file mode 100644 index c852236d..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/hyperbolic.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/nebius.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/nebius.cpython-310.pyc deleted file mode 100644 index 830d77ac..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/nebius.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/novita.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/novita.cpython-310.pyc deleted file mode 100644 index fc04948a..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/novita.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/openai.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/openai.cpython-310.pyc deleted file mode 100644 index 118bd0d3..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/openai.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/replicate.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/replicate.cpython-310.pyc deleted file mode 100644 index 1d8fcbd7..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/replicate.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/sambanova.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/sambanova.cpython-310.pyc deleted file mode 100644 index 4ca23fdb..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/sambanova.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/together.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/together.cpython-310.pyc deleted file mode 100644 index 697f656c..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/inference/_providers/__pycache__/together.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/serialization/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/serialization/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index def814e5..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/serialization/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/serialization/__pycache__/_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/serialization/__pycache__/_base.cpython-310.pyc deleted file mode 100644 index 0876eb77..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/serialization/__pycache__/_base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/serialization/__pycache__/_dduf.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/serialization/__pycache__/_dduf.cpython-310.pyc deleted file mode 100644 index a02830b8..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/serialization/__pycache__/_dduf.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/serialization/__pycache__/_tensorflow.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/serialization/__pycache__/_tensorflow.cpython-310.pyc deleted file mode 100644 index 32b5a94a..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/serialization/__pycache__/_tensorflow.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/serialization/__pycache__/_torch.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/serialization/__pycache__/_torch.cpython-310.pyc deleted file mode 100644 index 2f1fd3e8..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/serialization/__pycache__/_torch.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index ccb5d088..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_auth.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_auth.cpython-310.pyc deleted file mode 100644 index 4b724b5b..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_auth.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_cache_assets.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_cache_assets.cpython-310.pyc deleted file mode 100644 index 0c4f3de8..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_cache_assets.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_cache_manager.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_cache_manager.cpython-310.pyc deleted file mode 100644 index 980ea9b6..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_cache_manager.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_chunk_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_chunk_utils.cpython-310.pyc deleted file mode 100644 index a577ac75..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_chunk_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_datetime.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_datetime.cpython-310.pyc deleted file mode 100644 index f24871f0..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_datetime.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_deprecation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_deprecation.cpython-310.pyc deleted file mode 100644 index 172cb6c6..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_deprecation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_experimental.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_experimental.cpython-310.pyc deleted file mode 100644 index 2fa6ca7e..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_experimental.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_fixes.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_fixes.cpython-310.pyc deleted file mode 100644 index 3b1e264e..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_fixes.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_git_credential.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_git_credential.cpython-310.pyc deleted file mode 100644 index 97c4b0fc..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_git_credential.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_headers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_headers.cpython-310.pyc deleted file mode 100644 index 0b5acf9d..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_headers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_hf_folder.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_hf_folder.cpython-310.pyc deleted file mode 100644 index 2820dcff..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_hf_folder.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_http.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_http.cpython-310.pyc deleted file mode 100644 index dc941d0b..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_http.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_lfs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_lfs.cpython-310.pyc deleted file mode 100644 index f237b501..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_lfs.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_pagination.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_pagination.cpython-310.pyc deleted file mode 100644 index f294df75..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_pagination.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_paths.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_paths.cpython-310.pyc deleted file mode 100644 index c3bb1397..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_paths.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_runtime.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_runtime.cpython-310.pyc deleted file mode 100644 index 8055c04e..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_runtime.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_safetensors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_safetensors.cpython-310.pyc deleted file mode 100644 index 4731e17c..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_safetensors.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_subprocess.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_subprocess.cpython-310.pyc deleted file mode 100644 index 418c89c4..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_subprocess.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_telemetry.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_telemetry.cpython-310.pyc deleted file mode 100644 index 1e70940f..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_telemetry.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_typing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_typing.cpython-310.pyc deleted file mode 100644 index 5a52147b..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_typing.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_validators.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_validators.cpython-310.pyc deleted file mode 100644 index 5214aa47..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_validators.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_xet.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_xet.cpython-310.pyc deleted file mode 100644 index 8f4c7352..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/_xet.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/endpoint_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/endpoint_helpers.cpython-310.pyc deleted file mode 100644 index 38e2f85f..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/endpoint_helpers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/insecure_hashlib.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/insecure_hashlib.cpython-310.pyc deleted file mode 100644 index 0c38a5d3..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/insecure_hashlib.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/logging.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/logging.cpython-310.pyc deleted file mode 100644 index feb9b82e..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/logging.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/sha.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/sha.cpython-310.pyc deleted file mode 100644 index 6e46de3f..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/sha.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/tqdm.cpython-310.pyc b/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/tqdm.cpython-310.pyc deleted file mode 100644 index 245806b8..00000000 Binary files a/.venv/lib/python3.10/site-packages/huggingface_hub/utils/__pycache__/tqdm.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/idna/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/idna/__pycache__/__init__.cpython-310.pyc index 33085217..b89bf627 100644 Binary files a/.venv/lib/python3.10/site-packages/idna/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/idna/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/idna/__pycache__/codec.cpython-310.pyc b/.venv/lib/python3.10/site-packages/idna/__pycache__/codec.cpython-310.pyc deleted file mode 100644 index a9c039a5..00000000 Binary files a/.venv/lib/python3.10/site-packages/idna/__pycache__/codec.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/idna/__pycache__/compat.cpython-310.pyc b/.venv/lib/python3.10/site-packages/idna/__pycache__/compat.cpython-310.pyc deleted file mode 100644 index 8984a7ab..00000000 Binary files a/.venv/lib/python3.10/site-packages/idna/__pycache__/compat.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/idna/__pycache__/core.cpython-310.pyc b/.venv/lib/python3.10/site-packages/idna/__pycache__/core.cpython-310.pyc index d956fd56..461df410 100644 Binary files a/.venv/lib/python3.10/site-packages/idna/__pycache__/core.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/idna/__pycache__/core.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/idna/__pycache__/idnadata.cpython-310.pyc b/.venv/lib/python3.10/site-packages/idna/__pycache__/idnadata.cpython-310.pyc index 009d3428..4c80ebdb 100644 Binary files a/.venv/lib/python3.10/site-packages/idna/__pycache__/idnadata.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/idna/__pycache__/idnadata.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/idna/__pycache__/intranges.cpython-310.pyc b/.venv/lib/python3.10/site-packages/idna/__pycache__/intranges.cpython-310.pyc index f854df7b..9337a34f 100644 Binary files a/.venv/lib/python3.10/site-packages/idna/__pycache__/intranges.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/idna/__pycache__/intranges.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/idna/__pycache__/package_data.cpython-310.pyc b/.venv/lib/python3.10/site-packages/idna/__pycache__/package_data.cpython-310.pyc index f037b5fd..5a6cc482 100644 Binary files a/.venv/lib/python3.10/site-packages/idna/__pycache__/package_data.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/idna/__pycache__/package_data.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/idna/__pycache__/uts46data.cpython-310.pyc b/.venv/lib/python3.10/site-packages/idna/__pycache__/uts46data.cpython-310.pyc deleted file mode 100644 index 0f25ec90..00000000 Binary files a/.venv/lib/python3.10/site-packages/idna/__pycache__/uts46data.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/__init__.cpython-310.pyc index 0f93bb54..ab1b4ac7 100644 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_adapters.cpython-310.pyc b/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_adapters.cpython-310.pyc index 28f612a9..5b2afa04 100644 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_adapters.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_adapters.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_collections.cpython-310.pyc b/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_collections.cpython-310.pyc index 215a266d..a2b7686e 100644 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_collections.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_collections.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_compat.cpython-310.pyc b/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_compat.cpython-310.pyc index 2106c3c0..d2bbeb73 100644 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_compat.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_compat.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_functools.cpython-310.pyc b/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_functools.cpython-310.pyc index 30a7a50d..cbb386e5 100644 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_functools.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_functools.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_itertools.cpython-310.pyc b/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_itertools.cpython-310.pyc index 8727f07a..8695a31e 100644 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_itertools.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_itertools.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_meta.cpython-310.pyc b/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_meta.cpython-310.pyc index d15db9da..1e05ae9a 100644 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_meta.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_meta.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_text.cpython-310.pyc b/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_text.cpython-310.pyc index 2dd1cb25..342a330c 100644 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_text.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_text.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/diagnose.cpython-310.pyc b/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/diagnose.cpython-310.pyc deleted file mode 100644 index a1c38902..00000000 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/diagnose.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/importlib_metadata/compat/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/importlib_metadata/compat/__pycache__/__init__.cpython-310.pyc index 804d138b..3b6acc6f 100644 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/compat/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/importlib_metadata/compat/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/importlib_metadata/compat/__pycache__/py311.cpython-310.pyc b/.venv/lib/python3.10/site-packages/importlib_metadata/compat/__pycache__/py311.cpython-310.pyc index 06602bf6..bac6c643 100644 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/compat/__pycache__/py311.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/importlib_metadata/compat/__pycache__/py311.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/importlib_metadata/compat/__pycache__/py39.cpython-310.pyc b/.venv/lib/python3.10/site-packages/importlib_metadata/compat/__pycache__/py39.cpython-310.pyc index 1508d823..96ec1735 100644 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/compat/__pycache__/py39.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/importlib_metadata/compat/__pycache__/py39.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/__init__.cpython-310.pyc index 5c6f1eea..d811c53d 100644 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/_identifier.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/_identifier.cpython-310.pyc index e77ff2e3..4347fcbf 100644 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/_identifier.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/_identifier.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/async_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/async_utils.cpython-310.pyc index ff272251..6b341b62 100644 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/async_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/async_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/bccache.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/bccache.cpython-310.pyc index 4b438827..039c3070 100644 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/bccache.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/bccache.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/compiler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/compiler.cpython-310.pyc index 07a787e5..9bb66562 100644 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/compiler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/compiler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/constants.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/constants.cpython-310.pyc deleted file mode 100644 index 47cb6b7f..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/constants.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/debug.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/debug.cpython-310.pyc deleted file mode 100644 index 369ed056..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/debug.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/defaults.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/defaults.cpython-310.pyc index 4d2cd325..fdcc8d38 100644 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/defaults.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/defaults.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/environment.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/environment.cpython-310.pyc index e7065000..9c5d34bd 100644 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/environment.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/environment.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/exceptions.cpython-310.pyc index 37eaf85d..64f6d3ca 100644 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/exceptions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/exceptions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/ext.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/ext.cpython-310.pyc deleted file mode 100644 index 13120a7a..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/ext.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/filters.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/filters.cpython-310.pyc index 58d8f851..dbf045f8 100644 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/filters.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/filters.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/idtracking.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/idtracking.cpython-310.pyc index 63c294fb..e453408e 100644 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/idtracking.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/idtracking.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/lexer.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/lexer.cpython-310.pyc index 7fbf4387..99fb0719 100644 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/lexer.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/lexer.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/loaders.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/loaders.cpython-310.pyc index 4b71d7fa..ab8355a6 100644 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/loaders.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/loaders.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/meta.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/meta.cpython-310.pyc deleted file mode 100644 index 5a3bf302..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/meta.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/nativetypes.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/nativetypes.cpython-310.pyc deleted file mode 100644 index f738f34e..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/nativetypes.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/nodes.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/nodes.cpython-310.pyc index 6e2d9640..1c81dd9b 100644 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/nodes.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/nodes.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/optimizer.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/optimizer.cpython-310.pyc index 54cfcf7c..5ecc4091 100644 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/optimizer.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/optimizer.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/parser.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/parser.cpython-310.pyc index 3eae5291..61d5df32 100644 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/parser.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/parser.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/runtime.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/runtime.cpython-310.pyc index a61608bb..16b16f86 100644 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/runtime.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/runtime.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/sandbox.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/sandbox.cpython-310.pyc index 5f646edc..5746b029 100644 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/sandbox.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/sandbox.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/tests.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/tests.cpython-310.pyc index 9f73174a..a55c6541 100644 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/tests.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/tests.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/utils.cpython-310.pyc index 3a6e4a5e..6528aa5c 100644 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/visitor.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/visitor.cpython-310.pyc index 20f59db1..9912a659 100644 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/visitor.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/jinja2/__pycache__/visitor.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/jiter/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jiter/__pycache__/__init__.cpython-310.pyc index d760dc8e..97ad70d8 100644 Binary files a/.venv/lib/python3.10/site-packages/jiter/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/jiter/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 35a33ac6..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/__main__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/__main__.cpython-310.pyc deleted file mode 100644 index cb47b668..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/__main__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/_format.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/_format.cpython-310.pyc deleted file mode 100644 index ac6af76b..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/_format.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/_keywords.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/_keywords.cpython-310.pyc deleted file mode 100644 index 03e52b2a..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/_keywords.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/_legacy_keywords.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/_legacy_keywords.cpython-310.pyc deleted file mode 100644 index dbd6a1a0..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/_legacy_keywords.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/_types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/_types.cpython-310.pyc deleted file mode 100644 index 3fabf8da..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/_types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/_typing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/_typing.cpython-310.pyc deleted file mode 100644 index ebc8a332..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/_typing.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/_utils.cpython-310.pyc deleted file mode 100644 index b4f49d20..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/cli.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/cli.cpython-310.pyc deleted file mode 100644 index 6d54b5b1..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/cli.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/exceptions.cpython-310.pyc deleted file mode 100644 index 71e41c3f..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/exceptions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/protocols.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/protocols.cpython-310.pyc deleted file mode 100644 index b4f93ce3..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/protocols.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/validators.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/validators.cpython-310.pyc deleted file mode 100644 index a1a0e702..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/__pycache__/validators.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 4030928f..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/const_vs_enum.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/const_vs_enum.cpython-310.pyc deleted file mode 100644 index f96fb83a..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/const_vs_enum.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/contains.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/contains.cpython-310.pyc deleted file mode 100644 index fd9310b9..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/contains.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/issue232.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/issue232.cpython-310.pyc deleted file mode 100644 index 2508df05..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/issue232.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/json_schema_test_suite.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/json_schema_test_suite.cpython-310.pyc deleted file mode 100644 index 5b05a79c..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/json_schema_test_suite.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/nested_schemas.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/nested_schemas.cpython-310.pyc deleted file mode 100644 index d8d58d5c..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/nested_schemas.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/subcomponents.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/subcomponents.cpython-310.pyc deleted file mode 100644 index 20c8e137..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/subcomponents.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/unused_registry.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/unused_registry.cpython-310.pyc deleted file mode 100644 index 922125bc..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/unused_registry.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/useless_applicator_schemas.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/useless_applicator_schemas.cpython-310.pyc deleted file mode 100644 index be831662..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/useless_applicator_schemas.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/useless_keywords.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/useless_keywords.cpython-310.pyc deleted file mode 100644 index 3e2ba07a..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/useless_keywords.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/validator_creation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/validator_creation.cpython-310.pyc deleted file mode 100644 index 04694f07..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/benchmarks/__pycache__/validator_creation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index cda3a38f..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/_suite.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/_suite.cpython-310.pyc deleted file mode 100644 index d9e2ab50..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/_suite.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/fuzz_validate.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/fuzz_validate.cpython-310.pyc deleted file mode 100644 index 3ea5bdfd..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/fuzz_validate.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_cli.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_cli.cpython-310.pyc deleted file mode 100644 index 76f6c05f..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_cli.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_deprecations.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_deprecations.cpython-310.pyc deleted file mode 100644 index 2a8e2256..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_deprecations.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_exceptions.cpython-310.pyc deleted file mode 100644 index 93b248cb..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_exceptions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_format.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_format.cpython-310.pyc deleted file mode 100644 index 24e7bac1..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_format.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_jsonschema_test_suite.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_jsonschema_test_suite.cpython-310.pyc deleted file mode 100644 index 6870d1de..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_jsonschema_test_suite.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_types.cpython-310.pyc deleted file mode 100644 index 1446b9f0..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_utils.cpython-310.pyc deleted file mode 100644 index fce4079f..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_validators.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_validators.cpython-310.pyc deleted file mode 100644 index 09a4f949..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema/tests/__pycache__/test_validators.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema_specifications/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema_specifications/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index ed54cec2..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema_specifications/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema_specifications/__pycache__/_core.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema_specifications/__pycache__/_core.cpython-310.pyc deleted file mode 100644 index 1460b933..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema_specifications/__pycache__/_core.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema_specifications/tests/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema_specifications/tests/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index e378752f..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema_specifications/tests/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/jsonschema_specifications/tests/__pycache__/test_jsonschema_specifications.cpython-310.pyc b/.venv/lib/python3.10/site-packages/jsonschema_specifications/tests/__pycache__/test_jsonschema_specifications.cpython-310.pyc deleted file mode 100644 index 2f9bd5ee..00000000 Binary files a/.venv/lib/python3.10/site-packages/jsonschema_specifications/tests/__pycache__/test_jsonschema_specifications.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm-1.67.2.dist-info/INSTALLER b/.venv/lib/python3.10/site-packages/litellm-1.67.2.dist-info/INSTALLER deleted file mode 100644 index a1b589e3..00000000 --- a/.venv/lib/python3.10/site-packages/litellm-1.67.2.dist-info/INSTALLER +++ /dev/null @@ -1 +0,0 @@ -pip diff --git a/.venv/lib/python3.10/site-packages/litellm-1.67.2.dist-info/LICENSE b/.venv/lib/python3.10/site-packages/litellm-1.67.2.dist-info/LICENSE deleted file mode 100644 index 3bfef5ba..00000000 --- a/.venv/lib/python3.10/site-packages/litellm-1.67.2.dist-info/LICENSE +++ /dev/null @@ -1,26 +0,0 @@ -Portions of this software are licensed as follows: - -* All content that resides under the "enterprise/" directory of this repository, if that directory exists, is licensed under the license defined in "enterprise/LICENSE". -* Content outside of the above mentioned directories or restrictions above is available under the MIT license as defined below. ---- -MIT License - -Copyright (c) 2023 Berri AI - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/.venv/lib/python3.10/site-packages/litellm-1.67.2.dist-info/METADATA b/.venv/lib/python3.10/site-packages/litellm-1.67.2.dist-info/METADATA deleted file mode 100644 index 23ae3d21..00000000 --- a/.venv/lib/python3.10/site-packages/litellm-1.67.2.dist-info/METADATA +++ /dev/null @@ -1,470 +0,0 @@ -Metadata-Version: 2.1 -Name: litellm -Version: 1.67.2 -Summary: Library to easily interface with LLM API providers -License: MIT -Author: BerriAI -Requires-Python: >=3.8, !=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.* -Classifier: License :: OSI Approved :: MIT License -Classifier: Programming Language :: Python :: 3 -Classifier: Programming Language :: Python :: 3.9 -Classifier: Programming Language :: Python :: 3.10 -Classifier: Programming Language :: Python :: 3.11 -Classifier: Programming Language :: Python :: 3.12 -Classifier: Programming Language :: Python :: 3.13 -Provides-Extra: extra-proxy -Provides-Extra: proxy -Requires-Dist: PyJWT (>=2.8.0,<3.0.0) ; extra == "proxy" -Requires-Dist: aiohttp -Requires-Dist: apscheduler (>=3.10.4,<4.0.0) ; extra == "proxy" -Requires-Dist: azure-identity (>=1.15.0,<2.0.0) ; extra == "extra-proxy" -Requires-Dist: azure-keyvault-secrets (>=4.8.0,<5.0.0) ; extra == "extra-proxy" -Requires-Dist: backoff ; extra == "proxy" -Requires-Dist: boto3 (==1.34.34) ; extra == "proxy" -Requires-Dist: click -Requires-Dist: cryptography (>=43.0.1,<44.0.0) ; extra == "proxy" -Requires-Dist: fastapi (>=0.115.5,<0.116.0) ; extra == "proxy" -Requires-Dist: fastapi-sso (>=0.16.0,<0.17.0) ; extra == "proxy" -Requires-Dist: google-cloud-kms (>=2.21.3,<3.0.0) ; extra == "extra-proxy" -Requires-Dist: gunicorn (>=23.0.0,<24.0.0) ; extra == "proxy" -Requires-Dist: httpx (>=0.23.0) -Requires-Dist: importlib-metadata (>=6.8.0) -Requires-Dist: jinja2 (>=3.1.2,<4.0.0) -Requires-Dist: jsonschema (>=4.22.0,<5.0.0) -Requires-Dist: litellm-proxy-extras (==0.1.11) ; extra == "proxy" -Requires-Dist: mcp (==1.5.0) ; (python_version >= "3.10") and (extra == "proxy") -Requires-Dist: openai (>=1.68.2) -Requires-Dist: orjson (>=3.9.7,<4.0.0) ; extra == "proxy" -Requires-Dist: prisma (==0.11.0) ; extra == "extra-proxy" -Requires-Dist: pydantic (>=2.0.0,<3.0.0) -Requires-Dist: pynacl (>=1.5.0,<2.0.0) ; extra == "proxy" -Requires-Dist: python-dotenv (>=0.2.0) -Requires-Dist: python-multipart (>=0.0.18,<0.0.19) ; extra == "proxy" -Requires-Dist: pyyaml (>=6.0.1,<7.0.0) ; extra == "proxy" -Requires-Dist: redisvl (>=0.4.1,<0.5.0) ; (python_version >= "3.9" and python_version < "3.14") and (extra == "extra-proxy") -Requires-Dist: resend (>=0.8.0,<0.9.0) ; extra == "extra-proxy" -Requires-Dist: rq ; extra == "proxy" -Requires-Dist: tiktoken (>=0.7.0) -Requires-Dist: tokenizers -Requires-Dist: uvicorn (>=0.29.0,<0.30.0) ; extra == "proxy" -Requires-Dist: uvloop (>=0.21.0,<0.22.0) ; extra == "proxy" -Requires-Dist: websockets (>=13.1.0,<14.0.0) ; extra == "proxy" -Project-URL: Documentation, https://docs.litellm.ai -Project-URL: Homepage, https://litellm.ai -Project-URL: Repository, https://github.com/BerriAI/litellm -Project-URL: documentation, https://docs.litellm.ai -Project-URL: homepage, https://litellm.ai -Project-URL: repository, https://github.com/BerriAI/litellm -Description-Content-Type: text/markdown - -

- 🚅 LiteLLM -

-

-

- Deploy to Render - - Deploy on Railway - -

-

Call all LLM APIs using the OpenAI format [Bedrock, Huggingface, VertexAI, TogetherAI, Azure, OpenAI, Groq etc.] -
-

-

LiteLLM Proxy Server (LLM Gateway) | Hosted Proxy (Preview) | Enterprise Tier

-

- - PyPI Version - - - Y Combinator W23 - - - Whatsapp - - - Discord - -

- -LiteLLM manages: - -- Translate inputs to provider's `completion`, `embedding`, and `image_generation` endpoints -- [Consistent output](https://docs.litellm.ai/docs/completion/output), text responses will always be available at `['choices'][0]['message']['content']` -- Retry/fallback logic across multiple deployments (e.g. Azure/OpenAI) - [Router](https://docs.litellm.ai/docs/routing) -- Set Budgets & Rate limits per project, api key, model [LiteLLM Proxy Server (LLM Gateway)](https://docs.litellm.ai/docs/simple_proxy) - -[**Jump to LiteLLM Proxy (LLM Gateway) Docs**](https://github.com/BerriAI/litellm?tab=readme-ov-file#openai-proxy---docs)
-[**Jump to Supported LLM Providers**](https://github.com/BerriAI/litellm?tab=readme-ov-file#supported-providers-docs) - -🚨 **Stable Release:** Use docker images with the `-stable` tag. These have undergone 12 hour load tests, before being published. [More information about the release cycle here](https://docs.litellm.ai/docs/proxy/release_cycle) - -Support for more providers. Missing a provider or LLM Platform, raise a [feature request](https://github.com/BerriAI/litellm/issues/new?assignees=&labels=enhancement&projects=&template=feature_request.yml&title=%5BFeature%5D%3A+). - -# Usage ([**Docs**](https://docs.litellm.ai/docs/)) - -> [!IMPORTANT] -> LiteLLM v1.0.0 now requires `openai>=1.0.0`. Migration guide [here](https://docs.litellm.ai/docs/migration) -> LiteLLM v1.40.14+ now requires `pydantic>=2.0.0`. No changes required. - - - Open In Colab - - -```shell -pip install litellm -``` - -```python -from litellm import completion -import os - -## set ENV variables -os.environ["OPENAI_API_KEY"] = "your-openai-key" -os.environ["ANTHROPIC_API_KEY"] = "your-anthropic-key" - -messages = [{ "content": "Hello, how are you?","role": "user"}] - -# openai call -response = completion(model="openai/gpt-4o", messages=messages) - -# anthropic call -response = completion(model="anthropic/claude-3-sonnet-20240229", messages=messages) -print(response) -``` - -### Response (OpenAI Format) - -```json -{ - "id": "chatcmpl-565d891b-a42e-4c39-8d14-82a1f5208885", - "created": 1734366691, - "model": "claude-3-sonnet-20240229", - "object": "chat.completion", - "system_fingerprint": null, - "choices": [ - { - "finish_reason": "stop", - "index": 0, - "message": { - "content": "Hello! As an AI language model, I don't have feelings, but I'm operating properly and ready to assist you with any questions or tasks you may have. How can I help you today?", - "role": "assistant", - "tool_calls": null, - "function_call": null - } - } - ], - "usage": { - "completion_tokens": 43, - "prompt_tokens": 13, - "total_tokens": 56, - "completion_tokens_details": null, - "prompt_tokens_details": { - "audio_tokens": null, - "cached_tokens": 0 - }, - "cache_creation_input_tokens": 0, - "cache_read_input_tokens": 0 - } -} -``` - -Call any model supported by a provider, with `model=/`. There might be provider-specific details here, so refer to [provider docs for more information](https://docs.litellm.ai/docs/providers) - -## Async ([Docs](https://docs.litellm.ai/docs/completion/stream#async-completion)) - -```python -from litellm import acompletion -import asyncio - -async def test_get_response(): - user_message = "Hello, how are you?" - messages = [{"content": user_message, "role": "user"}] - response = await acompletion(model="openai/gpt-4o", messages=messages) - return response - -response = asyncio.run(test_get_response()) -print(response) -``` - -## Streaming ([Docs](https://docs.litellm.ai/docs/completion/stream)) - -liteLLM supports streaming the model response back, pass `stream=True` to get a streaming iterator in response. -Streaming is supported for all models (Bedrock, Huggingface, TogetherAI, Azure, OpenAI, etc.) - -```python -from litellm import completion -response = completion(model="openai/gpt-4o", messages=messages, stream=True) -for part in response: - print(part.choices[0].delta.content or "") - -# claude 2 -response = completion('anthropic/claude-3-sonnet-20240229', messages, stream=True) -for part in response: - print(part) -``` - -### Response chunk (OpenAI Format) - -```json -{ - "id": "chatcmpl-2be06597-eb60-4c70-9ec5-8cd2ab1b4697", - "created": 1734366925, - "model": "claude-3-sonnet-20240229", - "object": "chat.completion.chunk", - "system_fingerprint": null, - "choices": [ - { - "finish_reason": null, - "index": 0, - "delta": { - "content": "Hello", - "role": "assistant", - "function_call": null, - "tool_calls": null, - "audio": null - }, - "logprobs": null - } - ] -} -``` - -## Logging Observability ([Docs](https://docs.litellm.ai/docs/observability/callbacks)) - -LiteLLM exposes pre defined callbacks to send data to Lunary, MLflow, Langfuse, DynamoDB, s3 Buckets, Helicone, Promptlayer, Traceloop, Athina, Slack - -```python -from litellm import completion - -## set env variables for logging tools (when using MLflow, no API key set up is required) -os.environ["LUNARY_PUBLIC_KEY"] = "your-lunary-public-key" -os.environ["HELICONE_API_KEY"] = "your-helicone-auth-key" -os.environ["LANGFUSE_PUBLIC_KEY"] = "" -os.environ["LANGFUSE_SECRET_KEY"] = "" -os.environ["ATHINA_API_KEY"] = "your-athina-api-key" - -os.environ["OPENAI_API_KEY"] = "your-openai-key" - -# set callbacks -litellm.success_callback = ["lunary", "mlflow", "langfuse", "athina", "helicone"] # log input/output to lunary, langfuse, supabase, athina, helicone etc - -#openai call -response = completion(model="openai/gpt-4o", messages=[{"role": "user", "content": "Hi 👋 - i'm openai"}]) -``` - -# LiteLLM Proxy Server (LLM Gateway) - ([Docs](https://docs.litellm.ai/docs/simple_proxy)) - -Track spend + Load Balance across multiple projects - -[Hosted Proxy (Preview)](https://docs.litellm.ai/docs/hosted) - -The proxy provides: - -1. [Hooks for auth](https://docs.litellm.ai/docs/proxy/virtual_keys#custom-auth) -2. [Hooks for logging](https://docs.litellm.ai/docs/proxy/logging#step-1---create-your-custom-litellm-callback-class) -3. [Cost tracking](https://docs.litellm.ai/docs/proxy/virtual_keys#tracking-spend) -4. [Rate Limiting](https://docs.litellm.ai/docs/proxy/users#set-rate-limits) - -## 📖 Proxy Endpoints - [Swagger Docs](https://litellm-api.up.railway.app/) - - -## Quick Start Proxy - CLI - -```shell -pip install 'litellm[proxy]' -``` - -### Step 1: Start litellm proxy - -```shell -$ litellm --model huggingface/bigcode/starcoder - -#INFO: Proxy running on http://0.0.0.0:4000 -``` - -### Step 2: Make ChatCompletions Request to Proxy - - -> [!IMPORTANT] -> 💡 [Use LiteLLM Proxy with Langchain (Python, JS), OpenAI SDK (Python, JS) Anthropic SDK, Mistral SDK, LlamaIndex, Instructor, Curl](https://docs.litellm.ai/docs/proxy/user_keys) - -```python -import openai # openai v1.0.0+ -client = openai.OpenAI(api_key="anything",base_url="http://0.0.0.0:4000") # set proxy to base_url -# request sent to model set on litellm proxy, `litellm --model` -response = client.chat.completions.create(model="gpt-3.5-turbo", messages = [ - { - "role": "user", - "content": "this is a test request, write a short poem" - } -]) - -print(response) -``` - -## Proxy Key Management ([Docs](https://docs.litellm.ai/docs/proxy/virtual_keys)) - -Connect the proxy with a Postgres DB to create proxy keys - -```bash -# Get the code -git clone https://github.com/BerriAI/litellm - -# Go to folder -cd litellm - -# Add the master key - you can change this after setup -echo 'LITELLM_MASTER_KEY="sk-1234"' > .env - -# Add the litellm salt key - you cannot change this after adding a model -# It is used to encrypt / decrypt your LLM API Key credentials -# We recommend - https://1password.com/password-generator/ -# password generator to get a random hash for litellm salt key -echo 'LITELLM_SALT_KEY="sk-1234"' > .env - -source .env - -# Start -docker-compose up -``` - - -UI on `/ui` on your proxy server -![ui_3](https://github.com/BerriAI/litellm/assets/29436595/47c97d5e-b9be-4839-b28c-43d7f4f10033) - -Set budgets and rate limits across multiple projects -`POST /key/generate` - -### Request - -```shell -curl 'http://0.0.0.0:4000/key/generate' \ ---header 'Authorization: Bearer sk-1234' \ ---header 'Content-Type: application/json' \ ---data-raw '{"models": ["gpt-3.5-turbo", "gpt-4", "claude-2"], "duration": "20m","metadata": {"user": "ishaan@berri.ai", "team": "core-infra"}}' -``` - -### Expected Response - -```shell -{ - "key": "sk-kdEXbIqZRwEeEiHwdg7sFA", # Bearer token - "expires": "2023-11-19T01:38:25.838000+00:00" # datetime object -} -``` - -## Supported Providers ([Docs](https://docs.litellm.ai/docs/providers)) - -| Provider | [Completion](https://docs.litellm.ai/docs/#basic-usage) | [Streaming](https://docs.litellm.ai/docs/completion/stream#streaming-responses) | [Async Completion](https://docs.litellm.ai/docs/completion/stream#async-completion) | [Async Streaming](https://docs.litellm.ai/docs/completion/stream#async-streaming) | [Async Embedding](https://docs.litellm.ai/docs/embedding/supported_embedding) | [Async Image Generation](https://docs.litellm.ai/docs/image_generation) | -|-------------------------------------------------------------------------------------|---------------------------------------------------------|---------------------------------------------------------------------------------|-------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|-------------------------------------------------------------------------------|-------------------------------------------------------------------------| -| [openai](https://docs.litellm.ai/docs/providers/openai) | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | -| [azure](https://docs.litellm.ai/docs/providers/azure) | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | -| [AI/ML API](https://docs.litellm.ai/docs/providers/aiml) | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | -| [aws - sagemaker](https://docs.litellm.ai/docs/providers/aws_sagemaker) | ✅ | ✅ | ✅ | ✅ | ✅ | | -| [aws - bedrock](https://docs.litellm.ai/docs/providers/bedrock) | ✅ | ✅ | ✅ | ✅ | ✅ | | -| [google - vertex_ai](https://docs.litellm.ai/docs/providers/vertex) | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | -| [google - palm](https://docs.litellm.ai/docs/providers/palm) | ✅ | ✅ | ✅ | ✅ | | | -| [google AI Studio - gemini](https://docs.litellm.ai/docs/providers/gemini) | ✅ | ✅ | ✅ | ✅ | | | -| [mistral ai api](https://docs.litellm.ai/docs/providers/mistral) | ✅ | ✅ | ✅ | ✅ | ✅ | | -| [cloudflare AI Workers](https://docs.litellm.ai/docs/providers/cloudflare_workers) | ✅ | ✅ | ✅ | ✅ | | | -| [cohere](https://docs.litellm.ai/docs/providers/cohere) | ✅ | ✅ | ✅ | ✅ | ✅ | | -| [anthropic](https://docs.litellm.ai/docs/providers/anthropic) | ✅ | ✅ | ✅ | ✅ | | | -| [empower](https://docs.litellm.ai/docs/providers/empower) | ✅ | ✅ | ✅ | ✅ | -| [huggingface](https://docs.litellm.ai/docs/providers/huggingface) | ✅ | ✅ | ✅ | ✅ | ✅ | | -| [replicate](https://docs.litellm.ai/docs/providers/replicate) | ✅ | ✅ | ✅ | ✅ | | | -| [together_ai](https://docs.litellm.ai/docs/providers/togetherai) | ✅ | ✅ | ✅ | ✅ | | | -| [openrouter](https://docs.litellm.ai/docs/providers/openrouter) | ✅ | ✅ | ✅ | ✅ | | | -| [ai21](https://docs.litellm.ai/docs/providers/ai21) | ✅ | ✅ | ✅ | ✅ | | | -| [baseten](https://docs.litellm.ai/docs/providers/baseten) | ✅ | ✅ | ✅ | ✅ | | | -| [vllm](https://docs.litellm.ai/docs/providers/vllm) | ✅ | ✅ | ✅ | ✅ | | | -| [nlp_cloud](https://docs.litellm.ai/docs/providers/nlp_cloud) | ✅ | ✅ | ✅ | ✅ | | | -| [aleph alpha](https://docs.litellm.ai/docs/providers/aleph_alpha) | ✅ | ✅ | ✅ | ✅ | | | -| [petals](https://docs.litellm.ai/docs/providers/petals) | ✅ | ✅ | ✅ | ✅ | | | -| [ollama](https://docs.litellm.ai/docs/providers/ollama) | ✅ | ✅ | ✅ | ✅ | ✅ | | -| [deepinfra](https://docs.litellm.ai/docs/providers/deepinfra) | ✅ | ✅ | ✅ | ✅ | | | -| [perplexity-ai](https://docs.litellm.ai/docs/providers/perplexity) | ✅ | ✅ | ✅ | ✅ | | | -| [Groq AI](https://docs.litellm.ai/docs/providers/groq) | ✅ | ✅ | ✅ | ✅ | | | -| [Deepseek](https://docs.litellm.ai/docs/providers/deepseek) | ✅ | ✅ | ✅ | ✅ | | | -| [anyscale](https://docs.litellm.ai/docs/providers/anyscale) | ✅ | ✅ | ✅ | ✅ | | | -| [IBM - watsonx.ai](https://docs.litellm.ai/docs/providers/watsonx) | ✅ | ✅ | ✅ | ✅ | ✅ | | -| [voyage ai](https://docs.litellm.ai/docs/providers/voyage) | | | | | ✅ | | -| [xinference [Xorbits Inference]](https://docs.litellm.ai/docs/providers/xinference) | | | | | ✅ | | -| [FriendliAI](https://docs.litellm.ai/docs/providers/friendliai) | ✅ | ✅ | ✅ | ✅ | | | -| [Galadriel](https://docs.litellm.ai/docs/providers/galadriel) | ✅ | ✅ | ✅ | ✅ | | | - -[**Read the Docs**](https://docs.litellm.ai/docs/) - -## Contributing - -Interested in contributing? Contributions to LiteLLM Python SDK, Proxy Server, and contributing LLM integrations are both accepted and highly encouraged! [See our Contribution Guide for more details](https://docs.litellm.ai/docs/extras/contributing_code) - -# Enterprise -For companies that need better security, user management and professional support - -[Talk to founders](https://calendly.com/d/4mp-gd3-k5k/litellm-1-1-onboarding-chat) - -This covers: -- ✅ **Features under the [LiteLLM Commercial License](https://docs.litellm.ai/docs/proxy/enterprise):** -- ✅ **Feature Prioritization** -- ✅ **Custom Integrations** -- ✅ **Professional Support - Dedicated discord + slack** -- ✅ **Custom SLAs** -- ✅ **Secure access with Single Sign-On** - -# Code Quality / Linting - -LiteLLM follows the [Google Python Style Guide](https://google.github.io/styleguide/pyguide.html). - -We run: -- Ruff for [formatting and linting checks](https://github.com/BerriAI/litellm/blob/e19bb55e3b4c6a858b6e364302ebbf6633a51de5/.circleci/config.yml#L320) -- Mypy + Pyright for typing [1](https://github.com/BerriAI/litellm/blob/e19bb55e3b4c6a858b6e364302ebbf6633a51de5/.circleci/config.yml#L90), [2](https://github.com/BerriAI/litellm/blob/e19bb55e3b4c6a858b6e364302ebbf6633a51de5/.pre-commit-config.yaml#L4) -- Black for [formatting](https://github.com/BerriAI/litellm/blob/e19bb55e3b4c6a858b6e364302ebbf6633a51de5/.circleci/config.yml#L79) -- isort for [import sorting](https://github.com/BerriAI/litellm/blob/e19bb55e3b4c6a858b6e364302ebbf6633a51de5/.pre-commit-config.yaml#L10) - - -If you have suggestions on how to improve the code quality feel free to open an issue or a PR. - - -# Support / talk with founders - -- [Schedule Demo 👋](https://calendly.com/d/4mp-gd3-k5k/berriai-1-1-onboarding-litellm-hosted-version) -- [Community Discord 💭](https://discord.gg/wuPM9dRgDw) -- Our numbers 📞 +1 (770) 8783-106 / ‭+1 (412) 618-6238‬ -- Our emails ✉️ ishaan@berri.ai / krrish@berri.ai - -# Why did we build this - -- **Need for simplicity**: Our code started to get extremely complicated managing & translating calls between Azure, OpenAI and Cohere. - -# Contributors - - - - - - - - - - - - - - - -## Run in Developer mode -### Services -1. Setup .env file in root -2. Run dependant services `docker-compose up db prometheus` - -### Backend -1. (In root) create virtual environment `python -m venv .venv` -2. Activate virtual environment `source .venv/bin/activate` -3. Install dependencies `pip install -e ".[all]"` -4. Start proxy backend `uvicorn litellm.proxy.proxy_server:app --host localhost --port 4000 --reload` - -### Frontend -1. Navigate to `ui/litellm-dashboard` -2. Install dependencies `npm install` -3. Run `npm run dev` to start the dashboard - diff --git a/.venv/lib/python3.10/site-packages/litellm-1.67.2.dist-info/RECORD b/.venv/lib/python3.10/site-packages/litellm-1.67.2.dist-info/RECORD deleted file mode 100644 index 2edadc9a..00000000 --- a/.venv/lib/python3.10/site-packages/litellm-1.67.2.dist-info/RECORD +++ /dev/null @@ -1,1403 +0,0 @@ -../../../bin/litellm,sha256=UD9t3_LkV5Zd4fTuRoHZZeFhqJgtPK1udqLvbVtoEVk,260 -litellm-1.67.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 -litellm-1.67.2.dist-info/LICENSE,sha256=sXDWv46INd01fgEWgdsCj01R4vsOqJIFj1bgH7ObgnM,1419 -litellm-1.67.2.dist-info/METADATA,sha256=uui6lm92ctuthnLlZZTzql9WjxytMKsLGm6OnhNnLK8,36825 -litellm-1.67.2.dist-info/RECORD,, -litellm-1.67.2.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -litellm-1.67.2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88 -litellm-1.67.2.dist-info/entry_points.txt,sha256=FGIGsq4hBWP2nfWEtKPIwxv67GXhoegZK_AF2oK447M,46 -litellm/__init__.py,sha256=atlQMmaOojSdks2PfCPEdSwGK6hJYJ39N3EG2zTUqnU,41630 -litellm/__pycache__/__init__.cpython-310.pyc,, -litellm/__pycache__/_logging.cpython-310.pyc,, -litellm/__pycache__/_redis.cpython-310.pyc,, -litellm/__pycache__/_service_logger.cpython-310.pyc,, -litellm/__pycache__/_version.cpython-310.pyc,, -litellm/__pycache__/budget_manager.cpython-310.pyc,, -litellm/__pycache__/constants.cpython-310.pyc,, -litellm/__pycache__/cost_calculator.cpython-310.pyc,, -litellm/__pycache__/exceptions.cpython-310.pyc,, -litellm/__pycache__/main.cpython-310.pyc,, -litellm/__pycache__/router.cpython-310.pyc,, -litellm/__pycache__/scheduler.cpython-310.pyc,, -litellm/__pycache__/timeout.cpython-310.pyc,, -litellm/__pycache__/utils.cpython-310.pyc,, -litellm/_logging.py,sha256=2QUbwHJ1WY0h1TjogU24gID4DdgEiSI32tME-Pv648M,4942 -litellm/_redis.py,sha256=nNbD7JOC7W2EvqRWRJAp0Nin5Qzz8x1yfcyZnz_qjnw,11051 -litellm/_service_logger.py,sha256=fiYGLqVkygCqI2ETyz-5_IGkUjpYENt2T_m68cSbQnQ,11471 -litellm/_version.py,sha256=PGgsdOglcnWeG6t49ysrg8Vswv24lMyxdNuPxlwU2UE,126 -litellm/anthropic_interface/__init__.py,sha256=AQ67PAfuKg42pyoKUzh7ei_I2nLbMS3oFeLxYtywauM,108 -litellm/anthropic_interface/__pycache__/__init__.cpython-310.pyc,, -litellm/anthropic_interface/messages/__init__.py,sha256=tBQ6TRawBHiPCTFDbx2ub0zBfek4Tmkr1Z_v5Lkown0,4040 -litellm/anthropic_interface/messages/__pycache__/__init__.cpython-310.pyc,, -litellm/anthropic_interface/readme.md,sha256=ZJqo4HzPIVT6X2pBiE83z9e7HxxWmWK31twFbbhEDPc,2592 -litellm/assistants/__pycache__/main.cpython-310.pyc,, -litellm/assistants/__pycache__/utils.cpython-310.pyc,, -litellm/assistants/main.py,sha256=5nnm4zHYIWCRlpf8fHw01_I9FjIPqm9xkxrSIJOsqII,52422 -litellm/assistants/utils.py,sha256=im5D0fBkAgfQwt9MdPX1XJLp-JSuvdyISjh1s0X3VaY,5779 -litellm/batch_completion/Readme.md,sha256=2Wp90GJazbdovGZSEG7jUhXVTYV5FanzGukCKKrb7o0,636 -litellm/batch_completion/__pycache__/main.cpython-310.pyc,, -litellm/batch_completion/main.py,sha256=J2lRZV_UiyHSJ9I5J_A5a4NEXKBeWLEUKny4f9hKnJk,10463 -litellm/batches/__pycache__/batch_utils.cpython-310.pyc,, -litellm/batches/__pycache__/main.cpython-310.pyc,, -litellm/batches/batch_utils.py,sha256=286jZOpw-2L-4hDiFHRX-zkF_XU91u1vVaIK-ti2x9s,6389 -litellm/batches/main.py,sha256=R1bEw-Bteq-m7JIoA18HEEt1OWl48fw5gLNu_gQKsKw,28733 -litellm/budget_manager.py,sha256=t-YTwtpWA9H4M3ooqdESAtZ-aAOzsDYt94avY4HV9b8,8462 -litellm/caching/Readme.md,sha256=hJjbsXpvJuMX4VPE331cMp7fHnafVji2ij9Qf_nMWcA,894 -litellm/caching/__init__.py,sha256=1ODCp1gCZyXrHt1JM1ZVVSpXHPAHV1DRVQpu8qpqsPI,381 -litellm/caching/__pycache__/__init__.cpython-310.pyc,, -litellm/caching/__pycache__/_internal_lru_cache.cpython-310.pyc,, -litellm/caching/__pycache__/base_cache.cpython-310.pyc,, -litellm/caching/__pycache__/caching.cpython-310.pyc,, -litellm/caching/__pycache__/caching_handler.cpython-310.pyc,, -litellm/caching/__pycache__/disk_cache.cpython-310.pyc,, -litellm/caching/__pycache__/dual_cache.cpython-310.pyc,, -litellm/caching/__pycache__/in_memory_cache.cpython-310.pyc,, -litellm/caching/__pycache__/llm_caching_handler.cpython-310.pyc,, -litellm/caching/__pycache__/qdrant_semantic_cache.cpython-310.pyc,, -litellm/caching/__pycache__/redis_cache.cpython-310.pyc,, -litellm/caching/__pycache__/redis_cluster_cache.cpython-310.pyc,, -litellm/caching/__pycache__/redis_semantic_cache.cpython-310.pyc,, -litellm/caching/__pycache__/s3_cache.cpython-310.pyc,, -litellm/caching/_internal_lru_cache.py,sha256=yVMtXSglvmxFJMY6HlJmh1jAKHQtnXkJRijYOPekzPs,794 -litellm/caching/base_cache.py,sha256=kTmPeVoTK_F59IY_M69ZOPYBLQVeDtu9mN8Bi7BUeYc,1409 -litellm/caching/caching.py,sha256=aIcUdrKkObD4dO596SnvQhgo8bQ52hS0nuwYudGMgpQ,31500 -litellm/caching/caching_handler.py,sha256=eVEMTPdp7-2KN28Z7K3vJWKAivp3xmz31WDPUqHu45g,34245 -litellm/caching/disk_cache.py,sha256=ZxyKvE46yn_dV5JNjh60gQAKFEWMXGIt1WzDpq02wPM,2850 -litellm/caching/dual_cache.py,sha256=GT_dJmHGEJWWcVuTnXfD7E4vheejsVdzsdbj64H2_T0,15422 -litellm/caching/in_memory_cache.py,sha256=T2z02LUsMrE7GPOucpetXt2WxhgVUbryQYXrEwm5Fqk,7185 -litellm/caching/llm_caching_handler.py,sha256=yq3sVV6MSNQkyIZ5sOTfD3XE99ioJB_8XY0UildhJv0,1292 -litellm/caching/qdrant_semantic_cache.py,sha256=1KgSC_SeAdqCTG4E-G52l3W2NRBkLdcBGZSGVIw7w6c,15345 -litellm/caching/redis_cache.py,sha256=_Qu4KCtvP57vAsmBgUKlo08Bh_9mEZIfrFN0GpcHRC4,43957 -litellm/caching/redis_cluster_cache.py,sha256=_rRO21mendWanAlaHXJeo44mpS0sgeHonV7AUmE2LwA,1949 -litellm/caching/redis_semantic_cache.py,sha256=WL4OjbFx4HTn0diGAdchuw75h9RhkrfIHWSDof6hxY8,16880 -litellm/caching/s3_cache.py,sha256=pukLeS3QvvJ2HgvyU0H6NgHIdTTda0Cx8UeFHltZUUc,5501 -litellm/constants.py,sha256=DABVHMjfFE7AhcY1wxYQmnLd3w2L5nfmJvrGZXIJu2Q,20788 -litellm/cost.json,sha256=GJEXQcWy9ZvA5DhsPlWnolw-0gK_JG6PQRC67EO6VmQ,108 -litellm/cost_calculator.py,sha256=DNZP5xbL2CJCn9g_r7PFTpd0IZobYdGDQquP6tlk4BE,55010 -litellm/exceptions.py,sha256=45XhUGBlM2zGavab4_OivWkB2EzeQwQsgqX_XUXLuUY,28968 -litellm/experimental_mcp_client/Readme.md,sha256=r3ZHZKSGcsZS5JktPuxpZWWvYLD5EvVK1oIZIW2lxRE,103 -litellm/experimental_mcp_client/__init__.py,sha256=PoWVHZDDHIChYzHXTpxvYX2UrV6Rn0NWwn9woKDxLTk,102 -litellm/experimental_mcp_client/__pycache__/__init__.cpython-310.pyc,, -litellm/experimental_mcp_client/__pycache__/client.cpython-310.pyc,, -litellm/experimental_mcp_client/__pycache__/tools.cpython-310.pyc,, -litellm/experimental_mcp_client/client.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -litellm/experimental_mcp_client/tools.py,sha256=RtCDYzk-4iqgBg4NhdOQAV7cK90dgN_2VVfeEOCjzs8,3657 -litellm/files/__pycache__/main.cpython-310.pyc,, -litellm/files/main.py,sha256=XG1lXof8ztbi-HQXp6TtGOW0fA01Pp8C8bCmOBHSjr4,32748 -litellm/fine_tuning/__pycache__/main.cpython-310.pyc,, -litellm/fine_tuning/main.py,sha256=2qeo7GB_Ylu82IMktQ_sUgNJB17OYvQ4HHBuh2uGTrI,28496 -litellm/integrations/Readme.md,sha256=0o2TAoAm8ZsLm53-RBLqjpgrUz3ZAhoxwQi6SbMfaV0,137 -litellm/integrations/SlackAlerting/Readme.md,sha256=GhpOkko6U6nZc8aFyEbsQYqg-zNPyEcN3CSX_sKzXEg,781 -litellm/integrations/SlackAlerting/__pycache__/batching_handler.cpython-310.pyc,, -litellm/integrations/SlackAlerting/__pycache__/slack_alerting.cpython-310.pyc,, -litellm/integrations/SlackAlerting/__pycache__/utils.cpython-310.pyc,, -litellm/integrations/SlackAlerting/batching_handler.py,sha256=g0Ayl1SIKF7odWT9fLGnYLJCxEEbxR8ASEdLzUEpqKs,2250 -litellm/integrations/SlackAlerting/slack_alerting.py,sha256=1lqyp8JLPrzNKNXtmGXfyOLnYvwAFLTQN8N8H5VuqK0,67971 -litellm/integrations/SlackAlerting/utils.py,sha256=fD5aef-4cEJO3a4Slp9EQScDRg4exAEbWorBBk2Xvqg,3108 -litellm/integrations/__init__.py,sha256=Il5Q9ATdX8yXqVxtP_nYqUhExzxPC_qk_WXQ_4h0exg,16 -litellm/integrations/__pycache__/__init__.cpython-310.pyc,, -litellm/integrations/__pycache__/additional_logging_utils.cpython-310.pyc,, -litellm/integrations/__pycache__/anthropic_cache_control_hook.cpython-310.pyc,, -litellm/integrations/__pycache__/argilla.cpython-310.pyc,, -litellm/integrations/__pycache__/athina.cpython-310.pyc,, -litellm/integrations/__pycache__/braintrust_logging.cpython-310.pyc,, -litellm/integrations/__pycache__/custom_batch_logger.cpython-310.pyc,, -litellm/integrations/__pycache__/custom_guardrail.cpython-310.pyc,, -litellm/integrations/__pycache__/custom_logger.cpython-310.pyc,, -litellm/integrations/__pycache__/custom_prompt_management.cpython-310.pyc,, -litellm/integrations/__pycache__/dynamodb.cpython-310.pyc,, -litellm/integrations/__pycache__/email_alerting.cpython-310.pyc,, -litellm/integrations/__pycache__/galileo.cpython-310.pyc,, -litellm/integrations/__pycache__/greenscale.cpython-310.pyc,, -litellm/integrations/__pycache__/helicone.cpython-310.pyc,, -litellm/integrations/__pycache__/humanloop.cpython-310.pyc,, -litellm/integrations/__pycache__/lago.cpython-310.pyc,, -litellm/integrations/__pycache__/langsmith.cpython-310.pyc,, -litellm/integrations/__pycache__/langtrace.cpython-310.pyc,, -litellm/integrations/__pycache__/literal_ai.cpython-310.pyc,, -litellm/integrations/__pycache__/logfire_logger.cpython-310.pyc,, -litellm/integrations/__pycache__/lunary.cpython-310.pyc,, -litellm/integrations/__pycache__/mlflow.cpython-310.pyc,, -litellm/integrations/__pycache__/openmeter.cpython-310.pyc,, -litellm/integrations/__pycache__/opentelemetry.cpython-310.pyc,, -litellm/integrations/__pycache__/prometheus.cpython-310.pyc,, -litellm/integrations/__pycache__/prometheus_services.cpython-310.pyc,, -litellm/integrations/__pycache__/prompt_layer.cpython-310.pyc,, -litellm/integrations/__pycache__/prompt_management_base.cpython-310.pyc,, -litellm/integrations/__pycache__/s3.cpython-310.pyc,, -litellm/integrations/__pycache__/supabase.cpython-310.pyc,, -litellm/integrations/__pycache__/test_httpx.cpython-310.pyc,, -litellm/integrations/__pycache__/traceloop.cpython-310.pyc,, -litellm/integrations/__pycache__/weights_biases.cpython-310.pyc,, -litellm/integrations/_types/__pycache__/open_inference.cpython-310.pyc,, -litellm/integrations/_types/open_inference.py,sha256=Z7PxXw0cY-JuhW8LdtmMMWxHJSCOdn22gYn-saK9usc,10079 -litellm/integrations/additional_logging_utils.py,sha256=j2mpmj1YqNQY6b066mENmSpbk5XcCXnIzQ_lh0FIu6Q,927 -litellm/integrations/agentops/__init__.py,sha256=y9KrQbr5Fir7xyIA8x7Q-yqIWNsERQFH4z_Vot5vgCY,55 -litellm/integrations/agentops/__pycache__/__init__.cpython-310.pyc,, -litellm/integrations/agentops/__pycache__/agentops.cpython-310.pyc,, -litellm/integrations/agentops/agentops.py,sha256=WhnI8wDQmGJ-HAXrjupw1GemONM2hhtGoUpY6ns-XqU,3741 -litellm/integrations/anthropic_cache_control_hook.py,sha256=J37n8LvFVToERMiwo-34VI4L6DG6jXJAMMoFw7jenc4,5782 -litellm/integrations/argilla.py,sha256=jmvamrrENHyGLHJZGLEwSDu59YDFe-VHJXz8Js45UFE,14289 -litellm/integrations/arize/__pycache__/_utils.cpython-310.pyc,, -litellm/integrations/arize/__pycache__/arize.cpython-310.pyc,, -litellm/integrations/arize/__pycache__/arize_phoenix.cpython-310.pyc,, -litellm/integrations/arize/_utils.py,sha256=NCAbCdIXI_a-O7Mf0NzI2CCW94zuA9Jb7Ufk0iw6_sE,10174 -litellm/integrations/arize/arize.py,sha256=e6TsHmysWaeZqwgUO354vtrLg7t5G7fLdNTPWJcdKCk,3236 -litellm/integrations/arize/arize_phoenix.py,sha256=dIXujOUu9G48IMJPuR5l-RPwUrqd0GXLaKR1qctlfEk,2765 -litellm/integrations/athina.py,sha256=rDW9YPu86OEyZYBPTYu05qQqq1PmuB_7V73Gu-6AZEA,3785 -litellm/integrations/azure_storage/__pycache__/azure_storage.cpython-310.pyc,, -litellm/integrations/azure_storage/azure_storage.py,sha256=fcWBeY5TpR5uRaLE9v6FTICz4WSlRXlTrIInG7ofSQM,15724 -litellm/integrations/braintrust_logging.py,sha256=x8Qs7Dg2q-8o3FjVfEVYrUtWl10DQd6flNSPCrkOWJ8,17776 -litellm/integrations/custom_batch_logger.py,sha256=55tkUy_OfiBLTeiCsKqu8gX55H0EdDRxjx8JGYJk85A,1847 -litellm/integrations/custom_guardrail.py,sha256=tDVCz0FYxSvlSfwOKFtf42Ucs4bgUnLkeCh9SRFfDT4,10342 -litellm/integrations/custom_logger.py,sha256=yYRnFXyVbKSxfwxjvVkGBnkhaVLITxYtHI-kIf-R8Q8,12939 -litellm/integrations/custom_prompt_management.py,sha256=I4OtMTFtGNujacE3OlDaCdH7nS8xpP5COQgQe3hDiJk,1785 -litellm/integrations/datadog/__pycache__/datadog.cpython-310.pyc,, -litellm/integrations/datadog/__pycache__/datadog_llm_obs.cpython-310.pyc,, -litellm/integrations/datadog/datadog.py,sha256=FjxYJGjW_nMJPaUkT7iMiPxxGvqPBvlVDNt8vRRa6sA,20330 -litellm/integrations/datadog/datadog_llm_obs.py,sha256=LhZvcxYUAWxxFXP8ontwSIWNQT4mnqj5pDyrabwRTcs,8133 -litellm/integrations/dynamodb.py,sha256=fvWlURS4CkTzA7Or3YhF6DgyvYOJEaRFUANWOpJcuxs,3168 -litellm/integrations/email_alerting.py,sha256=zpa6OiqL-HhhWuuyJB067RH1AI9aIykAwQM06rlWJq0,4413 -litellm/integrations/email_templates/__pycache__/templates.cpython-310.pyc,, -litellm/integrations/email_templates/templates.py,sha256=aLw_bBXNBImuTN5u7w6Z4_WKBWU_p1zKOOi48-nWhuY,2277 -litellm/integrations/galileo.py,sha256=aU-9T0gUq3Tv10KHoYvCdCBDyfuuMIdBfisOkF50cA8,5739 -litellm/integrations/gcs_bucket/Readme.md,sha256=Hh-Zc0Zl7qnWHw4B54advTgJgpGaJHMgXQCAX-zvBWU,591 -litellm/integrations/gcs_bucket/__pycache__/gcs_bucket.cpython-310.pyc,, -litellm/integrations/gcs_bucket/__pycache__/gcs_bucket_base.cpython-310.pyc,, -litellm/integrations/gcs_bucket/gcs_bucket.py,sha256=9iu_81y5nm3pidzAYN7yjKiZ5y3ShvUnfEXfrybV3qU,8810 -litellm/integrations/gcs_bucket/gcs_bucket_base.py,sha256=GC3QRPmI1yXZTKbxkhLewjvbrQmvIGtfYb5fQ5CbHyY,12640 -litellm/integrations/gcs_pubsub/__pycache__/pub_sub.cpython-310.pyc,, -litellm/integrations/gcs_pubsub/pub_sub.py,sha256=7EvwxD0RuC29b8Es1DzI0746CLZZAC9pS5udUXukVq8,7024 -litellm/integrations/greenscale.py,sha256=w1oMxbACBwkdHKTTvbQ6hPaRrOjZq9ZlDavFHoJ-4Kw,2698 -litellm/integrations/helicone.py,sha256=xSNoZ5BJaPU_tT306AAmH9FXepUuNthT20aYmF8n1yM,6857 -litellm/integrations/humanloop.py,sha256=NNfWgMBYuYz1XCgPnPHlBz3PK4BOs--OYy4ZkMKeIgc,6685 -litellm/integrations/lago.py,sha256=rGl7FGsNF3ZC1O0z8c1aAp2C_SkYUiLDbUviXPmWBZQ,6984 -litellm/integrations/langfuse/__pycache__/langfuse.cpython-310.pyc,, -litellm/integrations/langfuse/__pycache__/langfuse_handler.cpython-310.pyc,, -litellm/integrations/langfuse/__pycache__/langfuse_prompt_management.cpython-310.pyc,, -litellm/integrations/langfuse/langfuse.py,sha256=nrcEXOZ0Lx79xRH91Af15K3ATJywNvDeHojqyKP7wXI,37697 -litellm/integrations/langfuse/langfuse_handler.py,sha256=imVTJS4uDmR0a3590jR8htt0cIp97pa-aVoE5PFFww8,6830 -litellm/integrations/langfuse/langfuse_prompt_management.py,sha256=kIhJaNGRQJ3JDMyDlIWM9FH7-h3XM9f9Oe0Ku0pA6J8,10096 -litellm/integrations/langsmith.py,sha256=4Ov8i7hF5rAHRFApIS0pCOphDvMe6YNGJkJIM6WuRuA,18364 -litellm/integrations/langtrace.py,sha256=AW1CHaNbJg6iVbcXPH6twG7kCqdEgOfhVwGbm859SHQ,4069 -litellm/integrations/literal_ai.py,sha256=9Fe7nAUe8OpEyxlL_Jd5ZU0lIUmSlKAL2rZg5EvLxJc,11761 -litellm/integrations/logfire_logger.py,sha256=JqxsohxGDBeSkmvA3qTDj_Q9Ha3shB-KH5nzE2m-Mnk,6164 -litellm/integrations/lunary.py,sha256=9yV4PlTNA2i4GL84N33aX71z718SFgqcu-o3mNBV1jY,5375 -litellm/integrations/mlflow.py,sha256=8c5vl7p-j6rFyLywNOE889PhhHse9_sfnr4EJi8-s-I,10719 -litellm/integrations/openmeter.py,sha256=vLH6_1cCLRKLvmAQMC0a62h56stdvtcfDcjxXitEBLI,4329 -litellm/integrations/opentelemetry.py,sha256=4WsCFHWoVIVC6olN_7IzXGg3-9qvkgkwAeOuP0ZWLGA,39218 -litellm/integrations/opik/__pycache__/opik.cpython-310.pyc,, -litellm/integrations/opik/__pycache__/utils.cpython-310.pyc,, -litellm/integrations/opik/opik.py,sha256=4nt-PSx8ylXBnkAzWP5T_Avbw1_ZecwOu6zlenmdF_Q,12606 -litellm/integrations/opik/utils.py,sha256=dk4kyk8SCJlkftNvgkSyQWpYj_SqhF6XxAwm-f6joRA,3314 -litellm/integrations/pagerduty/__pycache__/pagerduty.cpython-310.pyc,, -litellm/integrations/pagerduty/pagerduty.py,sha256=B61y6t1p0TNFQYr4hDfODlA7KzAx_-VT2IiIawA57pQ,11830 -litellm/integrations/prometheus.py,sha256=xGjM3uwbHwGMLH3yy6EsMzwFpocIPf9kD1DDHIAjaq0,73358 -litellm/integrations/prometheus_helpers/__pycache__/prometheus_api.cpython-310.pyc,, -litellm/integrations/prometheus_helpers/prometheus_api.py,sha256=8C3POSOnBbPIB0lOwcZtIV8WKVIlw_Coqfwe4A8XID4,4585 -litellm/integrations/prometheus_services.py,sha256=dgFAR1b9DEiczfuigzBTXTcV70e3RX_aihbpTxaHuUY,10974 -litellm/integrations/prompt_layer.py,sha256=BsWn3Y3tCsC5lOkQApS3HTA82yN0YLifatZi8PflH6o,3597 -litellm/integrations/prompt_management_base.py,sha256=NKaQ65UI3VO22-g16bI3waD26q3CSj24Ata1l8A6O2g,3956 -litellm/integrations/s3.py,sha256=spokdszh3VjHOTn75tmmWD3iAV_mT8N2YHR9QCX89xA,7442 -litellm/integrations/supabase.py,sha256=zo80T4fZPMAtxx24NTvq3jAhRdAvJOuVZ12hP5iWL1M,4325 -litellm/integrations/test_httpx.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -litellm/integrations/traceloop.py,sha256=xckhA4T0JHmvIUqDjaN92DDLalx9WuMRkAjm9JIlyjE,5862 -litellm/integrations/weights_biases.py,sha256=Lsufv_OAEGcjInC_ERuu4LEWbKxSpbVVFlOvIvLLLzQ,7832 -litellm/litellm_core_utils/README.md,sha256=b-mx4-xwl-cNsqEbYnscz7J8Uaid2sUeals3EIac7EA,629 -litellm/litellm_core_utils/__pycache__/asyncify.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/core_helpers.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/credential_accessor.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/dd_tracing.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/default_encoding.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/dot_notation_indexing.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/duration_parser.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/exception_mapping_utils.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/fallback_utils.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/get_litellm_params.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/get_llm_provider_logic.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/get_model_cost_map.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/get_supported_openai_params.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/health_check_utils.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/initialize_dynamic_callback_params.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/json_validation_rule.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/litellm_logging.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/llm_request_utils.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/logging_callback_manager.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/logging_utils.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/mock_functions.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/model_param_helper.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/realtime_streaming.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/redact_messages.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/response_header_helpers.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/rules.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/safe_json_dumps.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/sensitive_data_masker.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/streaming_chunk_builder_utils.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/streaming_handler.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/thread_pool_executor.cpython-310.pyc,, -litellm/litellm_core_utils/__pycache__/token_counter.cpython-310.pyc,, -litellm/litellm_core_utils/asyncify.py,sha256=5VZgongo61YQ6E_2lla_o7j0O9qhv5mxOsqQg8g1IQM,4001 -litellm/litellm_core_utils/audio_utils/__pycache__/utils.cpython-310.pyc,, -litellm/litellm_core_utils/audio_utils/audio_health_check.wav,sha256=a0MTxznJoHv2ypdRPFJ7XNv8-AQc8DeJd-8TKKz9ZsA,29184 -litellm/litellm_core_utils/audio_utils/utils.py,sha256=ToLKpi2j6qyYBZfVzoTVaQaV31Hx5ZkkeNY6tj9MEhM,997 -litellm/litellm_core_utils/core_helpers.py,sha256=Nvr-SuMdHbxvnnbG3F5jO7tQhjky2I_0eAW7yY0vi5k,4900 -litellm/litellm_core_utils/credential_accessor.py,sha256=IttjgpAVHJoguZKFm7AwCHWWBrGtqykt73hQmyzwBVM,1265 -litellm/litellm_core_utils/dd_tracing.py,sha256=rWk5omDj65Dhsw6L9lCNd7jYoJDpaShbQjNAvqxEPS4,1706 -litellm/litellm_core_utils/default_encoding.py,sha256=aSr2QhSlQDOkzYN-UMNhzc97KGnWQPEnycfCLDg6gRI,709 -litellm/litellm_core_utils/dot_notation_indexing.py,sha256=Mcde8nS_k7EUM1jB9X54RAtv5Z0f_Q71FuQfLlBfGck,1574 -litellm/litellm_core_utils/duration_parser.py,sha256=awfBjOoTfmlRWvMz_RQuO9XOLETtjeFtNyS3QYXr6CQ,2724 -litellm/litellm_core_utils/exception_mapping_utils.py,sha256=9A0tngsU1PaTkyyl9MTWwKbfZrBqAJIxOT57Py6Zqy4,117268 -litellm/litellm_core_utils/fallback_utils.py,sha256=sG8gdFpMlabEB6FZ1MUIrXKyF8EIieaFOBFJpubob94,2203 -litellm/litellm_core_utils/get_litellm_params.py,sha256=3T-pJJywmauzF4qoey4HrV3OSSBDUIm3XxwzZmwIUKo,4308 -litellm/litellm_core_utils/get_llm_provider_logic.py,sha256=hIyRT-WaHNBX4eT6FC6FBNKy346tL8Q6iZcq0T8fTz8,25781 -litellm/litellm_core_utils/get_model_cost_map.py,sha256=fSsE9EUL9v0SbHeYLLre7E0SfZVZVyaJ3H_USPmAmt0,1304 -litellm/litellm_core_utils/get_supported_openai_params.py,sha256=WQibSzrGYT_qJCxZNnjJiYDhrQ9jUlGt-q1ht-_1s6k,11815 -litellm/litellm_core_utils/health_check_utils.py,sha256=ACpzkZ9-LfiSbmajjV5l-4WN1nx1JtxnjDbToqsego0,924 -litellm/litellm_core_utils/initialize_dynamic_callback_params.py,sha256=RiXifi222QpiXI6pQN9D3tnNGrhqxU-tBE8VrT2HmM4,1224 -litellm/litellm_core_utils/json_validation_rule.py,sha256=rtDKG_1vyTUsDp2BCUN6mj7jf_EDtOnQYxAfXcKTuz0,790 -litellm/litellm_core_utils/litellm_logging.py,sha256=WrZLfM9nTVjigmfBsSrbA8ZP-nTOjXkHB6VN5trRLoY,167755 -litellm/litellm_core_utils/llm_cost_calc/__pycache__/tool_call_cost_tracking.cpython-310.pyc,, -litellm/litellm_core_utils/llm_cost_calc/__pycache__/utils.cpython-310.pyc,, -litellm/litellm_core_utils/llm_cost_calc/tool_call_cost_tracking.py,sha256=AiPOcNR6SBykQ21itDAEgWNAU-_XYCDfMdX7LPzihho,7032 -litellm/litellm_core_utils/llm_cost_calc/utils.py,sha256=IckTQjJsTUle-bN4cnykT_K5WYnUyxwJEQTPFoAmdM4,10960 -litellm/litellm_core_utils/llm_request_utils.py,sha256=DYowCEgT3u5qkC8BbofcxtTEZS1Yw1fGZw5nkgyN6Lk,2163 -litellm/litellm_core_utils/llm_response_utils/__pycache__/convert_dict_to_response.cpython-310.pyc,, -litellm/litellm_core_utils/llm_response_utils/__pycache__/get_api_base.cpython-310.pyc,, -litellm/litellm_core_utils/llm_response_utils/__pycache__/get_formatted_prompt.cpython-310.pyc,, -litellm/litellm_core_utils/llm_response_utils/__pycache__/get_headers.cpython-310.pyc,, -litellm/litellm_core_utils/llm_response_utils/__pycache__/response_metadata.cpython-310.pyc,, -litellm/litellm_core_utils/llm_response_utils/convert_dict_to_response.py,sha256=Hnfapp6ZEUc4t1B3AYVZNA1h3YPtKNLjf6Pykt_ct4c,27350 -litellm/litellm_core_utils/llm_response_utils/get_api_base.py,sha256=oY2z4rW4Qf52KUTVqlP7EvacPCxDTM0Ub7zsKlkGUrY,4297 -litellm/litellm_core_utils/llm_response_utils/get_formatted_prompt.py,sha256=MXCLiT9DFm0hxMTeNOreeOMeDA0l5dMXzyCMDULAWmA,1653 -litellm/litellm_core_utils/llm_response_utils/get_headers.py,sha256=gS6fqwEu2l0Av5bnVOpPaMBawhaJfkmdNrgGe8teBiM,1966 -litellm/litellm_core_utils/llm_response_utils/response_metadata.py,sha256=61hUjqa6Lspc5Vmw0S5_n17oOFkqaaMd8P4U1_Yp4jk,4618 -litellm/litellm_core_utils/logging_callback_manager.py,sha256=7VX67kKMTQLzxeK1SXvqaLk8OsGXUJrctTxCeiOV5-Q,9760 -litellm/litellm_core_utils/logging_utils.py,sha256=Qac-HTgrNt_1MvuCfHQ6Gsk0fWNQJB-CduYzRRyfjR0,5111 -litellm/litellm_core_utils/mock_functions.py,sha256=y4skEDSy3-c42aZERTVm_qw6dXRDXPlW16FaVsmX9xY,626 -litellm/litellm_core_utils/model_param_helper.py,sha256=rgxDoX7-lm3w9AOMjOhlpvs1_gd23dxiY45JovuUVHw,6074 -litellm/litellm_core_utils/prompt_templates/__pycache__/common_utils.cpython-310.pyc,, -litellm/litellm_core_utils/prompt_templates/__pycache__/factory.cpython-310.pyc,, -litellm/litellm_core_utils/prompt_templates/__pycache__/image_handling.cpython-310.pyc,, -litellm/litellm_core_utils/prompt_templates/common_utils.py,sha256=y3Z8Kv3g0N8OK-Q4aO4oOxhqH8qw4GnnZZlLdFSEEdo,17725 -litellm/litellm_core_utils/prompt_templates/factory.py,sha256=D76URPj3ZJc_bKNIjTDnbByrkmqBfD-Jq0zxWaZkWbY,147577 -litellm/litellm_core_utils/prompt_templates/image_handling.py,sha256=gy6R_4KuRMAJp__iDqeUSKUqhqyMhgjzr_T69ULn2X0,2458 -litellm/litellm_core_utils/realtime_streaming.py,sha256=hF4xeRj5ciMMNTChfr6RKNJ387DwwrGG-Lci7SvAerY,5531 -litellm/litellm_core_utils/redact_messages.py,sha256=iPqsHUrKZ8IqXrr2lOSYA-sevMihwyouaNHV2uu7cHc,5907 -litellm/litellm_core_utils/response_header_helpers.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -litellm/litellm_core_utils/rules.py,sha256=LQFmbsIjwVNUcdd4SfMOwc0x7Y6dIgxYVsDdaBS3fT4,2055 -litellm/litellm_core_utils/safe_json_dumps.py,sha256=3ghybDa_bs2DJa89B9kVtadgvwB28QAWGbLCX7YCpAE,1922 -litellm/litellm_core_utils/sensitive_data_masker.py,sha256=daNMQQyacnTw57iQDpdlgnRllNQULbAyHo-570KNM7s,2625 -litellm/litellm_core_utils/specialty_caches/__pycache__/dynamic_logging_cache.cpython-310.pyc,, -litellm/litellm_core_utils/specialty_caches/dynamic_logging_cache.py,sha256=uPw0geVp4pxE5UgU_2IqSQVadw1sffsWPmljQm_v-OU,1120 -litellm/litellm_core_utils/streaming_chunk_builder_utils.py,sha256=suBRci5P53Emwed45HU8gNQWPPuqcDvcaLZLTgf24O8,17880 -litellm/litellm_core_utils/streaming_handler.py,sha256=s6zJoXxXkmwpbU4i-N8Af-Tj3rwTdsTDSi8qx9aei2U,82261 -litellm/litellm_core_utils/thread_pool_executor.py,sha256=cbp9njlImGgO9XsON-jhX6o1DFJLJ5aNcjbz1XaTYkk,154 -litellm/litellm_core_utils/token_counter.py,sha256=rnNsP-3qngkNO37My2f7B97FjDUDHWXW8R_D_ph2nUk,10011 -litellm/litellm_core_utils/tokenizers/9b5ad71b2ce5302211f9c61530b329a4922fc6a4,sha256=Ijkht27pm96ZW3_3OFE-7xAPtR0YyTWXoRO8_-hlsqc,1681126 -litellm/litellm_core_utils/tokenizers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -litellm/litellm_core_utils/tokenizers/__pycache__/__init__.cpython-310.pyc,, -litellm/litellm_core_utils/tokenizers/anthropic_tokenizer.json,sha256=wkFzffJLTn98mvT9zuKaDKkD3LKIqLdTvDRqMJKRF2c,1774213 -litellm/litellm_core_utils/tokenizers/ec7223a39ce59f226a68acc30dc1af2788490e15,sha256=lLXKff9NAHZ7wlb90bJ-Wxc2HXuKX5aFR_nyPrcNIGk,836186 -litellm/litellm_core_utils/tokenizers/fb374d419588a4632f3f557e76b4b70aebbca790,sha256=RGqVOMtsNI41FhINfAiwn1fDZJXirP_-WaW_iwz7Gi0,3613922 -litellm/llms/README.md,sha256=x2anx-Tu0i6IWe5LBXshaGGeGXNLScIEl4dQybJ35a4,453 -litellm/llms/__init__.py,sha256=Il5Q9ATdX8yXqVxtP_nYqUhExzxPC_qk_WXQ_4h0exg,16 -litellm/llms/__pycache__/__init__.cpython-310.pyc,, -litellm/llms/__pycache__/base.cpython-310.pyc,, -litellm/llms/__pycache__/baseten.cpython-310.pyc,, -litellm/llms/__pycache__/custom_llm.cpython-310.pyc,, -litellm/llms/__pycache__/maritalk.cpython-310.pyc,, -litellm/llms/__pycache__/ollama_chat.cpython-310.pyc,, -litellm/llms/__pycache__/volcengine.cpython-310.pyc,, -litellm/llms/ai21/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/ai21/chat/transformation.py,sha256=A6SMbp06N-El32NrhjS9dM0o5R4VtC4Yc0xv7NPRlKI,1913 -litellm/llms/aiohttp_openai/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/aiohttp_openai/chat/transformation.py,sha256=py-4q9sAOE3r7XO-a5w9048xFbEuo5hQlEvA3qniGU8,2635 -litellm/llms/anthropic/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/anthropic/__pycache__/cost_calculation.cpython-310.pyc,, -litellm/llms/anthropic/chat/__init__.py,sha256=p3BuzPEGkpYEHdTEg20fNa45yKOsvjvjMY7VtwumOB8,68 -litellm/llms/anthropic/chat/__pycache__/__init__.cpython-310.pyc,, -litellm/llms/anthropic/chat/__pycache__/handler.cpython-310.pyc,, -litellm/llms/anthropic/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/anthropic/chat/handler.py,sha256=-iyTzJ92M_en2T8XqiNTC6RQySHh06y1an3D64klJow,30851 -litellm/llms/anthropic/chat/transformation.py,sha256=Rv2qP1WJOasfQlRqnYVpgm-HGBV7K-DmphndIOF0pHU,32299 -litellm/llms/anthropic/common_utils.py,sha256=LOKOLsDZi5MZnA7qWh3rl3bqApNbPqoHZmcUg812w0g,7992 -litellm/llms/anthropic/completion/__pycache__/handler.cpython-310.pyc,, -litellm/llms/anthropic/completion/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/anthropic/completion/handler.py,sha256=Bf6BzJOujAbLmCFQI6M0TnVdDJq2_fEd77KUSz_rp_E,151 -litellm/llms/anthropic/completion/transformation.py,sha256=g746Zl386wa3oxXH1-bHXMWpqRn5QT1cF8cML3kse3w,10736 -litellm/llms/anthropic/cost_calculation.py,sha256=SDAFR6AHDmNpz_H4SkDpLU9yvJvi1hV7rBJosWaw3bA,763 -litellm/llms/anthropic/experimental_pass_through/messages/__pycache__/handler.cpython-310.pyc,, -litellm/llms/anthropic/experimental_pass_through/messages/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/anthropic/experimental_pass_through/messages/handler.py,sha256=VsWObhBX5E3sfGwDlIdvEmZoD4TM8YD_6ECyTFu77Lk,6530 -litellm/llms/anthropic/experimental_pass_through/messages/transformation.py,sha256=6wz2jQ7buPhESaBhorxwYLJzymyXfAwNO-bA_-H-N6s,1468 -litellm/llms/azure/__pycache__/assistants.cpython-310.pyc,, -litellm/llms/azure/__pycache__/audio_transcriptions.cpython-310.pyc,, -litellm/llms/azure/__pycache__/azure.cpython-310.pyc,, -litellm/llms/azure/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/azure/__pycache__/cost_calculation.cpython-310.pyc,, -litellm/llms/azure/assistants.py,sha256=fZ9e_PI_TsE5nq8eeUnIBKYUXiRS29-X1i-4FQea9ek,33245 -litellm/llms/azure/audio_transcriptions.py,sha256=V5o9_pBvFwCr1PuxEGCFFF58kFLUifNYpeY2AC5uNyE,7315 -litellm/llms/azure/azure.py,sha256=Xsj0Osf3jPJa_FqxhmBHPcqI-lswEE5MHV1s3OZoPAs,50193 -litellm/llms/azure/batches/__pycache__/handler.cpython-310.pyc,, -litellm/llms/azure/batches/handler.py,sha256=y8iDfFex_JVIIeqWQSgfroX3BHtdLsfMvJMsNWqiZKQ,7257 -litellm/llms/azure/chat/__pycache__/gpt_transformation.cpython-310.pyc,, -litellm/llms/azure/chat/__pycache__/o_series_handler.cpython-310.pyc,, -litellm/llms/azure/chat/__pycache__/o_series_transformation.cpython-310.pyc,, -litellm/llms/azure/chat/gpt_transformation.py,sha256=_5RJevEUJP7CL08QQ1Ndz1jtW4MIPefyW12W1RQd15o,12297 -litellm/llms/azure/chat/o_series_handler.py,sha256=uEDInGLLlw0LXCFWiOyrKAIP09R-Sknj0F8ygwYR2ZU,2358 -litellm/llms/azure/chat/o_series_transformation.py,sha256=DEMZFbRzQM9kqsDaCgdjnGkn_RrzYFaCy8Y4ijPwZk8,3216 -litellm/llms/azure/common_utils.py,sha256=zhwwrCdkI1Zm0F6b9aHMRTbegIc-NPToX0OxTooXLjI,15846 -litellm/llms/azure/completion/__pycache__/handler.cpython-310.pyc,, -litellm/llms/azure/completion/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/azure/completion/handler.py,sha256=7tzupn7-yNzYNriWnfXpZ3giqvD9iuV_3VCwRoh-0E8,14246 -litellm/llms/azure/completion/transformation.py,sha256=sqflnFxPxJyqCOAcnApocEUd1HQyPAL-0a_An864hO4,2501 -litellm/llms/azure/cost_calculation.py,sha256=L0YNJ_YoiCGsDQXUgalSDYHyMcBnTH7-SAWPVUO1WVw,2345 -litellm/llms/azure/files/__pycache__/handler.cpython-310.pyc,, -litellm/llms/azure/files/handler.py,sha256=JtLUlgGhCzgQuKjFCqTXQ46MrkEJqtzdfBl6hll2IGY,10238 -litellm/llms/azure/fine_tuning/__pycache__/handler.cpython-310.pyc,, -litellm/llms/azure/fine_tuning/handler.py,sha256=1LN1WpXWEdq7IYTy-pwJRLrmCpeGST5fSyovHrmgs68,1384 -litellm/llms/azure/realtime/__pycache__/handler.cpython-310.pyc,, -litellm/llms/azure/realtime/handler.py,sha256=NveCPj6FrHi4fN6mjd2DfENTf-hq7hEMfWZo8KagELk,2583 -litellm/llms/azure/responses/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/azure/responses/transformation.py,sha256=fJ2ohm6rkIZ7VKKqgsWHz9RjQdSzz_B4GjzPsxcWyQQ,4792 -litellm/llms/azure_ai/README.md,sha256=BpCiNpixdtsvcCxvj1IKEsZDYweh2gQMucXXy1FwHTE,49 -litellm/llms/azure_ai/chat/__pycache__/handler.cpython-310.pyc,, -litellm/llms/azure_ai/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/azure_ai/chat/handler.py,sha256=mxrppFXYhGzKvNdyU5k0fScX5DLVWKls_bHfVM_imyY,47 -litellm/llms/azure_ai/chat/transformation.py,sha256=lWoHO4cAK7f7O2Pi3eDBR3RCXeUpzAiQvY4VYHsEpnc,11642 -litellm/llms/azure_ai/embed/__init__.py,sha256=xmXUrnf9zhaSALBJczyupQbNFrrRM7Y9JeXd53obHrk,38 -litellm/llms/azure_ai/embed/__pycache__/__init__.cpython-310.pyc,, -litellm/llms/azure_ai/embed/__pycache__/cohere_transformation.cpython-310.pyc,, -litellm/llms/azure_ai/embed/__pycache__/handler.cpython-310.pyc,, -litellm/llms/azure_ai/embed/cohere_transformation.py,sha256=Gxa0IkES0LrdqPpJqdhqN_iRQiU0NLtTU1EWi9EufOI,3620 -litellm/llms/azure_ai/embed/handler.py,sha256=Pv8_Mns00gvxOCwf9VsfUZ0uKf1EvriSZswKGCd5yC8,10061 -litellm/llms/azure_ai/rerank/__pycache__/handler.cpython-310.pyc,, -litellm/llms/azure_ai/rerank/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/azure_ai/rerank/handler.py,sha256=gQUHLh4Dt4C6-tiSBmlkCDbB9-WlpTXns3P4mqQZ8s4,143 -litellm/llms/azure_ai/rerank/transformation.py,sha256=trEh1LsCc0wcw21U13ziLvAbFohV9OnzdsvVuk0l3QU,3209 -litellm/llms/base.py,sha256=fQhsTEN9aoYHNkw2ujRG4p_NU2q1IS45zz6xgdE-cDI,2682 -litellm/llms/base_llm/__pycache__/base_model_iterator.cpython-310.pyc,, -litellm/llms/base_llm/__pycache__/base_utils.cpython-310.pyc,, -litellm/llms/base_llm/anthropic_messages/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/base_llm/anthropic_messages/transformation.py,sha256=6U-AprWnWcsdXmGXSYF7zXzGw0G8524UtSPgkKjcQrY,860 -litellm/llms/base_llm/audio_transcription/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/base_llm/audio_transcription/transformation.py,sha256=52ioxG5kDCBhj2hPayBILLSsQtTCpmWcb2-wKD2LRq0,2461 -litellm/llms/base_llm/base_model_iterator.py,sha256=g3PWtsI_dOhQIe3bfK-bjuL8GvXOQv1f_1pQz99Hm24,6539 -litellm/llms/base_llm/base_utils.py,sha256=79UlsLXWZFIIbR-cnNqIcGp0Xby_FkA7qr2sp0BuORs,6335 -litellm/llms/base_llm/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/base_llm/chat/transformation.py,sha256=49lm-XFDVoNaDSqRCjEfEpTsDCBR6xyfNTMhY-DwkJA,12402 -litellm/llms/base_llm/completion/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/base_llm/completion/transformation.py,sha256=WHykEcTcclVg8lpXJE-Cq-mZ9TPNZAUhjfdAVVv4SgE,2179 -litellm/llms/base_llm/embedding/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/base_llm/embedding/transformation.py,sha256=1h8WwqLfZ6bypgqnkE-g6xytsn3Gk1hlNNRoJEUV1a0,2469 -litellm/llms/base_llm/files/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/base_llm/files/transformation.py,sha256=B3pCKZRDWSx_K_iBC5KqNxxkKO1r8i_JWCW_WyuFhYw,2740 -litellm/llms/base_llm/image_variations/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/base_llm/image_variations/transformation.py,sha256=bjBk10Ed9bhL28AJcBj7uwmfRXnFfwjPRMB3iQCJyJ0,3601 -litellm/llms/base_llm/rerank/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/base_llm/rerank/transformation.py,sha256=QgvA7ndy0kkqJM2K_QmwkCI2QnmvFRs1BVi1X7sBwBM,3786 -litellm/llms/base_llm/responses/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/base_llm/responses/transformation.py,sha256=Vjzp0SsdOD0Bas5EoFSnu02AYMMJof5TD82vFeW1-Sc,4459 -litellm/llms/baseten.py,sha256=Cwrb4-kqjVqKMdJceziNd3iCFs6MqRw6fbqEHJb7L3s,6054 -litellm/llms/bedrock/__pycache__/base_aws_llm.cpython-310.pyc,, -litellm/llms/bedrock/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/bedrock/base_aws_llm.py,sha256=Kjqws9A9XJH9eQuJHAlDzy_E1yM73XVFN7pZFuYXzyI,23466 -litellm/llms/bedrock/chat/__init__.py,sha256=aUXWoW08uo_D9X2_cgyoSbQjLl5--Hn6sqB3Ag70drk,88 -litellm/llms/bedrock/chat/__pycache__/__init__.cpython-310.pyc,, -litellm/llms/bedrock/chat/__pycache__/converse_handler.cpython-310.pyc,, -litellm/llms/bedrock/chat/__pycache__/converse_transformation.cpython-310.pyc,, -litellm/llms/bedrock/chat/__pycache__/invoke_handler.cpython-310.pyc,, -litellm/llms/bedrock/chat/converse_handler.py,sha256=zP3Vc6CLPPd814rCvMRVMWf4bv_JotvQwWXIrjmIg38,16202 -litellm/llms/bedrock/chat/converse_like/__pycache__/handler.cpython-310.pyc,, -litellm/llms/bedrock/chat/converse_like/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/bedrock/chat/converse_like/handler.py,sha256=mblVD0ugiiAIgDBGM43XjjWddPAp4M1FFsvlhf0BP7A,137 -litellm/llms/bedrock/chat/converse_like/transformation.py,sha256=n-hBfAFHQRWUJWzmCVfhIdCtg6TFyMwNdR6PnwSxrHY,112 -litellm/llms/bedrock/chat/converse_transformation.py,sha256=0xKRjOfnLtjJtMbkyvjbBEKLDas1-GsxR5IM26D45HM,33075 -litellm/llms/bedrock/chat/invoke_handler.py,sha256=ciVu3CwGXzSbNTQ7wNFvy-MA34Gr9qfWl9oJHnowUBM,67187 -litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_ai21_transformation.cpython-310.pyc,, -litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_cohere_transformation.cpython-310.pyc,, -litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_deepseek_transformation.cpython-310.pyc,, -litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_llama_transformation.cpython-310.pyc,, -litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_mistral_transformation.cpython-310.pyc,, -litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_nova_transformation.cpython-310.pyc,, -litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_titan_transformation.cpython-310.pyc,, -litellm/llms/bedrock/chat/invoke_transformations/__pycache__/anthropic_claude2_transformation.cpython-310.pyc,, -litellm/llms/bedrock/chat/invoke_transformations/__pycache__/anthropic_claude3_transformation.cpython-310.pyc,, -litellm/llms/bedrock/chat/invoke_transformations/__pycache__/base_invoke_transformation.cpython-310.pyc,, -litellm/llms/bedrock/chat/invoke_transformations/amazon_ai21_transformation.py,sha256=3n3_I9KkHHkGYQji9UENbIX8LJbIkzMSUunE78XwC6E,3509 -litellm/llms/bedrock/chat/invoke_transformations/amazon_cohere_transformation.py,sha256=k6gmSncpnzHsUwjcsHNph8q35LmtO8cuYgJYDAK-FLw,2215 -litellm/llms/bedrock/chat/invoke_transformations/amazon_deepseek_transformation.py,sha256=QHz_lvIbftaAKfvMcnLoI7K-45Xttls4NEs2izQclY4,4959 -litellm/llms/bedrock/chat/invoke_transformations/amazon_llama_transformation.py,sha256=IcKMFKZ2yES7Jin1XFjaXtrpK03KzIR9DqpaQ1etH70,2383 -litellm/llms/bedrock/chat/invoke_transformations/amazon_mistral_transformation.py,sha256=k-iZdKOmAROx6O3ocWsGmYcjaMCvsvm8P736jo9KYMM,2692 -litellm/llms/bedrock/chat/invoke_transformations/amazon_nova_transformation.py,sha256=_2KnlIfeLY9g8_VqKvu9hfntMmvAwkRW6lu5PTDECEc,3847 -litellm/llms/bedrock/chat/invoke_transformations/amazon_titan_transformation.py,sha256=Oa7ImD0QFvegOFiZbMkNJRU-E5eyRtn1Ag4uNHscrKk,3715 -litellm/llms/bedrock/chat/invoke_transformations/anthropic_claude2_transformation.py,sha256=zriroWSlXJFOdEa1u53kuXgzXT58avVRGIYsKKNjexE,2884 -litellm/llms/bedrock/chat/invoke_transformations/anthropic_claude3_transformation.py,sha256=cMTMEk6jHO8_5Is6UYWvOw2vjXShdlIcBJ2bARdu8bg,3087 -litellm/llms/bedrock/chat/invoke_transformations/base_invoke_transformation.py,sha256=8pO-0FE7pBwRn3bRTb5z-KM1YXfrMeiOvbzdwCLsm8Y,26269 -litellm/llms/bedrock/common_utils.py,sha256=958y1TbafS6CuoLeaoye5AkF-1N8y4KfSG7_hLi_88E,14172 -litellm/llms/bedrock/embed/__pycache__/amazon_titan_g1_transformation.cpython-310.pyc,, -litellm/llms/bedrock/embed/__pycache__/amazon_titan_multimodal_transformation.cpython-310.pyc,, -litellm/llms/bedrock/embed/__pycache__/amazon_titan_v2_transformation.cpython-310.pyc,, -litellm/llms/bedrock/embed/__pycache__/cohere_transformation.cpython-310.pyc,, -litellm/llms/bedrock/embed/__pycache__/embedding.cpython-310.pyc,, -litellm/llms/bedrock/embed/amazon_titan_g1_transformation.py,sha256=SCEkAW_ES8hj1-Q1caf3rkdFa1F-gd7Msxi1VtulJxY,2649 -litellm/llms/bedrock/embed/amazon_titan_multimodal_transformation.py,sha256=QtgPfSQsjrF-ZWxa7OMKm_2DaScrMJ6ilEoa0ryf9rU,2877 -litellm/llms/bedrock/embed/amazon_titan_v2_transformation.py,sha256=AEDVYQKr4_oTxfAJe1sDP6TWhelgwTBvdRX0U9RtUK0,3233 -litellm/llms/bedrock/embed/cohere_transformation.py,sha256=5gw1AYxVtAH2efSceKsU_wlhiueSZ8SgvrAH6cUBZuI,1468 -litellm/llms/bedrock/embed/embedding.py,sha256=gKNi8aJfvooH7DnPW5lc_OEvvv6OcVooULw_LOH2PO8,18309 -litellm/llms/bedrock/image/__pycache__/amazon_nova_canvas_transformation.cpython-310.pyc,, -litellm/llms/bedrock/image/__pycache__/amazon_stability1_transformation.cpython-310.pyc,, -litellm/llms/bedrock/image/__pycache__/amazon_stability3_transformation.cpython-310.pyc,, -litellm/llms/bedrock/image/__pycache__/cost_calculator.cpython-310.pyc,, -litellm/llms/bedrock/image/__pycache__/image_handler.cpython-310.pyc,, -litellm/llms/bedrock/image/amazon_nova_canvas_transformation.py,sha256=qGMxPrd0JVDUpQ-qrUDEAPJn1rczWb6DYx2mva6OOoE,6441 -litellm/llms/bedrock/image/amazon_stability1_transformation.py,sha256=dVVShM509R5U4WJsNdTwGBBk6FaUM0Cwm5IgmPfP_CI,3824 -litellm/llms/bedrock/image/amazon_stability3_transformation.py,sha256=QEk7Obz7DeY17XmjVAB5RiP2fIBhyBF3HkSWmsDchDc,3038 -litellm/llms/bedrock/image/cost_calculator.py,sha256=3mW2QLRdhH_LyoaxCrUJU-fzAQKbhgmtTFC6qElNjtg,1313 -litellm/llms/bedrock/image/image_handler.py,sha256=0V2t9SW3j-rA6U1gtDjFAnOP7iFXyMQhqIdj2V8LiG8,11485 -litellm/llms/bedrock/rerank/__pycache__/handler.cpython-310.pyc,, -litellm/llms/bedrock/rerank/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/bedrock/rerank/handler.py,sha256=3CrbkLD-888FV5Er6y2nKHY03_VZ29DMJoQ6KsVXyOQ,6162 -litellm/llms/bedrock/rerank/transformation.py,sha256=1C8xxlqAGG6PslTxgiNk2tkSYE93gnf7GAxjXC9tctc,4083 -litellm/llms/cerebras/__pycache__/chat.cpython-310.pyc,, -litellm/llms/cerebras/chat.py,sha256=fIStTfCazOzXAkBTGi0oBZLJ1ErhQ_Iylh2jjgNKUH4,2343 -litellm/llms/clarifai/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/clarifai/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/clarifai/chat/transformation.py,sha256=iBswCEielET2MahpQMYK0ORuNTXIYBshLGW5ZVKEikw,8235 -litellm/llms/clarifai/common_utils.py,sha256=DTlbfWCV42r9EddhDTfJvEvo81FmYOB9-V8jSV_SL4A,235 -litellm/llms/cloudflare/chat/__pycache__/handler.cpython-310.pyc,, -litellm/llms/cloudflare/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/cloudflare/chat/handler.py,sha256=2FjIbC2-XtjGXlK-9PBBpV4BbB-OFGIrlq0tu_R8wf4,138 -litellm/llms/cloudflare/chat/transformation.py,sha256=QDBjXHvdJb935agKt6HyuOqrW3iuUsrAy1fmnv-2Y88,6893 -litellm/llms/codestral/completion/__pycache__/handler.cpython-310.pyc,, -litellm/llms/codestral/completion/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/codestral/completion/handler.py,sha256=6OjfTbeJZmyqkr-CNF3cb3i1XxDo7EjpY4aDXtPbq0o,13922 -litellm/llms/codestral/completion/transformation.py,sha256=BRKgcytyRdNv9UPyvmI38TGQ_U53G4jEqsdSE07kNeU,3938 -litellm/llms/cohere/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/cohere/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/cohere/chat/__pycache__/v2_transformation.cpython-310.pyc,, -litellm/llms/cohere/chat/transformation.py,sha256=y3BHsCmYj6LBwWC_S1TOjVYBMyzNhY5f0rcbyEHBSpw,14628 -litellm/llms/cohere/chat/v2_transformation.py,sha256=Pkl7s95rXVy8ICbY46aHz7T6IMI_-wJajpyrWIu72UU,14032 -litellm/llms/cohere/common_utils.py,sha256=jXZVQebKLRqoSzz4sbHfpg2q1dCOGKub8thunDWlRMk,4748 -litellm/llms/cohere/completion/__pycache__/handler.cpython-310.pyc,, -litellm/llms/cohere/completion/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/cohere/completion/handler.py,sha256=Jyypoaooxe1QzKNgx5pXJH0BCM1qnaYacwC0zl0b_BM,148 -litellm/llms/cohere/completion/transformation.py,sha256=moKeMcYaEHbry-TI7P14DUlg0iI2zigqFV8YQG71EBw,9884 -litellm/llms/cohere/embed/__pycache__/handler.cpython-310.pyc,, -litellm/llms/cohere/embed/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/cohere/embed/handler.py,sha256=WraDsGJhma9RHmVN8xJvljNqNCRDDQBVD0_pFD4bN1w,5079 -litellm/llms/cohere/embed/transformation.py,sha256=RJTAKCq32JB3iEWkblfqJzp5xnE9sswY_GazcZR7hwI,4660 -litellm/llms/cohere/rerank/__pycache__/handler.cpython-310.pyc,, -litellm/llms/cohere/rerank/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/cohere/rerank/handler.py,sha256=4h3LHYuSQ5iwlCuu6HXU5Vf52RHL9CiRjJnkCCZyRjg,141 -litellm/llms/cohere/rerank/transformation.py,sha256=ZhyUsHdRKUMprlN9T7sSn4T8a2voysI6-vYWQwBnjEg,5211 -litellm/llms/cohere/rerank_v2/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/cohere/rerank_v2/transformation.py,sha256=bAot45X1A3DGFXlKnmhOkaHZfUfoXs-cCafObHqBAyo,2876 -litellm/llms/custom_httpx/__pycache__/aiohttp_handler.cpython-310.pyc,, -litellm/llms/custom_httpx/__pycache__/http_handler.cpython-310.pyc,, -litellm/llms/custom_httpx/__pycache__/httpx_handler.cpython-310.pyc,, -litellm/llms/custom_httpx/__pycache__/llm_http_handler.cpython-310.pyc,, -litellm/llms/custom_httpx/aiohttp_handler.py,sha256=cnNoGsKERZ0nSTe9ZDU2RfH6KconFAoIQiGAFw-b8ZY,20310 -litellm/llms/custom_httpx/http_handler.py,sha256=ptCyzYfkx5IC2ddmaEFZ0uZCLPm2ESSC-YQWBkJdrYQ,27925 -litellm/llms/custom_httpx/httpx_handler.py,sha256=Cop6E2edYCSGptRIdx4Y48Tkt38bbnNTcWuysKHlQz4,1296 -litellm/llms/custom_httpx/llm_http_handler.py,sha256=V1GIdi_UdopGSbpvgPSpNvsx7BdVVg4yqCT2KaEf2_U,58514 -litellm/llms/custom_llm.py,sha256=WLrXPbrmcs8hl1y5-RLthO3yNmijGwUYZqL4U6OxgpA,4923 -litellm/llms/databricks/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/databricks/__pycache__/cost_calculator.cpython-310.pyc,, -litellm/llms/databricks/__pycache__/streaming_utils.cpython-310.pyc,, -litellm/llms/databricks/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/databricks/chat/transformation.py,sha256=uv3QTXtWUs68abk9aLy0bg0d29MaPLQMGmj1aHoRA1w,20567 -litellm/llms/databricks/common_utils.py,sha256=F9EkB96lIMpxLagRLGwgu6UHPGqZAeqbWDqYoBvNuTM,4270 -litellm/llms/databricks/cost_calculator.py,sha256=YpzCFgAf0UyTJPIG_nkLMzkMC1VXC9fbsPU5J0C4bms,2418 -litellm/llms/databricks/embed/__pycache__/handler.cpython-310.pyc,, -litellm/llms/databricks/embed/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/databricks/embed/handler.py,sha256=lfb_OFvmY9EO0SXuR3XI6GJiHbhb8ZONwHPxqwgFzPM,1437 -litellm/llms/databricks/embed/transformation.py,sha256=HRf1ixwYD3vVVecfTl55DOoqkizPxw32v1mcx21VyEA,1464 -litellm/llms/databricks/streaming_utils.py,sha256=K3okW4cjTVfTfAWb92ILInpo-ZTpru3BrQ-2i-CkzB4,6228 -litellm/llms/deepgram/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/deepgram/audio_transcription/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/deepgram/audio_transcription/transformation.py,sha256=UW4fqvLMukSTMa8e2T-NPw2iruqNJQrv2EBE-Xwcqhs,6107 -litellm/llms/deepgram/common_utils.py,sha256=BW32Pllv5QIydRNaqgy4VcMbceyjsQEzc_bvGQ5OSPs,125 -litellm/llms/deepinfra/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/deepinfra/chat/transformation.py,sha256=BxAivmUA9T_qzuUj97FdX3uyG4gc65NyxKRFTYhx_aU,4574 -litellm/llms/deepseek/__pycache__/cost_calculator.cpython-310.pyc,, -litellm/llms/deepseek/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/deepseek/chat/transformation.py,sha256=OjQEPAYFxA9SWhqXdrH4nY8-2e49hRgX2XGE-JqZAnc,1847 -litellm/llms/deepseek/cost_calculator.py,sha256=G5UbaPLQ7wKBmFxd73yTvDwzs_3UsMdYvsUQeO6HnrM,587 -litellm/llms/deprecated_providers/__pycache__/aleph_alpha.cpython-310.pyc,, -litellm/llms/deprecated_providers/__pycache__/palm.cpython-310.pyc,, -litellm/llms/deprecated_providers/aleph_alpha.py,sha256=eMVFefcntg8gYdG3ZSa4JJ6SKFAZEqxg1oKM5Y65RSk,12725 -litellm/llms/deprecated_providers/palm.py,sha256=M8svKiK2X4f4XHBQ5CfNeRQJFe_jZp-fQvySxVPj5Sg,6898 -litellm/llms/empower/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/empower/chat/transformation.py,sha256=6OU1pbPxSgUPi5nnwT7kqsQxFvpmSPXB_zMYBRtXRQA,218 -litellm/llms/fireworks_ai/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/fireworks_ai/__pycache__/cost_calculator.cpython-310.pyc,, -litellm/llms/fireworks_ai/audio_transcription/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/fireworks_ai/audio_transcription/transformation.py,sha256=XHgTNDpMk7Y5dn37Nf2zjQUCO75ZE0jwuuJ0SD_ldM8,563 -litellm/llms/fireworks_ai/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/fireworks_ai/chat/transformation.py,sha256=QhOvm-MH_UFRuMKrSemCu2kpRB_lQkVJykHWkAzEmfY,14261 -litellm/llms/fireworks_ai/common_utils.py,sha256=4XZ-T7kbnb6zYVVtDMslFRSIlXNGwuXDYogBE-7rpT4,1536 -litellm/llms/fireworks_ai/completion/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/fireworks_ai/completion/transformation.py,sha256=NjT7Ix95Sd8xTqZRCA3hbuIDEITjhDCXNNlZKdy54RE,1873 -litellm/llms/fireworks_ai/cost_calculator.py,sha256=zhIcZnjT5YrBStmmqMg83Q7MMNjEqUIcmfY-fqcmw2E,2736 -litellm/llms/fireworks_ai/embed/__pycache__/fireworks_ai_transformation.cpython-310.pyc,, -litellm/llms/fireworks_ai/embed/fireworks_ai_transformation.py,sha256=6OUlynAaBy8esuYBidFiTUoaNUO80aHjiFebTrTj7RI,1435 -litellm/llms/friendliai/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/friendliai/chat/transformation.py,sha256=T6wkm9hjUHrgriAFen5dYPKZaBiQnXOXQA_VlKo8bY8,217 -litellm/llms/galadriel/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/galadriel/chat/transformation.py,sha256=9lvISZw10MtuT24KENxn_kz5NIGwJ8GW8dK4FHdZaT0,215 -litellm/llms/gemini/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/gemini/__pycache__/cost_calculator.cpython-310.pyc,, -litellm/llms/gemini/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/gemini/chat/transformation.py,sha256=jWMbLZ4IBw8JEXspc9EP9Ta6m_px1k9b2H83v1J4Q8w,6162 -litellm/llms/gemini/common_utils.py,sha256=sxrAAi316oXOkF_ifFde49NRZfy6gGeU2Cx2_hURRuU,2777 -litellm/llms/gemini/context_caching/README.md,sha256=WwbxrsX-ykf1cWnXG_KLIP25hH2k5Pqz34AOlIjjev4,79 -litellm/llms/gemini/cost_calculator.py,sha256=k3Bb7WpFVii1jmfRjcudvhkeyhkPHbgad1niCUYUgfI,612 -litellm/llms/gemini/files/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/gemini/files/transformation.py,sha256=Kbr4OmInZOFUTLErzZ4_c1Q7OG7nK8-riLQFy4775uM,5430 -litellm/llms/github/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/github/chat/transformation.py,sha256=XUbXYUEuku9bA_gJr4rAuFh0Gm1NfxQhZcEoLnhdrLY,209 -litellm/llms/groq/chat/__pycache__/handler.cpython-310.pyc,, -litellm/llms/groq/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/groq/chat/handler.py,sha256=gDy2fUHk98NbeoNyuulC3Zi5cgGrzg0esHWleNWVDvM,2485 -litellm/llms/groq/chat/transformation.py,sha256=BzZ-44yC18DQ20DtY-BQwlhbefT_2gF0OZuQa-rPqJM,6645 -litellm/llms/groq/stt/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/groq/stt/transformation.py,sha256=5Wmi6gQ-7nAC8gj5Gi0zCzHkTecOWVIbxX6plYaRUtk,3350 -litellm/llms/hosted_vllm/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/hosted_vllm/chat/transformation.py,sha256=yhfYNYxXkoqAA1h1Rizlo35e02b8E7bmQ2NgsVuJNDw,4686 -litellm/llms/hosted_vllm/embedding/README.md,sha256=7GMIybyYxTTaBu8aYHmGYNvNX2Nyvt5173dY4QoYeHw,226 -litellm/llms/huggingface/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/huggingface/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/huggingface/chat/transformation.py,sha256=FxewlQZT4eCfKIhPzU9np3XJuiZDCIUS4DVMy0iwx_s,5065 -litellm/llms/huggingface/common_utils.py,sha256=C8K-IkEGaVhdjSr6WcAIAIRHgKBgiMIPL__PglqVLh8,3071 -litellm/llms/huggingface/embedding/__pycache__/handler.cpython-310.pyc,, -litellm/llms/huggingface/embedding/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/huggingface/embedding/handler.py,sha256=L52Fl7cJN8CV-18KNL8i0qBlMnlxat_PGp0T6zBZS6Q,13761 -litellm/llms/huggingface/embedding/transformation.py,sha256=ZvsyGtlQUEq-5_nxJeIHPwJaKT4No9FZuhoOkdL9yKg,23746 -litellm/llms/huggingface/huggingface_llms_metadata/hf_conversational_models.txt,sha256=-KennA-85KE2N-dTyR2TG4v30NvWc6IAE6zCIEngjZQ,76183 -litellm/llms/huggingface/huggingface_llms_metadata/hf_text_generation_models.txt,sha256=7ntr_Gx6l8TQXpbWFycf-NnI3HdqagxvN2usENNEkHU,1288308 -litellm/llms/infinity/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/infinity/common_utils.py,sha256=0-6GNg2yPtSV8UYxaxrW3xcEOyTeAmdgUPFYk2Za-jo,835 -litellm/llms/infinity/embedding/__pycache__/handler.cpython-310.pyc,, -litellm/llms/infinity/embedding/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/infinity/embedding/handler.py,sha256=JDwB0TAqwCKLraKzQ865ZQuRZJDojAQqwdCHkTrZ0H0,146 -litellm/llms/infinity/embedding/transformation.py,sha256=85ObpHaoTtQUoKX0IcktsQw78wRmno5yaRCNbusQ7IM,4648 -litellm/llms/infinity/rerank/__pycache__/handler.cpython-310.pyc,, -litellm/llms/infinity/rerank/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/infinity/rerank/handler.py,sha256=dCXb7WA6esPZhOkE-Foah9oNVHLxH_RWdbHAhiRqlr0,143 -litellm/llms/infinity/rerank/transformation.py,sha256=uY26_o77Y9cKb4Yn2kA5rbVG2hLKLbr7eWaS7b7ygAM,4083 -litellm/llms/jina_ai/embedding/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/jina_ai/embedding/transformation.py,sha256=nm8kP0d5h7L1u2NUICoXmsUoCSglrCOYHS6xo7vJspo,2300 -litellm/llms/jina_ai/rerank/__pycache__/handler.cpython-310.pyc,, -litellm/llms/jina_ai/rerank/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/jina_ai/rerank/handler.py,sha256=6cgBW53IkFSEhqvzvEe2sjJ6UY_DWGOwq6nROh_lksQ,55 -litellm/llms/jina_ai/rerank/transformation.py,sha256=Z8HLKnXe92KvIoHtQvth7BIlbooZBcNer2GyfB3uV0c,4674 -litellm/llms/litellm_proxy/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/litellm_proxy/chat/transformation.py,sha256=VaOemQVZZC2SJiwMjSENsjPrB-lItUhdpqGpilWlE6c,2086 -litellm/llms/lm_studio/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/lm_studio/chat/transformation.py,sha256=3hfH652lekkmgZ_srSBWVNEC92S-ewKyDwYT8-uzfes,710 -litellm/llms/lm_studio/embed/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/lm_studio/embed/transformation.py,sha256=7LDd4xQLu1Owri3MRhtamdFLtV5B0wzKVug2qCkMoH4,1254 -litellm/llms/maritalk.py,sha256=bcUTOIQKFWLx7IPkgJoG2zhRemGi5GAbZo7CKIxPwk0,2000 -litellm/llms/mistral/__pycache__/chat.cpython-310.pyc,, -litellm/llms/mistral/__pycache__/embedding.cpython-310.pyc,, -litellm/llms/mistral/__pycache__/mistral_chat_transformation.cpython-310.pyc,, -litellm/llms/mistral/__pycache__/mistral_embedding_transformation.cpython-310.pyc,, -litellm/llms/mistral/chat.py,sha256=a9J089q2zwmkyf4m7xjExeN_jHBKyx--sDl8ncL4cZQ,79 -litellm/llms/mistral/embedding.py,sha256=a9J089q2zwmkyf4m7xjExeN_jHBKyx--sDl8ncL4cZQ,79 -litellm/llms/mistral/mistral_chat_transformation.py,sha256=LdAB7opcViF7F6yOu8RZv7-032aWAH_n713CAes-Gg4,9210 -litellm/llms/mistral/mistral_embedding_transformation.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -litellm/llms/nlp_cloud/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/nlp_cloud/chat/__pycache__/handler.cpython-310.pyc,, -litellm/llms/nlp_cloud/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/nlp_cloud/chat/handler.py,sha256=8GuIlJ6UiJ_Z8Yz5TiCei0gklEw2QaZSzw0YLQyIrxE,3617 -litellm/llms/nlp_cloud/chat/transformation.py,sha256=IDqMDSjPi7LQ7vbYKx5TRkdQKdJySH4GS9sQ01PbIww,7979 -litellm/llms/nlp_cloud/common_utils.py,sha256=RR62KdUDDNgHLiHGAhXHEe5Q0ujk2Nn57pr8gdb7ywI,395 -litellm/llms/nvidia_nim/__pycache__/chat.cpython-310.pyc,, -litellm/llms/nvidia_nim/__pycache__/embed.cpython-310.pyc,, -litellm/llms/nvidia_nim/chat.py,sha256=z9cx7dnsc_oWb9XrT9F9J9hpNlRhk54bsTNG3no-WeM,4599 -litellm/llms/nvidia_nim/embed.py,sha256=hxKt3iYATHnLR4OKS71WMycxcpvQEnigSpzWFgd58IU,2303 -litellm/llms/ollama/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/ollama/common_utils.py,sha256=5L23tc4LVm2VzUUAuS7aOSs2GPsdFMaPwldQIRu48Z8,1259 -litellm/llms/ollama/completion/__pycache__/handler.cpython-310.pyc,, -litellm/llms/ollama/completion/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/ollama/completion/handler.py,sha256=W8YS7mk4hdbqm1l_ofWZyQ9x40wdtcrEkNB09EtEnOE,2910 -litellm/llms/ollama/completion/transformation.py,sha256=FggG2me5rrES-yC2dXK9a216sEScQqQcSpyIZ_NjiPE,17668 -litellm/llms/ollama_chat.py,sha256=_u4C62v10_52r8SXPcYovI2TMa09q_BWZUqMkUGSYjE,24841 -litellm/llms/oobabooga/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/oobabooga/chat/__pycache__/oobabooga.cpython-310.pyc,, -litellm/llms/oobabooga/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/oobabooga/chat/oobabooga.py,sha256=lSr2lIVHFFdBh1TJRJ-fV9cPuO7STKiKHKRkZtJV5W4,4396 -litellm/llms/oobabooga/chat/transformation.py,sha256=-y4AnlLUsm0ivoI54EWo8rCWDW1sMQ6QtQq1DfmSDYo,3302 -litellm/llms/oobabooga/common_utils.py,sha256=MrXF6OmsD5YDWdDV9ppAfPZCyBYaWLdFqjG04IvrMhw,396 -litellm/llms/openai/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/openai/__pycache__/cost_calculation.cpython-310.pyc,, -litellm/llms/openai/__pycache__/openai.cpython-310.pyc,, -litellm/llms/openai/chat/__pycache__/gpt_audio_transformation.cpython-310.pyc,, -litellm/llms/openai/chat/__pycache__/gpt_transformation.cpython-310.pyc,, -litellm/llms/openai/chat/__pycache__/o_series_handler.cpython-310.pyc,, -litellm/llms/openai/chat/__pycache__/o_series_transformation.cpython-310.pyc,, -litellm/llms/openai/chat/gpt_audio_transformation.py,sha256=uLFogco8_hU4BW_66XM5axvzlOnmHfvX8WYwF0xGNqY,1336 -litellm/llms/openai/chat/gpt_transformation.py,sha256=tPxoXsnx7hbdCILAuNsFc0l_ZC7Y9Gd1vrzlNRZUyzk,14659 -litellm/llms/openai/chat/o_series_handler.py,sha256=mxrppFXYhGzKvNdyU5k0fScX5DLVWKls_bHfVM_imyY,47 -litellm/llms/openai/chat/o_series_transformation.py,sha256=SfVhCoRxUcUY2qDrcYMU014g2aKofRUMfj4bVCqUnMY,5692 -litellm/llms/openai/common_utils.py,sha256=S5iallxVcXXDStj4BP765_1VxdS8v7INAQVgFn0Ctkg,7397 -litellm/llms/openai/completion/__pycache__/handler.cpython-310.pyc,, -litellm/llms/openai/completion/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/openai/completion/__pycache__/utils.cpython-310.pyc,, -litellm/llms/openai/completion/handler.py,sha256=9UVqJ1N3QGPRRq75d2vjtwsDdHwF766fnInPGJtUQOE,11853 -litellm/llms/openai/completion/transformation.py,sha256=jr12TSvCf4Rup-_jHbCzBoBSMzc422L4fwr4n1uJIsM,6126 -litellm/llms/openai/completion/utils.py,sha256=HXTL8Fpu4x-NaAjjDr4hBo7gyMsn3Gup-xOie6f1euk,1770 -litellm/llms/openai/cost_calculation.py,sha256=VJKcnhSZMqetnuAm-MklTyptElQHlvO8hn4dlBWVoEo,4747 -litellm/llms/openai/fine_tuning/__pycache__/handler.cpython-310.pyc,, -litellm/llms/openai/fine_tuning/handler.py,sha256=TBby6jK7SgiT5ZQI-uRAKby1fJX-wh-B9NlGfYmvo34,10041 -litellm/llms/openai/image_variations/__pycache__/handler.cpython-310.pyc,, -litellm/llms/openai/image_variations/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/openai/image_variations/handler.py,sha256=kLtoY4BuoV0urxmVfCZs0_v5nYGjJ8GEYOGZER1mH-c,8570 -litellm/llms/openai/image_variations/transformation.py,sha256=9UBfFG8v4VHSywmmO0p8HqWFq3_sKvLTXpA-YQEvWIc,2520 -litellm/llms/openai/openai.py,sha256=0miea0GyyOucKmSgwmACeAibppAqD2Fomj2q867bDoI,101900 -litellm/llms/openai/realtime/__pycache__/handler.cpython-310.pyc,, -litellm/llms/openai/realtime/handler.py,sha256=2WaatqA6c9mlvFL_ORPtI0tNj6SkSAW0uBURglYZS4o,2805 -litellm/llms/openai/responses/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/openai/responses/transformation.py,sha256=_IerDbvxlDrHrXzx1UuggKrN7TcN71cTs3RN34QSD1Q,8869 -litellm/llms/openai/transcriptions/__pycache__/gpt_transformation.cpython-310.pyc,, -litellm/llms/openai/transcriptions/__pycache__/handler.cpython-310.pyc,, -litellm/llms/openai/transcriptions/__pycache__/whisper_transformation.cpython-310.pyc,, -litellm/llms/openai/transcriptions/gpt_transformation.py,sha256=QYELxY0D7cLeDLpjw6139uPS3brGUzwH7Hkf9GZf_PE,1005 -litellm/llms/openai/transcriptions/handler.py,sha256=RshxzSURUzWV0_dFl70C5oeTwzTwOW4IZZQRIUPCLQY,8119 -litellm/llms/openai/transcriptions/whisper_transformation.py,sha256=Vp58xlSh4HHLjMtZu5TQ0psOlUeeNnxhZPdzvn-eIC0,2824 -litellm/llms/openai_like/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/openai_like/chat/__pycache__/handler.cpython-310.pyc,, -litellm/llms/openai_like/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/openai_like/chat/handler.py,sha256=1kLE89OncjZUPITPUOLd45amnVR3uf4GlLcJXmqKgYk,13935 -litellm/llms/openai_like/chat/transformation.py,sha256=Wmf9Esm9_tW9MN-gQNoOB3N_oTAbLZhBRsHJwPC0lso,5294 -litellm/llms/openai_like/common_utils.py,sha256=1G-vshKyZ2KzLgJnix6g4rzyc1mEgqm87e9bVOMROgo,2133 -litellm/llms/openai_like/embedding/__pycache__/handler.cpython-310.pyc,, -litellm/llms/openai_like/embedding/handler.py,sha256=NgKv-Bty4G9x-XPSBTaR1eE-mToF8JxqSb7Qe-i56ZA,4935 -litellm/llms/openrouter/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/openrouter/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/openrouter/chat/transformation.py,sha256=Ah2NB7aNQuL9O7jOLvi_xazNY98qtRkTFq7aizHVBwo,4741 -litellm/llms/openrouter/common_utils.py,sha256=r4ROh6GTDu2yB__fE1TdGdfGWGfiqdeU4IVzBq3G8ao,127 -litellm/llms/perplexity/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/perplexity/chat/transformation.py,sha256=6Rh1gcczEvM0rpHQVx1UdoAvOaE-aoAzIvH-bESS6Iw,1390 -litellm/llms/petals/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/petals/common_utils.py,sha256=auMO32Q5e6y1Fa6XWR82kQM0_0o5KbAErPp4yfp-m3o,334 -litellm/llms/petals/completion/__pycache__/handler.cpython-310.pyc,, -litellm/llms/petals/completion/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/petals/completion/handler.py,sha256=oyD3F27-dOQmhPnpWX7RZRbztsenu-aa9buCy_wAkiI,4630 -litellm/llms/petals/completion/transformation.py,sha256=7VHNOljCbnDze8KBUpc1usyamCMEVOs8hq3SaOI1l0U,4777 -litellm/llms/predibase/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/predibase/chat/__pycache__/handler.cpython-310.pyc,, -litellm/llms/predibase/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/predibase/chat/handler.py,sha256=B5OkEstbfleb8HXcoV3E4PC50szfg74EWf-_ZgeXRbM,16602 -litellm/llms/predibase/chat/transformation.py,sha256=sNw7cwDAqaFfapFQQwE9mbkCqvfZH3ysuYZNKSnJ1fM,6815 -litellm/llms/predibase/common_utils.py,sha256=dfCFrZhTJipgRDI3UqQFOwow-oYxBiRqR5B9cJhiP4I,603 -litellm/llms/replicate/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/replicate/chat/__pycache__/handler.cpython-310.pyc,, -litellm/llms/replicate/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/replicate/chat/handler.py,sha256=YGXa5yxNfUTVzEea3Wp9wXGz7liNmnW_gymkNhuaShc,11119 -litellm/llms/replicate/chat/transformation.py,sha256=u0ElPKmPz9kpoD_Ih4goAQ__Lau-xllE1efSGgtHtb4,12400 -litellm/llms/replicate/common_utils.py,sha256=vfRWRfmkBl3M1oRgoOhAgZeVf_3pSP7DWKqCxIu_Ty8,389 -litellm/llms/sagemaker/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/sagemaker/chat/__pycache__/handler.cpython-310.pyc,, -litellm/llms/sagemaker/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/sagemaker/chat/handler.py,sha256=hTXPrd1wkFtSq9oPpIMiETovMqG5dZz1Af71U7q2EeY,7002 -litellm/llms/sagemaker/chat/transformation.py,sha256=B7CTRAiY7k-W--5VfxgMGXvIOq6GQw2Oq3x-pG3biNY,859 -litellm/llms/sagemaker/common_utils.py,sha256=D-nwAguS5H2FD28NTXm9oF9X8dqkiEsZjiuBbpsPvbU,8683 -litellm/llms/sagemaker/completion/__pycache__/handler.cpython-310.pyc,, -litellm/llms/sagemaker/completion/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/sagemaker/completion/handler.py,sha256=_iuX5N-zGdhsTT5lt29DmVeLer_jSLBmTAzGrLg1Vjo,26132 -litellm/llms/sagemaker/completion/transformation.py,sha256=UINv5xjpM9LsT2kBW1A_8EENzVifm5vVE4UprKSEfLI,10233 -litellm/llms/sambanova/__pycache__/chat.cpython-310.pyc,, -litellm/llms/sambanova/chat.py,sha256=JkeJQ3VPbLoiVsRhSjXCj4Elu9fcUNSzlsthCl6kfrE,1752 -litellm/llms/snowflake/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/snowflake/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/snowflake/chat/transformation.py,sha256=RfNZBeWDWiCJhsdIepP8jAz7EG2rWY3z2TEjDzg2ios,5423 -litellm/llms/snowflake/common_utils.py,sha256=BnKwR359N2vgfJ6akSSMoj-2BRkrR5kjo4HCocZbgWc,1018 -litellm/llms/together_ai/__pycache__/chat.cpython-310.pyc,, -litellm/llms/together_ai/__pycache__/cost_calculator.cpython-310.pyc,, -litellm/llms/together_ai/__pycache__/embed.cpython-310.pyc,, -litellm/llms/together_ai/chat.py,sha256=2d2nM1PvOPejNb4wZZsYHzwBbKnMxOrsjny97t9FIEM,2066 -litellm/llms/together_ai/completion/__pycache__/handler.cpython-310.pyc,, -litellm/llms/together_ai/completion/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/together_ai/completion/handler.py,sha256=Sey5xhMPY0x5muY8Ex1n8TgPQVwc3-z_YFRggE_lZlU,47 -litellm/llms/together_ai/completion/transformation.py,sha256=Yg2mZVRqTzKSvemv4IvxsklzXeCyVAMHYS2GC5FcBMw,2048 -litellm/llms/together_ai/cost_calculator.py,sha256=p4cv7oOwGcJAqPFy4RUaP036bmTu3YCc4Hufjq1kl90,3053 -litellm/llms/together_ai/embed.py,sha256=9tgu5GlbQU8f-Sj07dKy_vt3esNSZDidViTA0htg-ZE,181 -litellm/llms/together_ai/rerank/__pycache__/handler.cpython-310.pyc,, -litellm/llms/together_ai/rerank/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/together_ai/rerank/handler.py,sha256=A6gGNLj-VX2OxE9E2-ZwAmVPjEmG_yRNiISOAQz8Ljw,2855 -litellm/llms/together_ai/rerank/transformation.py,sha256=_qk8IMYXS0gC8xCFCz6p9Cgf1eptvX8jq--d1A2Id-Q,2023 -litellm/llms/topaz/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/topaz/common_utils.py,sha256=A2PhhAsS2lLK8IxJTqP8eiifuhBpghm2YreDmgr8gK4,1711 -litellm/llms/topaz/image_variations/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/topaz/image_variations/transformation.py,sha256=kN0rsJEBE6w1KmM5dD7oNbgk8uPJm8kGJ6Ni6U4_8D4,5785 -litellm/llms/triton/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/triton/common_utils.py,sha256=kWIRjRKDOQOpuc_ZhepJ3oFcmTeXEJqf8skJfCUmBXo,401 -litellm/llms/triton/completion/__pycache__/handler.cpython-310.pyc,, -litellm/llms/triton/completion/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/triton/completion/handler.py,sha256=duNlWMGNsEyWjeqvKjDd0bKjFECnr9haEgsxdi1t2Lo,145 -litellm/llms/triton/completion/transformation.py,sha256=xNnsmPfZlhrQ7jtwl9B8aQq_ky_fFbuqGW6WGxxAi5k,11211 -litellm/llms/triton/embedding/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/triton/embedding/transformation.py,sha256=Omwr2aBrMzmk4Yx8Y2SYK0ODvoy-NM8JzWwANc3gLCI,3622 -litellm/llms/vertex_ai/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/vertex_ai/__pycache__/cost_calculator.cpython-310.pyc,, -litellm/llms/vertex_ai/__pycache__/vertex_ai_non_gemini.cpython-310.pyc,, -litellm/llms/vertex_ai/__pycache__/vertex_llm_base.cpython-310.pyc,, -litellm/llms/vertex_ai/batches/Readme.md,sha256=IbnuiX6lS93XHrGJ_4v9VBjRi-SJeaGfsrDTRg3fkCw,212 -litellm/llms/vertex_ai/batches/__pycache__/handler.cpython-310.pyc,, -litellm/llms/vertex_ai/batches/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/vertex_ai/batches/handler.py,sha256=ndQs0zry86WRiGxaqq0J_2jut9SsSm1hLyUUmjosJQw,7232 -litellm/llms/vertex_ai/batches/transformation.py,sha256=6PKSZGkyXxaaebSZc8zWXzQ_XhVy0N2VMRnMM9NY-9g,6953 -litellm/llms/vertex_ai/common_utils.py,sha256=h5-v6q_UcJQbvOw1wVwBKDvG3R5jrsB9f1oHKivIEbs,16955 -litellm/llms/vertex_ai/context_caching/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/vertex_ai/context_caching/__pycache__/vertex_ai_context_caching.cpython-310.pyc,, -litellm/llms/vertex_ai/context_caching/transformation.py,sha256=qbD4riQg_X5DED2gQ7a_zrxLfuttQzogMkbZexF5Fec,3618 -litellm/llms/vertex_ai/context_caching/vertex_ai_context_caching.py,sha256=dEGUzO1lckPGyL0O2XuCnGmUruZrzv-jdaemHW4ESB8,13789 -litellm/llms/vertex_ai/cost_calculator.py,sha256=YPB8r6XKHeTpNvGkR8Bul3GE-YE08YVMrDmGraGguBs,9134 -litellm/llms/vertex_ai/files/__pycache__/handler.cpython-310.pyc,, -litellm/llms/vertex_ai/files/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/vertex_ai/files/handler.py,sha256=OweYTqDPaQ6wP47R5_HWz1NN9oDrWI90p4KVaaSQ6sU,3750 -litellm/llms/vertex_ai/files/transformation.py,sha256=4Z8ZNie1iirOrpI6K3_fDda_qqT0op6wp37cQP0i7Ww,18398 -litellm/llms/vertex_ai/fine_tuning/__pycache__/handler.cpython-310.pyc,, -litellm/llms/vertex_ai/fine_tuning/handler.py,sha256=8kJc3UbhE33ggKwVj8YRE96N9soGiRRZ45Noe_2MaMs,14382 -litellm/llms/vertex_ai/gemini/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/vertex_ai/gemini/__pycache__/vertex_and_google_ai_studio_gemini.cpython-310.pyc,, -litellm/llms/vertex_ai/gemini/transformation.py,sha256=7-TFRGas8DL_wweN4KFgzfECbXcBzqW360fb0hXhkfY,20423 -litellm/llms/vertex_ai/gemini/vertex_and_google_ai_studio_gemini.py,sha256=JBcDsTGm5nE-TWSNDETZLA9lCQUjmKoSqUxHA9huRBU,64454 -litellm/llms/vertex_ai/gemini_embeddings/__pycache__/batch_embed_content_handler.cpython-310.pyc,, -litellm/llms/vertex_ai/gemini_embeddings/__pycache__/batch_embed_content_transformation.cpython-310.pyc,, -litellm/llms/vertex_ai/gemini_embeddings/batch_embed_content_handler.py,sha256=LJFGEE5Mgt7P2j1Aem5oFSP4uxu4M_7A_F8tvxfubFE,5666 -litellm/llms/vertex_ai/gemini_embeddings/batch_embed_content_transformation.py,sha256=e49WCU0QgqyVu1rUXbx-5aV3zmRUM_TEE3fEPQN94tI,2325 -litellm/llms/vertex_ai/image_generation/__pycache__/cost_calculator.cpython-310.pyc,, -litellm/llms/vertex_ai/image_generation/__pycache__/image_generation_handler.cpython-310.pyc,, -litellm/llms/vertex_ai/image_generation/cost_calculator.py,sha256=oVVPgj5ISuRdUg-NHeEK7ucoQJVbdFQEQwfmD3aFFyE,549 -litellm/llms/vertex_ai/image_generation/image_generation_handler.py,sha256=Glagqc8VD5s2jQVJvd0pfkXMGLkv3k10EdS0RM24wvQ,9072 -litellm/llms/vertex_ai/multimodal_embeddings/__pycache__/embedding_handler.cpython-310.pyc,, -litellm/llms/vertex_ai/multimodal_embeddings/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/vertex_ai/multimodal_embeddings/embedding_handler.py,sha256=J7JXo9XZRIb7ibP-6O8pf0fBPxuQvhKn__2Td5lEdWA,6287 -litellm/llms/vertex_ai/multimodal_embeddings/transformation.py,sha256=1uSa5if9cvoEZ1pjCNOi8Q8WlMLcSIjJP_8ANvp8QY0,10897 -litellm/llms/vertex_ai/text_to_speech/__pycache__/text_to_speech_handler.cpython-310.pyc,, -litellm/llms/vertex_ai/text_to_speech/text_to_speech_handler.py,sha256=hUu6s8aGa_HPwT4CsyTLniXZqc_uEtzL_MffZxgamhk,7723 -litellm/llms/vertex_ai/vertex_ai_non_gemini.py,sha256=7vHTSIXzbagLg7B1jvgiaxjzk3sGxbUYAlmJZ2lTDgg,29597 -litellm/llms/vertex_ai/vertex_ai_partner_models/__pycache__/main.cpython-310.pyc,, -litellm/llms/vertex_ai/vertex_ai_partner_models/ai21/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/vertex_ai/vertex_ai_partner_models/ai21/transformation.py,sha256=cvNsKwK-E2_0IBtDu2kTD98tHYQmCNR6ZpYK9JsNDzQ,1711 -litellm/llms/vertex_ai/vertex_ai_partner_models/anthropic/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/vertex_ai/vertex_ai_partner_models/anthropic/transformation.py,sha256=q-H4stqlrEIHSZWBL2QeNts1vmBcinRwG2wWorn3TIE,3992 -litellm/llms/vertex_ai/vertex_ai_partner_models/llama3/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/vertex_ai/vertex_ai_partner_models/llama3/transformation.py,sha256=Q4Ea21xgdMxLnMQRf0D2Rc1LSpFzfloMayeGSdUhMbo,2229 -litellm/llms/vertex_ai/vertex_ai_partner_models/main.py,sha256=hb4ZADnlHVDvuKHexXPJXaHeXrHdHOpabKzO6jLDRZ4,9519 -litellm/llms/vertex_ai/vertex_embeddings/__pycache__/embedding_handler.cpython-310.pyc,, -litellm/llms/vertex_ai/vertex_embeddings/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/vertex_ai/vertex_embeddings/__pycache__/types.cpython-310.pyc,, -litellm/llms/vertex_ai/vertex_embeddings/embedding_handler.py,sha256=u4QxfvD-wxBwE_FJVi1g_zERdlT9OvXIJtYd4l7lOsY,8551 -litellm/llms/vertex_ai/vertex_embeddings/transformation.py,sha256=m1EJLA0rjGRCqawnuRHSL3G7jn4AWlIXgObNeFlylMw,9386 -litellm/llms/vertex_ai/vertex_embeddings/types.py,sha256=X6gjNP0IwvVewSy4LlFD_Ec92GN7ukn8rpf6KuOb9i4,1856 -litellm/llms/vertex_ai/vertex_llm_base.py,sha256=s7TSxT019c806nYpukk8p49ynkemqLJKFyGGyZQnsrk,13222 -litellm/llms/vertex_ai/vertex_model_garden/__pycache__/main.cpython-310.pyc,, -litellm/llms/vertex_ai/vertex_model_garden/main.py,sha256=6eRL6aevquWdxttXq6fasqnfbeojoL-XdSrO1uH0Xb8,5137 -litellm/llms/vllm/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/vllm/common_utils.py,sha256=f1edBBtBrzH_ElAwuCKf-nFGgWiGx9slCygLtTRuV_4,2428 -litellm/llms/vllm/completion/__pycache__/handler.cpython-310.pyc,, -litellm/llms/vllm/completion/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/vllm/completion/handler.py,sha256=-R02bpmQFkpjwF9Xsr5fCp7sWpj1qzXug1c2wfOi50Y,5975 -litellm/llms/vllm/completion/transformation.py,sha256=xt7YaCOsexESEH-XxtTFslOZVjU9QmYWaaIr6PDFXC4,352 -litellm/llms/volcengine.py,sha256=tukUp6kmdogQtOZUFNCZ1xPBuHs6ISwDLTroRM2awFM,2038 -litellm/llms/voyage/embedding/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/voyage/embedding/transformation.py,sha256=D7J-PHNI8F6dY1wLR3aYsN3JrkcDi7ouX1WHx0emtx4,4655 -litellm/llms/watsonx/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/watsonx/chat/__pycache__/handler.cpython-310.pyc,, -litellm/llms/watsonx/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/watsonx/chat/handler.py,sha256=qY8eavmnIveHTxhtdk-m2KKLAT64kRBoqF72WKCBUzI,3004 -litellm/llms/watsonx/chat/transformation.py,sha256=YKidodQ24cDPPH6UnHZwkugcTIMnJ2NRHFpa_EFaXLw,4007 -litellm/llms/watsonx/common_utils.py,sha256=dgiKAktDdVonh7cCN17sUGsOlvA1svck6Pryylu20Qc,10604 -litellm/llms/watsonx/completion/__pycache__/handler.cpython-310.pyc,, -litellm/llms/watsonx/completion/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/watsonx/completion/handler.py,sha256=6usOrXnld_3oMppUeZsLSgHbSsVQyKwf-ItbXP8kF_g,69 -litellm/llms/watsonx/completion/transformation.py,sha256=XIOLS9tmx8nQ0Bs4T58hwGblbzZeHVLFwSliv2e_LOI,14052 -litellm/llms/watsonx/embed/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/watsonx/embed/transformation.py,sha256=yxfzjb9H3auW_RaV73koXLFWQhddv5uF8kPam6icfKI,3435 -litellm/llms/xai/__pycache__/common_utils.cpython-310.pyc,, -litellm/llms/xai/chat/__pycache__/transformation.cpython-310.pyc,, -litellm/llms/xai/chat/transformation.py,sha256=LOtTfnou3RoYAOJ58nouxb_HvcQq8VFc4JOJVmyYtbo,2881 -litellm/llms/xai/common_utils.py,sha256=jPaiQKehol3kmSCTCVHvyiJ0m6fnUk70fGJ_Mip4MLE,2444 -litellm/main.py,sha256=UFDSexHzwCfV-JDLzBQRI0x2zNbbEJL2IW75MaL7CXE,233399 -litellm/model_prices_and_context_window_backup.json,sha256=uQhm9rJkcEsdz0RK9-nEGDSPPFQkgbJgJn7Reo2X-Nw,432006 -litellm/proxy/.gitignore,sha256=v2ZocUpppVuVfYJh1Bd1JpjpYSLxifJdClMEo0oOdT0,17 -litellm/proxy/README.md,sha256=UYsgc2W0DfQtQGpUJOunMDsTpowp_zzAlNG16XOcJTA,1353 -litellm/proxy/__init__.py,sha256=Il5Q9ATdX8yXqVxtP_nYqUhExzxPC_qk_WXQ_4h0exg,16 -litellm/proxy/__pycache__/__init__.cpython-310.pyc,, -litellm/proxy/__pycache__/_logging.cpython-310.pyc,, -litellm/proxy/__pycache__/_types.cpython-310.pyc,, -litellm/proxy/__pycache__/caching_routes.cpython-310.pyc,, -litellm/proxy/__pycache__/common_request_processing.cpython-310.pyc,, -litellm/proxy/__pycache__/custom_prompt_management.cpython-310.pyc,, -litellm/proxy/__pycache__/custom_sso.cpython-310.pyc,, -litellm/proxy/__pycache__/custom_validate.cpython-310.pyc,, -litellm/proxy/__pycache__/health_check.cpython-310.pyc,, -litellm/proxy/__pycache__/lambda.cpython-310.pyc,, -litellm/proxy/__pycache__/litellm_pre_call_utils.cpython-310.pyc,, -litellm/proxy/__pycache__/mcp_tools.cpython-310.pyc,, -litellm/proxy/__pycache__/post_call_rules.cpython-310.pyc,, -litellm/proxy/__pycache__/prisma_migration.cpython-310.pyc,, -litellm/proxy/__pycache__/proxy_cli.cpython-310.pyc,, -litellm/proxy/__pycache__/proxy_server.cpython-310.pyc,, -litellm/proxy/__pycache__/route_llm_request.cpython-310.pyc,, -litellm/proxy/__pycache__/utils.cpython-310.pyc,, -litellm/proxy/_experimental/__pycache__/post_call_rules.cpython-310.pyc,, -litellm/proxy/_experimental/mcp_server/__pycache__/mcp_server_manager.cpython-310.pyc,, -litellm/proxy/_experimental/mcp_server/__pycache__/server.cpython-310.pyc,, -litellm/proxy/_experimental/mcp_server/__pycache__/sse_transport.cpython-310.pyc,, -litellm/proxy/_experimental/mcp_server/__pycache__/tool_registry.cpython-310.pyc,, -litellm/proxy/_experimental/mcp_server/mcp_server_manager.py,sha256=IdP7_WcAT4_7DMy7f5sRjb3y1IXmUlyg6nt448VIaeQ,5297 -litellm/proxy/_experimental/mcp_server/server.py,sha256=5O3AriXozQaGRrvhtZGrBP4fCrgUSVRumdai5XlbQ70,11600 -litellm/proxy/_experimental/mcp_server/sse_transport.py,sha256=5Gf9sBiPli_VaIC2NJjYN5O_o2a8tg9A15uzb_Iy30s,6180 -litellm/proxy/_experimental/mcp_server/tool_registry.py,sha256=DFt5YCed1_3ZOnQ9yoJAyzbrsujUqB9MzExq6ojgbvk,3228 -litellm/proxy/_experimental/out/_next/static/chunks/117-1c5bfc45bfc4237d.js,sha256=6fITZixMigr_LHGWClXFlNxh_JzhTbaLofJ_Prt3lgY,124147 -litellm/proxy/_experimental/out/_next/static/chunks/13b76428-ebdf3012af0e4489.js,sha256=QVJOg2NW5huLCFnsmrvUPHVSa8zRfhrwnvg4Vph3Ulw,59303 -litellm/proxy/_experimental/out/_next/static/chunks/250-7d480872c0e251dc.js,sha256=KiJc8q1CjIxpb8VUiopEaMjtRFWZkY0KVSQbVT-DPFQ,57453 -litellm/proxy/_experimental/out/_next/static/chunks/261-ee7f0f1f1c8c22a0.js,sha256=4dEJz53BY8ET7TXfMdr6wjHORFgW4bnAaoQBBPyzlKo,685627 -litellm/proxy/_experimental/out/_next/static/chunks/3014691f-b7b79b78e27792f3.js,sha256=4ETJ2eRbeVM6gstCpDnquThAnyw6oa0bkpJNYCGJk5k,711 -litellm/proxy/_experimental/out/_next/static/chunks/42-69f5b4e6a9942a9f.js,sha256=16Jf6qft0QaAdxvRqnNLI6nfNIexKsTD1bLqbWV5kH0,328888 -litellm/proxy/_experimental/out/_next/static/chunks/466-65538e7f331af98e.js,sha256=lVvHU74hmsMF6oBZu1f04hyiQhZa_segWXeF220N4t0,1659336 -litellm/proxy/_experimental/out/_next/static/chunks/699-2176ba2273e4676d.js,sha256=VZK3WiKXDYsCO8aXIidV5jydIa1icPvvQESE1iKtxUc,7427 -litellm/proxy/_experimental/out/_next/static/chunks/899-57685cedd1dcbc78.js,sha256=7uLsQOpkqAgT2YuXcVc96rJpTd2Pd81f0hrjLorju-U,49810 -litellm/proxy/_experimental/out/_next/static/chunks/app/_not-found/page-3b0daafcbe368586.js,sha256=FVXglwXR4zvyY1rzGgR74k-Ll-lZcOEBjs2lxHRZ-g8,1751 -litellm/proxy/_experimental/out/_next/static/chunks/app/layout-311f9b6ff79980ae.js,sha256=B3sdBH1sqVbBEvqPsMK8TfDQJ-4CjeTTsQZ6rYOVb-Y,427 -litellm/proxy/_experimental/out/_next/static/chunks/app/model_hub/page-a965e43ba9638156.js,sha256=zofZoesXRp-IpkvCo7WNQ18_jTXVqvMD0tc6zlVgMHU,532 -litellm/proxy/_experimental/out/_next/static/chunks/app/onboarding/page-9598003bc1e91371.js,sha256=tYuwpg1PfLJhCFixqjw5bxkt1Hr3Fh9HDxW5_jRCslU,3463 -litellm/proxy/_experimental/out/_next/static/chunks/app/page-36914b80c40b5032.js,sha256=cSMPh4ZUszdSMCmDq4XiMEywYbE2ZKFcyGmwOOyZ7D4,452465 -litellm/proxy/_experimental/out/_next/static/chunks/fd9d1056-205af899b895cbac.js,sha256=_pOUuvMP6W79SuhX2lFzzSr-j38Lyc_d3CKWumBBk88,172836 -litellm/proxy/_experimental/out/_next/static/chunks/framework-b370f160bb96059c.js,sha256=ikw-wVuyV_hCSeg6hXlhMBokMbd8sTUcAQTfUlQPq_8,140039 -litellm/proxy/_experimental/out/_next/static/chunks/main-8ee698634884314e.js,sha256=2OUUM8C_6kA_-9CoO6atJ_GLrtwx596BqwwceZe5QOo,111332 -litellm/proxy/_experimental/out/_next/static/chunks/main-app-2b16cdb7ff4e1af7.js,sha256=TDNQ-YQoXW4ZjmSVMC8la3Sov1SyrGgTZ3MitQ5mcRo,468 -litellm/proxy/_experimental/out/_next/static/chunks/pages/_app-15e2daefa259f0b5.js,sha256=czAxvvVE7rp90Snsx0rMg8Vc2W968H3QyRE_CVynE_Y,284 -litellm/proxy/_experimental/out/_next/static/chunks/pages/_error-28b803cb2479b966.js,sha256=14QByZ2qNj-M-_zFTtp5gaOpNolae8jFh05D0V7yKWo,250 -litellm/proxy/_experimental/out/_next/static/chunks/polyfills-42372ed130431b0a.js,sha256=CXPB1kyIrcjjyVBBDLWLKI9yEY1ZZbeASUON648vloM,112594 -litellm/proxy/_experimental/out/_next/static/chunks/webpack-75a5453f51d60261.js,sha256=lPnxP39LSuni3-Dyn0V1BK2sKjZpjkyA8hBH_Dl0K7U,3840 -litellm/proxy/_experimental/out/_next/static/css/005c96178151b9fd.css,sha256=NqPqK--vqXRs1cftnPfyRQGiuoHH5F_-OuQPpiHZ-eI,445847 -litellm/proxy/_experimental/out/_next/static/css/86f6cc749f6b8493.css,sha256=gJoBeMQnjhCcS5tpN-LNuVWL9TSxHzEEmeeRpKtWJko,2174 -litellm/proxy/_experimental/out/_next/static/fzhvjOFL6KeNsWYrLD4ya/_buildManifest.js,sha256=y8M4vrnoLfkifLYZNnI88j-bE5fEP2RnFWgMpNd47Sg,224 -litellm/proxy/_experimental/out/_next/static/fzhvjOFL6KeNsWYrLD4ya/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80 -litellm/proxy/_experimental/out/_next/static/media/26a46d62cd723877-s.woff2,sha256=lOXII-cuccwg9L-imwQ08iYAQJZdnQZsDny13Jn_1sM,18820 -litellm/proxy/_experimental/out/_next/static/media/55c55f0601d81cf3-s.woff2,sha256=zhKUdvQpmyFbVbHu0vxDJLRr2yZB4R1Z4kgbdEpH0RQ,25908 -litellm/proxy/_experimental/out/_next/static/media/581909926a08bbc8-s.woff2,sha256=6sXLry_RZ9cH4ezy5o4q8jK-nPyVJXQWRBfzKllMXvw,19072 -litellm/proxy/_experimental/out/_next/static/media/6d93bde91c0c2823-s.woff2,sha256=MuUklqJWCJ8nnGFQGu-7Q4D3ksk_Aex6bnNWeP1is_E,74316 -litellm/proxy/_experimental/out/_next/static/media/97e0cb1ae144a2a9-s.woff2,sha256=PSMwBhtNmlpSF4kzHs5Rp1X9plNe2ybXQJtxBSizzQ0,11220 -litellm/proxy/_experimental/out/_next/static/media/a34f9d1faa5f3315-s.p.woff2,sha256=yI2yQBvvfhID4JM8xVJaD4GGO_0HZ1bbEqzqVZbwiew,48556 -litellm/proxy/_experimental/out/_next/static/media/df0a9ae256c0569c-s.woff2,sha256=jbAP9Gxnsizai-2GWs9wd2UcrI0oQdW0CYBVa0iWGTE,10280 -litellm/proxy/_experimental/out/assets/logos/anthropic.svg,sha256=7G6ybx5PKo831xWobQrplQhIBHDGsoRvXt95Ok45I7w,381 -litellm/proxy/_experimental/out/assets/logos/assemblyai_small.png,sha256=Y8kw7Yj1OvAboYW4FC59FiAUAmkcxNMUQO3sYCkM3Mk,414 -litellm/proxy/_experimental/out/assets/logos/aws.svg,sha256=8qgeYZ-EnJ0JOlutRyG3NTwudM8vOXf8WF8dHZpZ-pI,2590 -litellm/proxy/_experimental/out/assets/logos/bedrock.svg,sha256=kXcK_2QL5E4p00pEb1nm-cHSYZbhYqoHQ_KuT2CbVBA,2268 -litellm/proxy/_experimental/out/assets/logos/cerebras.svg,sha256=98_uWhwHAQJ0HrDnaD0CKXkEVtLDCLSd_2TRcQ3-YEc,8238 -litellm/proxy/_experimental/out/assets/logos/cohere.svg,sha256=yYay3GJsUCIbDyWv3VGXcfBptHYvcvMyuByJmzGlwyY,742 -litellm/proxy/_experimental/out/assets/logos/databricks.svg,sha256=lOTTGQb42XVcYn_xGxoOwKWGoiIVY6W3gyyfTl9oxvc,528 -litellm/proxy/_experimental/out/assets/logos/deepseek.svg,sha256=eT3iTUkd3gY7ms2qQhLn_ACqsA92pcKZugjs1iwJQsk,2360 -litellm/proxy/_experimental/out/assets/logos/fireworks.svg,sha256=8cR4K4a8A6NjI_1orWzDdsay6-V7cBzJWOvWuNN-_9Y,592 -litellm/proxy/_experimental/out/assets/logos/google.svg,sha256=i2lCUcTYjnrJ8HJfUCs-8_ulcpHG6UCMoV2N905xpic,728 -litellm/proxy/_experimental/out/assets/logos/groq.svg,sha256=24JNwcmDMj5IvOSJQNd9DObhqgEsTGncI6m8m_J4EUo,619 -litellm/proxy/_experimental/out/assets/logos/microsoft_azure.svg,sha256=jqZYpbjcySrb-DumDfTXIJtg_xMx1kuGydLd6W62v8Q,7385 -litellm/proxy/_experimental/out/assets/logos/mistral.svg,sha256=ci90sonZVIa0NmL-JPqIOzM3ASlvYYQGzQ7VAimRcLY,655 -litellm/proxy/_experimental/out/assets/logos/ollama.svg,sha256=m-lH7K_YLOPuGagOSM5GHR-bNgdJETfj3f0iHhTiRA8,8614 -litellm/proxy/_experimental/out/assets/logos/openai_small.svg,sha256=1JTcN5MCmWpOZqCMpGuir1mb9x6LWaij-i_fV7CH1OA,1658 -litellm/proxy/_experimental/out/assets/logos/openrouter.svg,sha256=sn4BPonpOVIfQu_1PW5chM5AjRao6xr1Xe1zW7T3YQI,1096 -litellm/proxy/_experimental/out/assets/logos/perplexity-ai.svg,sha256=uY3kJNkb_685NsUhJ5_8oJ9xREiWx5dXmmriIpGpXnE,1272 -litellm/proxy/_experimental/out/assets/logos/sambanova.svg,sha256=QRq4gTGHOLdonl_GxOCHmiKROqu5vCEl4_wD8k4yFNU,1602 -litellm/proxy/_experimental/out/assets/logos/togetherai.svg,sha256=7trowWe77_hoAMaqOzdPpkyagAIP26aaRSKVKpFOrFc,560 -litellm/proxy/_experimental/out/assets/logos/xai.svg,sha256=TGhaYixZxpnoJOIWypiVgM8SEF5Ik1LLIBcsfIr5kMM,937 -litellm/proxy/_experimental/out/favicon.ico,sha256=Ikbq6HOjEekHeOnx68AzqSl19Y5YPKwdQv7FyKK6Q8M,15406 -litellm/proxy/_experimental/out/index.html,sha256=FdhQgAL1lKJ71wbAG4dye8iykg_hQqy4AE1_isARecA,4990 -litellm/proxy/_experimental/out/index.txt,sha256=GrF4JMV3MSITOXlNCvNEdS2SqyWk1NqPdSj2_E6uUps,2911 -litellm/proxy/_experimental/out/model_hub.txt,sha256=vc4DRzImD905QSoDeS7f9jiOHut3LW5L9fqanSt3vuc,3115 -litellm/proxy/_experimental/out/next.svg,sha256=VZld-tbstJRaHoVt3KA8XhaqW_E_0htN9qdK55NXvPw,1375 -litellm/proxy/_experimental/out/onboarding.html,sha256=2M2ql5SvuJEg8Qzj15MeXxtMovpZwAVbcrLUpDI6qbg,5255 -litellm/proxy/_experimental/out/onboarding.txt,sha256=bd_UbkP6XzelUchUCOX4adAc8q9spqnrDchI4PXbBAM,3124 -litellm/proxy/_experimental/out/vercel.svg,sha256=P6XNdXtBjhivxo3eutVfRDIG5BAyeSHdsr8b5zFliIA,629 -litellm/proxy/_experimental/post_call_rules.py,sha256=0tMsQ8ViObIH2wJcEfdWt9CZ2FAkj6HoBIrAr59VvFc,170 -litellm/proxy/_logging.py,sha256=3zwPYBRv2EL1OB8Tk7_O6qU6lXCL2zSBNshe7rfyZbU,1055 -litellm/proxy/_new_new_secret_config.yaml,sha256=B0z7vBkykOHQ6rRL1D9jztY2Xs-tXbu38frs1LaEmHc,494 -litellm/proxy/_new_secret_config.yaml,sha256=nrfjz9eUfskTq1NaABuLs2Xv6MBb08LSamYcl_OpBU4,1299 -litellm/proxy/_super_secret_config.yaml,sha256=go-txuGiBfjn8vrxTYrB9Sto_BRWjnMiTrStJcSh5Xw,3480 -litellm/proxy/_types.py,sha256=5FxThsmW8XsJgO8r2-zbcHRjc163NqxoaDMUqqrZ2Oc,91269 -litellm/proxy/analytics_endpoints/__pycache__/analytics_endpoints.cpython-310.pyc,, -litellm/proxy/analytics_endpoints/analytics_endpoints.py,sha256=4V1VxUkJqtw1UpMepoI8TL3WRRwc-TRy0eXMOmgNedY,3324 -litellm/proxy/anthropic_endpoints/__pycache__/endpoints.cpython-310.pyc,, -litellm/proxy/anthropic_endpoints/endpoints.py,sha256=8Lu3oYrokRSrpF9rsC6rNjzPcmorbxKjCHRXHcqOw-M,9441 -litellm/proxy/auth/__pycache__/auth_checks.cpython-310.pyc,, -litellm/proxy/auth/__pycache__/auth_checks_organization.cpython-310.pyc,, -litellm/proxy/auth/__pycache__/auth_exception_handler.cpython-310.pyc,, -litellm/proxy/auth/__pycache__/auth_utils.cpython-310.pyc,, -litellm/proxy/auth/__pycache__/handle_jwt.cpython-310.pyc,, -litellm/proxy/auth/__pycache__/litellm_license.cpython-310.pyc,, -litellm/proxy/auth/__pycache__/model_checks.cpython-310.pyc,, -litellm/proxy/auth/__pycache__/oauth2_check.cpython-310.pyc,, -litellm/proxy/auth/__pycache__/oauth2_proxy_hook.cpython-310.pyc,, -litellm/proxy/auth/__pycache__/rds_iam_token.cpython-310.pyc,, -litellm/proxy/auth/__pycache__/route_checks.cpython-310.pyc,, -litellm/proxy/auth/__pycache__/user_api_key_auth.cpython-310.pyc,, -litellm/proxy/auth/auth_checks.py,sha256=MRKQ_YcVrUmE9eaoiCzhpZlRbMR4yWKeGYRUuJhvSPk,46184 -litellm/proxy/auth/auth_checks_organization.py,sha256=LDXOnn9gQ7D4zbhJF6ah6Mo4Gc9xv26VsSpPF-JxkTw,6460 -litellm/proxy/auth/auth_exception_handler.py,sha256=aWUlZQDdxRS9khmhaFLYXKoormaeM9MZGCPKXlUlwsM,4392 -litellm/proxy/auth/auth_utils.py,sha256=NmolXRj0EoH_1zp9ml2uSkS02XI7v6lqoHZl_XY21fQ,17119 -litellm/proxy/auth/handle_jwt.py,sha256=woWSo3_hkjYmwE0SSJORI3FfNu3-F9yz8w0jI-rW8Ik,34966 -litellm/proxy/auth/litellm_license.py,sha256=njKaNWd-ga0LVq7ibovoywvBw5XbG-AmwAKOOgzUbzE,6033 -litellm/proxy/auth/model_checks.py,sha256=UCJs2xti2G98VUvTEKwILW42FB9WjeB3I2O2kaM5QL8,7118 -litellm/proxy/auth/oauth2_check.py,sha256=LDRdfyp9LQJbIpJbs1K2HwgxIKWVGO5YFRgUuFJhHXM,2934 -litellm/proxy/auth/oauth2_proxy_hook.py,sha256=ViXMvTdDop5g86dYIOG6SsIY7vBf_UBapCBAJUk7nq0,1708 -litellm/proxy/auth/public_key.pem,sha256=KlTCQCWViTHUwzzxCu9KyFCX8YTdnIfGJlx7jiotak4,451 -litellm/proxy/auth/rds_iam_token.py,sha256=05khLciCp396xRXivrDwE-BThiurxiLeBogHEFpjQ5w,6494 -litellm/proxy/auth/route_checks.py,sha256=JwWsNlcx9KHL_EU8H6aaCgeKsBJvIE2jinCCH_gYiD0,11739 -litellm/proxy/auth/user_api_key_auth.py,sha256=HJ-HbKrkDsK0atIVd0UtOtc17B49mbhC1tO-5oD3jiw,46370 -litellm/proxy/batches_endpoints/__pycache__/endpoints.cpython-310.pyc,, -litellm/proxy/batches_endpoints/endpoints.py,sha256=LtQgLkE2oudDo5MniswWp0k74CxqgUjMfh0S_ysmOUk,15810 -litellm/proxy/cached_logo.jpg,sha256=1zH55lRC5bPLvLNPxg-JY3WJvlwZMNlmwx2sjQDDCx0,50535 -litellm/proxy/caching_routes.py,sha256=l6Ft7iRD3WRL5Wl728OJL-hWvPR-KNoGsQ5LRHOUDRQ,7628 -litellm/proxy/common_request_processing.py,sha256=mh5pbVw0wih9m9baBxtzxYE1AzruUZUsMjA12MjIW9g,15528 -litellm/proxy/common_utils/__pycache__/admin_ui_utils.cpython-310.pyc,, -litellm/proxy/common_utils/__pycache__/callback_utils.cpython-310.pyc,, -litellm/proxy/common_utils/__pycache__/debug_utils.cpython-310.pyc,, -litellm/proxy/common_utils/__pycache__/encrypt_decrypt_utils.cpython-310.pyc,, -litellm/proxy/common_utils/__pycache__/http_parsing_utils.cpython-310.pyc,, -litellm/proxy/common_utils/__pycache__/load_config_utils.cpython-310.pyc,, -litellm/proxy/common_utils/__pycache__/openai_endpoint_utils.cpython-310.pyc,, -litellm/proxy/common_utils/__pycache__/proxy_state.cpython-310.pyc,, -litellm/proxy/common_utils/__pycache__/reset_budget_job.cpython-310.pyc,, -litellm/proxy/common_utils/__pycache__/swagger_utils.cpython-310.pyc,, -litellm/proxy/common_utils/admin_ui_utils.py,sha256=5-sbjOrQiueKMltq2hN4Z_bhCRGKFeSxfAr74wbkp98,6568 -litellm/proxy/common_utils/callback_utils.py,sha256=O4e-2jymle19V5QnWxAAVLJUvKHnsiHEAl7zEXM_Hn0,12830 -litellm/proxy/common_utils/debug_utils.py,sha256=x_mHTe_c1azUy5Fv8O8VReG0lOyJQf6_ETbKEXaRTF8,8640 -litellm/proxy/common_utils/encrypt_decrypt_utils.py,sha256=Q37fTzjePKc5CupH2KsuDaG5HJQrqhoLgYg2ka3HMnU,2829 -litellm/proxy/common_utils/html_forms/__pycache__/jwt_display_template.cpython-310.pyc,, -litellm/proxy/common_utils/html_forms/__pycache__/ui_login.cpython-310.pyc,, -litellm/proxy/common_utils/html_forms/jwt_display_template.py,sha256=btUd4MctIolE8qPAQtvSqazaF_cGoTDCjaqsC5LzeIA,8948 -litellm/proxy/common_utils/html_forms/ui_login.py,sha256=D8-5ZUwU_bloHFK7URxxuQ2Un2dQeSxw9yZGx_W3kqI,6446 -litellm/proxy/common_utils/http_parsing_utils.py,sha256=JX13t8uA3H-ejY6xTeVAncNRdxLVRaMHjYi0UIMdTwQ,6384 -litellm/proxy/common_utils/load_config_utils.py,sha256=O70mfNZfj1OJh-YBwtAXsz1eaQJyeTedZz2oqjqmyp0,2840 -litellm/proxy/common_utils/openai_endpoint_utils.py,sha256=RfZHVnRLPUO6utK-C0a4UY-Dik7YVCs47sep_56WCGc,1240 -litellm/proxy/common_utils/proxy_state.py,sha256=H41iDfLOKTu1renuqH9xGYsxJzR-JxxSMDBCnoEml6w,1078 -litellm/proxy/common_utils/reset_budget_job.py,sha256=iq16KVkkBdDBzyvB2YZdYxztalKK0-Yx2n69RvJg_ZQ,15413 -litellm/proxy/common_utils/swagger_utils.py,sha256=6m2QWns4I2bXjr1QXsJFZQJogagpUJo4gZZEklBJ2nA,1322 -litellm/proxy/config_management_endpoints/__pycache__/pass_through_endpoints.cpython-310.pyc,, -litellm/proxy/config_management_endpoints/pass_through_endpoints.py,sha256=YviUGQxoJnFuL7zQppiEtUmueLcyPK7S-vyKZeTHeUE,702 -litellm/proxy/credential_endpoints/__pycache__/endpoints.cpython-310.pyc,, -litellm/proxy/credential_endpoints/endpoints.py,sha256=jWBPPCCvOtA7claOUR_8_qOfkGosU35Ei0kICgNYs2k,11572 -litellm/proxy/custom_prompt_management.py,sha256=GAqe1HgZ0riNbeSTTa_bCUAXiL24KHuRMHYEjnYbw_M,1463 -litellm/proxy/custom_sso.py,sha256=9HmCfTfWwB94bOHdlQMTuRTivx9a7CXPbWoCaIP17Mw,1504 -litellm/proxy/custom_validate.py,sha256=8suWa_bUBr08ghRSwgQq9PYp7_wqHx-g9C0SjdRJJ8I,128 -litellm/proxy/db/__pycache__/base_client.cpython-310.pyc,, -litellm/proxy/db/__pycache__/check_migration.cpython-310.pyc,, -litellm/proxy/db/__pycache__/create_views.cpython-310.pyc,, -litellm/proxy/db/__pycache__/db_spend_update_writer.cpython-310.pyc,, -litellm/proxy/db/__pycache__/dynamo_db.cpython-310.pyc,, -litellm/proxy/db/__pycache__/exception_handler.cpython-310.pyc,, -litellm/proxy/db/__pycache__/log_db_metrics.cpython-310.pyc,, -litellm/proxy/db/__pycache__/prisma_client.cpython-310.pyc,, -litellm/proxy/db/base_client.py,sha256=JAg-ghx1qLNuxSRSn0B6Y_BB7a1ZIINNuvjOTJ_aByQ,1129 -litellm/proxy/db/check_migration.py,sha256=3s-2cLmwG4Fh7VHNsx6kzcK8fqKSrOG4wdQEufiw-hU,3580 -litellm/proxy/db/create_views.py,sha256=pCnxdjWMRjgE-IfG3SkpEzDRhGZ3MSUQ20xnn6UBzyE,7226 -litellm/proxy/db/db_spend_update_writer.py,sha256=LEq_LkuN4nwLi4F98qf67r80yjrqoBVraIy0zm52Lc0,50359 -litellm/proxy/db/db_transaction_queue/__pycache__/base_update_queue.cpython-310.pyc,, -litellm/proxy/db/db_transaction_queue/__pycache__/daily_spend_update_queue.cpython-310.pyc,, -litellm/proxy/db/db_transaction_queue/__pycache__/pod_lock_manager.cpython-310.pyc,, -litellm/proxy/db/db_transaction_queue/__pycache__/redis_update_buffer.cpython-310.pyc,, -litellm/proxy/db/db_transaction_queue/__pycache__/spend_update_queue.cpython-310.pyc,, -litellm/proxy/db/db_transaction_queue/base_update_queue.py,sha256=3b2_w2GZaXyEEnTvOXx1IN5awV3DmDMVxpL2ZNsjoIs,1746 -litellm/proxy/db/db_transaction_queue/daily_spend_update_queue.py,sha256=BZsjRpJwZ8Eg_SyOnZvfBqR7P0tAMqm3GUGxbHodn8U,6086 -litellm/proxy/db/db_transaction_queue/pod_lock_manager.py,sha256=59cxvQH51pTavfN-KjKh6dIDIYFEC2JU4H2496DOJzc,6687 -litellm/proxy/db/db_transaction_queue/redis_update_buffer.py,sha256=OceEBbk1OJVmQ_5Kaz0JXLjwwzUNn1Kjs3KCwOYVXaY,14700 -litellm/proxy/db/db_transaction_queue/spend_update_queue.py,sha256=cY-jp2bQ0V0GEeHR0rkFm872AX29qswTpXOuAJUtlng,8424 -litellm/proxy/db/dynamo_db.py,sha256=7HcN0JzzRKtwsmiqFFz_K6k3MABoICX65ChYkAxd1Gw,2935 -litellm/proxy/db/exception_handler.py,sha256=JWt2nWV1vC1MDz5hc8t516kSjtbJaIBf5F7q7P9J4rM,2053 -litellm/proxy/db/log_db_metrics.py,sha256=rDxyy9-QVasgetHonVJ2WXOWgw8FYgqTOa2wCPiK0iY,4821 -litellm/proxy/db/prisma_client.py,sha256=XPJryMwIzeIHLjAS_2HSPAjysxQCtOwrvc1bApdPMxs,7622 -litellm/proxy/example_config_yaml/__pycache__/custom_auth.cpython-310.pyc,, -litellm/proxy/example_config_yaml/__pycache__/custom_auth_basic.cpython-310.pyc,, -litellm/proxy/example_config_yaml/__pycache__/custom_callbacks.cpython-310.pyc,, -litellm/proxy/example_config_yaml/__pycache__/custom_callbacks1.cpython-310.pyc,, -litellm/proxy/example_config_yaml/__pycache__/custom_guardrail.cpython-310.pyc,, -litellm/proxy/example_config_yaml/__pycache__/custom_handler.cpython-310.pyc,, -litellm/proxy/example_config_yaml/_health_check_test_config.yaml,sha256=DcUpvUly3ASBh57fdv51uZ5Nr7a3o7f7j1sQebILtjQ,512 -litellm/proxy/example_config_yaml/aliases_config.yaml,sha256=mN_iQHMZBv6CWXLF3BAOc-sdRrLKcFnWRbJIDXePXcA,1225 -litellm/proxy/example_config_yaml/azure_config.yaml,sha256=swb4kZv8EN6IfTW8G_uOFqjzXtcMxUpbf7Lz7G_GHS8,747 -litellm/proxy/example_config_yaml/bad_schema.prisma,sha256=QrtfMf8OePRSjR47IUsuIz_MVrrCkGOvGZ3gRL7zmoY,10498 -litellm/proxy/example_config_yaml/custom_auth.py,sha256=TFoYFOLW7m4n8fu1gO7kbA_P6n1sDthcdU-HGZb7Wog,1484 -litellm/proxy/example_config_yaml/custom_auth_basic.py,sha256=NEDMiRTQ2p5Ld6tHHL87blkPVA-I1i6yIi1WwvQfIPc,377 -litellm/proxy/example_config_yaml/custom_callbacks.py,sha256=-Vbqj9faOSsgiKFeG3KFgUEjLqcHjQ31b5fsT5OqXaU,2269 -litellm/proxy/example_config_yaml/custom_callbacks1.py,sha256=Zce_F79CaqkjDPrtBm7m8LkpSdrPI90VK_vn1VHPY-k,1999 -litellm/proxy/example_config_yaml/custom_guardrail.py,sha256=lHHZyFREZ2Kh3XaQ4pzW813KUbEcERsMbRA_CNs_Pso,3815 -litellm/proxy/example_config_yaml/custom_handler.py,sha256=n5-aScxHCLITANajO7rPfLcx2ta8nlYhLtYaMX9qUvw,855 -litellm/proxy/example_config_yaml/disable_schema_update.yaml,sha256=uSLK9oMDTI6gms5hX-zzNa0V2yRMgLVz5ZJEvySFwKY,459 -litellm/proxy/example_config_yaml/enterprise_config.yaml,sha256=TTfqDyoES3Col0-E6UxC6-HMu84ABuezuWGSFzUFTKI,358 -litellm/proxy/example_config_yaml/langfuse_config.yaml,sha256=jkBz0zM8bUEBb_gmHi5P0TuFyC0WYlyGa37-WVRdsAo,181 -litellm/proxy/example_config_yaml/load_balancer.yaml,sha256=hz5tnS6TvE8P-qU3pZ-SspqMB280EtrSwMZvjEca3sg,886 -litellm/proxy/example_config_yaml/multi_instance_simple_config.yaml,sha256=RkHqPFEki5LGqBaDtF2qutReGLnaERNGhiv5iAt5Gas,269 -litellm/proxy/example_config_yaml/oai_misc_config.yaml,sha256=rUMks26ziow75JxdZwMoZ96grII-UELVkOFLDlijaEA,2074 -litellm/proxy/example_config_yaml/opentelemetry_config.yaml,sha256=u7-6jPVmj2Yca7nTeu1ykDZzzdtGKcGj3v5Y557Fc00,192 -litellm/proxy/example_config_yaml/otel_test_config.yaml,sha256=Ba3Hh6fvOVYzHwqiHmdAYrhBtUVU0UgT-DnmmCe7P5c,2639 -litellm/proxy/example_config_yaml/pass_through_config.yaml,sha256=QH6iaaZNm-rJCjyffoH1sR5xwTLp6iP6JmDJSVQuYAM,1019 -litellm/proxy/example_config_yaml/simple_config.yaml,sha256=OBODVvCc0814U8-YTmiwT7C4UkSjLN51Bd0HxDenTVg,88 -litellm/proxy/example_config_yaml/spend_tracking_config.yaml,sha256=upaHRnAZa9BsZmOurRZPyNCWyrfv2gutcvTFFzLoBac,340 -litellm/proxy/example_config_yaml/store_model_db_config.yaml,sha256=YxPerk168RsyXsG3U26GatRHYmPevGnx2a_xrbcckxQ,249 -litellm/proxy/fine_tuning_endpoints/__pycache__/endpoints.cpython-310.pyc,, -litellm/proxy/fine_tuning_endpoints/endpoints.py,sha256=Bkz4pYD0xmrTnyopQkpIukyqoxDHWppHUkcushT9L0w,15760 -litellm/proxy/guardrails/__pycache__/guardrail_endpoints.cpython-310.pyc,, -litellm/proxy/guardrails/__pycache__/guardrail_helpers.cpython-310.pyc,, -litellm/proxy/guardrails/__pycache__/guardrail_initializers.cpython-310.pyc,, -litellm/proxy/guardrails/__pycache__/guardrail_registry.cpython-310.pyc,, -litellm/proxy/guardrails/__pycache__/init_guardrails.cpython-310.pyc,, -litellm/proxy/guardrails/guardrail_endpoints.py,sha256=0y2sKb9kHOK7T4vAG48P4cDEXpYe1tbp6-L6LDCclVc,2342 -litellm/proxy/guardrails/guardrail_helpers.py,sha256=ybo0vTWumNKVPLbPAgTZNv7bd_UAtMbwx7HTdzcC1Q8,4277 -litellm/proxy/guardrails/guardrail_hooks/__pycache__/aim.cpython-310.pyc,, -litellm/proxy/guardrails/guardrail_hooks/__pycache__/aporia_ai.cpython-310.pyc,, -litellm/proxy/guardrails/guardrail_hooks/__pycache__/bedrock_guardrails.cpython-310.pyc,, -litellm/proxy/guardrails/guardrail_hooks/__pycache__/custom_guardrail.cpython-310.pyc,, -litellm/proxy/guardrails/guardrail_hooks/__pycache__/guardrails_ai.cpython-310.pyc,, -litellm/proxy/guardrails/guardrail_hooks/__pycache__/lakera_ai.cpython-310.pyc,, -litellm/proxy/guardrails/guardrail_hooks/__pycache__/presidio.cpython-310.pyc,, -litellm/proxy/guardrails/guardrail_hooks/aim.py,sha256=DYipsZwIrIu7XdJlsKvWgP_eJP2iiJ-99vkqDy7eBtU,9379 -litellm/proxy/guardrails/guardrail_hooks/aporia_ai.py,sha256=4dTNdvlSTevLd2F59IcSQSk0yvldJZ0Om6jeaEXJcJ8,7447 -litellm/proxy/guardrails/guardrail_hooks/bedrock_guardrails.py,sha256=Ofdb4y48j_-TXoCKILnzhuWijlw7zr7tLpB86u-RgsM,11399 -litellm/proxy/guardrails/guardrail_hooks/custom_guardrail.py,sha256=ex4B46JSKG7pFEkUlcDd3sa6Y1t8271N2swVGJwaG7E,3843 -litellm/proxy/guardrails/guardrail_hooks/guardrails_ai.py,sha256=B0Hub28QY2DJRhxJs6Doyt5oNhCsNIkR8_b6wQZLSHs,3777 -litellm/proxy/guardrails/guardrail_hooks/lakera_ai.py,sha256=79XVG6cXe-snZwlCIysPcpo-FedrluNAUOIUhQDeLYA,13227 -litellm/proxy/guardrails/guardrail_hooks/presidio.py,sha256=66iPjLlXd9cZqTF74DrQA_t_6nBTKTsQBS2GU-6Mauo,15594 -litellm/proxy/guardrails/guardrail_initializers.py,sha256=2fngMfZsY0DM-Xz-M3K2isaCUoyiR4ymjJV-4hfG_CU,4572 -litellm/proxy/guardrails/guardrail_registry.py,sha256=NXYvy6UlIxhLv7TeEkQAwa_VijQ9FFLZmvxvs3U9lcM,860 -litellm/proxy/guardrails/init_guardrails.py,sha256=a31wAPfXbHIkE3br-8bmW56XvAJjX4HXbxGtjpDqhbU,6259 -litellm/proxy/health_check.py,sha256=dc3P8EoCAEzEJAvaeT0zt3dygUx19S-beJRHw8wUzyg,5458 -litellm/proxy/health_endpoints/__pycache__/_health_endpoints.cpython-310.pyc,, -litellm/proxy/health_endpoints/_health_endpoints.py,sha256=eP3b3KE4WVl8rP8KloSpPs6pqSKss8lroJAkgqIW7TE,25384 -litellm/proxy/hooks/__init__.py,sha256=vjTszm0-qCC0v6IhTUwcSuoN12Yx8F6l6XDfeDxQC-w,1077 -litellm/proxy/hooks/__pycache__/__init__.cpython-310.pyc,, -litellm/proxy/hooks/__pycache__/azure_content_safety.cpython-310.pyc,, -litellm/proxy/hooks/__pycache__/batch_redis_get.cpython-310.pyc,, -litellm/proxy/hooks/__pycache__/cache_control_check.cpython-310.pyc,, -litellm/proxy/hooks/__pycache__/dynamic_rate_limiter.cpython-310.pyc,, -litellm/proxy/hooks/__pycache__/key_management_event_hooks.cpython-310.pyc,, -litellm/proxy/hooks/__pycache__/managed_files.cpython-310.pyc,, -litellm/proxy/hooks/__pycache__/max_budget_limiter.cpython-310.pyc,, -litellm/proxy/hooks/__pycache__/model_max_budget_limiter.cpython-310.pyc,, -litellm/proxy/hooks/__pycache__/parallel_request_limiter.cpython-310.pyc,, -litellm/proxy/hooks/__pycache__/prompt_injection_detection.cpython-310.pyc,, -litellm/proxy/hooks/__pycache__/proxy_track_cost_callback.cpython-310.pyc,, -litellm/proxy/hooks/azure_content_safety.py,sha256=M-wkBrQLlPiud30WrRtRK2ZAE3OfHICIAToFCPL3DnE,5640 -litellm/proxy/hooks/batch_redis_get.py,sha256=fZJRZ5GcXHlZV0kkuoloAWZkDP2NTcUlmYQt87Q2UdM,5990 -litellm/proxy/hooks/cache_control_check.py,sha256=yfLKzT3fYycXvAGCXFK8mWoCDnZcXJTQA7wP51nzr2M,2117 -litellm/proxy/hooks/dynamic_rate_limiter.py,sha256=-yYFOvuVa8dWmvgec0fS2UKhNZarKkBbjnvH_TWaT-M,12019 -litellm/proxy/hooks/example_presidio_ad_hoc_recognizer.json,sha256=VZLbOsMKjmQRdigSjZ3Rn5PJiizWV0If4_kGq_gH9DE,756 -litellm/proxy/hooks/key_management_event_hooks.py,sha256=JN5bVGaZDhR-Qbe8H-_MnTq1jW3SQi9ROe3z2xjxPqU,13143 -litellm/proxy/hooks/managed_files.py,sha256=ON0-jrvq_o0PoPs9IOknL9WAi40drWQ1axOStjNVZ5w,15498 -litellm/proxy/hooks/max_budget_limiter.py,sha256=u5So9u4OylxmracwpoKsWc98tee5ZcSX_4AEHiBeXhI,1637 -litellm/proxy/hooks/model_max_budget_limiter.py,sha256=eGSUEe1LFzV2hnHo56LXC0p4po2Ud0r2ifVy55ZNsLg,7876 -litellm/proxy/hooks/parallel_request_limiter.py,sha256=0W_Qnz6-PQYvtjgE-vU5j-GtMEQc0dGLUSbnxevYZVM,35438 -litellm/proxy/hooks/prompt_injection_detection.py,sha256=E4F1GwNeaFrNWpHDhgZD0pAWGINZixUxy1mleKwySgg,10493 -litellm/proxy/hooks/proxy_track_cost_callback.py,sha256=0qD71cDjaT8PoO-FPJhO6eKNInehSKtevunGkzT8Q-w,10703 -litellm/proxy/lambda.py,sha256=h_06oqJhK3tkvnKOmxe7VLtPuIJIsosJE07BFXzF7sQ,107 -litellm/proxy/litellm_pre_call_utils.py,sha256=BBFNgxc-6WzY5GVTFQIW4OMoYr786e2ZsKrfSqy73Is,32856 -litellm/proxy/llamaguard_prompt.txt,sha256=tCel8OPpD7IybjAulUqEg4QhJBdXKGThiv6J4DoKJFk,3300 -litellm/proxy/logo.jpg,sha256=ZnPgg_2nBqNuMuqW2ZSrWNISVaK6HiSuNB4e5xttQto,24694 -litellm/proxy/management_endpoints/__pycache__/budget_management_endpoints.cpython-310.pyc,, -litellm/proxy/management_endpoints/__pycache__/common_daily_activity.cpython-310.pyc,, -litellm/proxy/management_endpoints/__pycache__/common_utils.cpython-310.pyc,, -litellm/proxy/management_endpoints/__pycache__/customer_endpoints.cpython-310.pyc,, -litellm/proxy/management_endpoints/__pycache__/internal_user_endpoints.cpython-310.pyc,, -litellm/proxy/management_endpoints/__pycache__/key_management_endpoints.cpython-310.pyc,, -litellm/proxy/management_endpoints/__pycache__/model_management_endpoints.cpython-310.pyc,, -litellm/proxy/management_endpoints/__pycache__/organization_endpoints.cpython-310.pyc,, -litellm/proxy/management_endpoints/__pycache__/sso_helper_utils.cpython-310.pyc,, -litellm/proxy/management_endpoints/__pycache__/tag_management_endpoints.cpython-310.pyc,, -litellm/proxy/management_endpoints/__pycache__/team_callback_endpoints.cpython-310.pyc,, -litellm/proxy/management_endpoints/__pycache__/team_endpoints.cpython-310.pyc,, -litellm/proxy/management_endpoints/__pycache__/types.cpython-310.pyc,, -litellm/proxy/management_endpoints/__pycache__/ui_sso.cpython-310.pyc,, -litellm/proxy/management_endpoints/budget_management_endpoints.py,sha256=ttgyuOOR7ING9fg6uaN5nRQ7h2pNLwNHXVNAmvYj3I0,9255 -litellm/proxy/management_endpoints/common_daily_activity.py,sha256=v--WMNM-vr_nF_bCdibWcxWuKtySUttveSUuY6TFj_U,10464 -litellm/proxy/management_endpoints/common_utils.py,sha256=j3Up1N0SaZcaGoBRNKXveRF98l8FQCLZlZV1bY5P6Zg,1432 -litellm/proxy/management_endpoints/customer_endpoints.py,sha256=GVeKNPTiqzrdiMOjXutDSLBps_iyywQsAKec7aHaVY8,21118 -litellm/proxy/management_endpoints/internal_user_endpoints.py,sha256=t0UPYbDzEDQro1O3Tpa12VnAw1wvYmK712_1lfTc9rc,57430 -litellm/proxy/management_endpoints/key_management_endpoints.py,sha256=NDY0J7kLqrLEefZCb_9NI6v7Cwz41TTKPUnK7PWPcn8,100022 -litellm/proxy/management_endpoints/model_management_endpoints.py,sha256=MWfBy7kzztneF43ivDwKwRF9pF-wwGgV-n_NeRA9fP4,30907 -litellm/proxy/management_endpoints/organization_endpoints.py,sha256=JxilvjFV58i8z_84MAuK6Rv8TyoH-U0uK3XZBBtpReM,29061 -litellm/proxy/management_endpoints/scim/README_SCIM.md,sha256=IOHah2hqxQ0Pgg2fGdANto_2t6NIqOPppV6a4WuQ-SY,2990 -litellm/proxy/management_endpoints/scim/__pycache__/scim_transformations.cpython-310.pyc,, -litellm/proxy/management_endpoints/scim/__pycache__/scim_v2.cpython-310.pyc,, -litellm/proxy/management_endpoints/scim/scim_transformations.py,sha256=mRFzxwskT_OUrZa4mrYwlmp2pBps-tbppo49-JrmCO8,5587 -litellm/proxy/management_endpoints/scim/scim_v2.py,sha256=ex7IQ0L0eNyY9--8hT91dRKezBKUajlbdS59xJ21nck,24061 -litellm/proxy/management_endpoints/sso_helper_utils.py,sha256=qb2qIFNAVCeJXr3RGNrlR-GZKIppJZkIlnLhiQSIZh4,601 -litellm/proxy/management_endpoints/tag_management_endpoints.py,sha256=3r5lHARYb3PV1GhdoKX_G1S3HcvrjS4QsRsBw_npd-k,13893 -litellm/proxy/management_endpoints/team_callback_endpoints.py,sha256=Oe7g9R3UBnjsI5UMfewzVsP0Fv5bOMP4Kugzu2UTamY,15557 -litellm/proxy/management_endpoints/team_endpoints.py,sha256=LHEmx7Mxx1P-GNmsRyTdmhm7YC64Ut0djJvhto1MXPE,77015 -litellm/proxy/management_endpoints/types.py,sha256=hMQffPXPNdFFtsG8H9BWkCKp_eKO7FWFG_-qQflEBTc,225 -litellm/proxy/management_endpoints/ui_sso.py,sha256=Noq7KGv62zfFoIRmKUayJYRBbDbwP0RayR-c_OphkKs,57050 -litellm/proxy/management_helpers/__pycache__/audit_logs.cpython-310.pyc,, -litellm/proxy/management_helpers/__pycache__/team_member_permission_checks.cpython-310.pyc,, -litellm/proxy/management_helpers/__pycache__/utils.cpython-310.pyc,, -litellm/proxy/management_helpers/audit_logs.py,sha256=bnHxCCl3Vk0-prS41o_0RjQE8rMcesMUpEZFXGvyVMk,2968 -litellm/proxy/management_helpers/team_member_permission_checks.py,sha256=dXwAktQQD7HLKci2tLeAoZ39gVQ4QVR_jlG1bCtZaDg,6176 -litellm/proxy/management_helpers/utils.py,sha256=pW27Z6oSF7IIkAvT73FfUCoM8UO5oP2RuXMy8NHXzbo,14265 -litellm/proxy/mcp_tools.py,sha256=Z4PnnbVZ6qrV6QO0ZgQcdz5RRxBiIkz5mPJUwHmeYcU,1036 -litellm/proxy/middleware/__pycache__/prometheus_auth_middleware.cpython-310.pyc,, -litellm/proxy/middleware/prometheus_auth_middleware.py,sha256=H4Y9UNFAOfhC15YfdaMpqyM057UEKEDNtdvv_Fw-PG8,2200 -litellm/proxy/model_config.yaml,sha256=RDjUCXHG9kZoeJLqCDyApT5F-sYyyK3PpH1io6j352A,320 -litellm/proxy/openai_files_endpoints/__pycache__/files_endpoints.cpython-310.pyc,, -litellm/proxy/openai_files_endpoints/files_endpoints.py,sha256=Rgq1TyT4pjRw1-DMa98rF_3-I7unGwA3oufedZme0_Q,31229 -litellm/proxy/openapi.json,sha256=MJrfO9l1MFZmvPnXC77LzUJojMwTkAiFU4whrntKA-4,7163 -litellm/proxy/pass_through_endpoints/__pycache__/common_utils.cpython-310.pyc,, -litellm/proxy/pass_through_endpoints/__pycache__/llm_passthrough_endpoints.cpython-310.pyc,, -litellm/proxy/pass_through_endpoints/__pycache__/pass_through_endpoints.cpython-310.pyc,, -litellm/proxy/pass_through_endpoints/__pycache__/passthrough_endpoint_router.cpython-310.pyc,, -litellm/proxy/pass_through_endpoints/__pycache__/streaming_handler.cpython-310.pyc,, -litellm/proxy/pass_through_endpoints/__pycache__/success_handler.cpython-310.pyc,, -litellm/proxy/pass_through_endpoints/common_utils.py,sha256=1gVWXbDvjuiZ2qMjRT396rGFsDICeVOoxYZvoMXOKNA,501 -litellm/proxy/pass_through_endpoints/llm_passthrough_endpoints.py,sha256=QEFbXmJYoKaS3fwvQF3y3l_kjqEMp_W7qZEoz-DjdSM,31976 -litellm/proxy/pass_through_endpoints/llm_provider_handlers/__pycache__/anthropic_passthrough_logging_handler.cpython-310.pyc,, -litellm/proxy/pass_through_endpoints/llm_provider_handlers/__pycache__/assembly_passthrough_logging_handler.cpython-310.pyc,, -litellm/proxy/pass_through_endpoints/llm_provider_handlers/__pycache__/base_passthrough_logging_handler.cpython-310.pyc,, -litellm/proxy/pass_through_endpoints/llm_provider_handlers/__pycache__/cohere_passthrough_logging_handler.cpython-310.pyc,, -litellm/proxy/pass_through_endpoints/llm_provider_handlers/__pycache__/vertex_passthrough_logging_handler.cpython-310.pyc,, -litellm/proxy/pass_through_endpoints/llm_provider_handlers/anthropic_passthrough_logging_handler.py,sha256=X4aVWesQDKb7p_4teTL0BFCRI5v-SbupK2nsDS-ZyjE,8068 -litellm/proxy/pass_through_endpoints/llm_provider_handlers/assembly_passthrough_logging_handler.py,sha256=_QaQmJdi_aF8AF9We3gMhLe2HU95YXxkzyExWPWSVeo,11416 -litellm/proxy/pass_through_endpoints/llm_provider_handlers/base_passthrough_logging_handler.py,sha256=z2Z8uuP5vOnQY4JWJrJVODxald8hVmozblpVMKkPktQ,7610 -litellm/proxy/pass_through_endpoints/llm_provider_handlers/cohere_passthrough_logging_handler.py,sha256=aesCJ1jBxrhrA9iowZv5QreXXXGL54kq5mTJQVmSCrs,2270 -litellm/proxy/pass_through_endpoints/llm_provider_handlers/vertex_passthrough_logging_handler.py,sha256=WrjcPSF0_CfEsOn02d5WulK83z-vT-zex-R3I3fuFiA,9499 -litellm/proxy/pass_through_endpoints/pass_through_endpoints.py,sha256=gF8PodsuQPCCqRa3xyZZJkgHkGWBF9EzPVpBRwgk_EI,40161 -litellm/proxy/pass_through_endpoints/passthrough_endpoint_router.py,sha256=bo3V5ex9OuArDoHxNjf2ShN8KU5WhziDMUwFjNNGsn4,7162 -litellm/proxy/pass_through_endpoints/streaming_handler.py,sha256=X2-lesJuXES3mGiJxju-NVQ5cHoXf3C17fgrcyxRRAc,6075 -litellm/proxy/pass_through_endpoints/success_handler.py,sha256=41nU7UJPq8a9KAYavcWZAY4q3QLYBPyVEcV5b7-oVNw,7756 -litellm/proxy/post_call_rules.py,sha256=bbnqX3BXhKjvbRN6LdZIwndKMCh88i4a9BXkTzsaHVk,359 -litellm/proxy/prisma_migration.py,sha256=hdG-gU7K8TatUypeIZNE1mWkSoEx7c4DvT8UYeFdMWA,3853 -litellm/proxy/proxy_cli.py,sha256=fQTNM5mRhRm9aY2l7LUgZmwliLzWTRlU4Qfva5gJziQ,26793 -litellm/proxy/proxy_config.yaml,sha256=zg4EdGdIbeJUH9xEPDaV6YRQdZRoNdPGAftwE8HEDDI,545 -litellm/proxy/proxy_server.py,sha256=NielEc9HilikBoSk398zoPqRdpAxTlp5HZemSc7HnqQ,302499 -litellm/proxy/rerank_endpoints/__pycache__/endpoints.cpython-310.pyc,, -litellm/proxy/rerank_endpoints/endpoints.py,sha256=ZUXgvKP2UVvVYYk9UrgkDLEaE4y3WDWO4fnP9IF_V04,4189 -litellm/proxy/response_api_endpoints/__pycache__/endpoints.cpython-310.pyc,, -litellm/proxy/response_api_endpoints/endpoints.py,sha256=IWyt8ejAaRELn6Ym7K-ZCDhnyHmEXxGZ-jSI-Q-Llf8,4766 -litellm/proxy/route_llm_request.py,sha256=DqSm04dIj4XmA4C1Xty1gGHoiU8o7DUiky3_ohzwer0,3871 -litellm/proxy/schema.prisma,sha256=OjZMGUPCBAqbZroj_b5teKvWwWzkC4mtU_RPsaVUiR8,16558 -litellm/proxy/spend_tracking/__pycache__/spend_management_endpoints.cpython-310.pyc,, -litellm/proxy/spend_tracking/__pycache__/spend_tracking_utils.cpython-310.pyc,, -litellm/proxy/spend_tracking/spend_management_endpoints.py,sha256=FyD19otTwxwBzPMrh17pdYDt2AuIV3pejuSAHA1SCsM,94755 -litellm/proxy/spend_tracking/spend_tracking_utils.py,sha256=5-2Ot1g-F8IFCD1HRR5qvf3bfIdUwATwOLRbpS7KuxI,16173 -litellm/proxy/start.sh,sha256=qFUFqvhcEIMyL3Bp9vtAtLvY0zjyLw6lHTocHqpLE5w,32 -litellm/proxy/swagger/favicon.png,sha256=0W9yz1onc-ukmcx_PbGSPG9fc96ZD3OeOgWAaq_sFbc,5043 -litellm/proxy/swagger/swagger-ui-bundle.js,sha256=xQuUu8TwI5Qyb7eu0fT7aTs2d_Sz0zRODWExgIy_KB8,1426050 -litellm/proxy/swagger/swagger-ui.css,sha256=jzPZlgJTFwSdSphk9CHqsrKiR4cvOIAm-pTGVJEyWec,152072 -litellm/proxy/types_utils/README.md,sha256=WSVas5L_WUcH_Ef0H3dEoYHFGfaBVQ6ODzFq-wdnMqY,36 -litellm/proxy/types_utils/__pycache__/utils.cpython-310.pyc,, -litellm/proxy/types_utils/utils.py,sha256=7u4J7Fr_A91MHw6vIRlM6B-tHM0wZiipuQg2W3CHqnU,3163 -litellm/proxy/ui_crud_endpoints/__pycache__/proxy_setting_endpoints.cpython-310.pyc,, -litellm/proxy/ui_crud_endpoints/proxy_setting_endpoints.py,sha256=vYhOmNjH0cR9xFR9DZPJYAOcTBjN_MON5VoA12lWBZM,8771 -litellm/proxy/utils.py,sha256=ZxG4H5T6LTeaRvV4c9x0qQ_tkOA1K_T2mbObiGiNKwQ,110276 -litellm/proxy/vertex_ai_endpoints/__pycache__/langfuse_endpoints.cpython-310.pyc,, -litellm/proxy/vertex_ai_endpoints/langfuse_endpoints.py,sha256=3CkiX26Ud9t867anA0wJOAggxT7dUCUFaQC2Q4nVi7E,4417 -litellm/py.typed,sha256=bKPUECNwNtN5PZk1JYgrtM4QFbfIniqsIVGDL0oKMuQ,129 -litellm/realtime_api/README.md,sha256=rDlor8w3E0Dt74wXuwgPvS_hns4vDDC_TY-Vf5aYgRA,65 -litellm/realtime_api/__pycache__/main.cpython-310.pyc,, -litellm/realtime_api/main.py,sha256=XMu_FJJC7i1XysftfA2jWCGvDncqzVl5YuQmgK1xF8Q,4532 -litellm/rerank_api/__pycache__/main.cpython-310.pyc,, -litellm/rerank_api/__pycache__/rerank_utils.cpython-310.pyc,, -litellm/rerank_api/main.py,sha256=kbBrATN4D5jbMaWMnxoNCMgFJ6TbX9UzgaWnWcwVZiU,13020 -litellm/rerank_api/rerank_utils.py,sha256=iwKTpiOWpG26kiDbjXjj52qF9GftzHZRLJneyHrli1g,1782 -litellm/responses/__pycache__/main.cpython-310.pyc,, -litellm/responses/__pycache__/streaming_iterator.cpython-310.pyc,, -litellm/responses/__pycache__/utils.cpython-310.pyc,, -litellm/responses/litellm_completion_transformation/__pycache__/handler.cpython-310.pyc,, -litellm/responses/litellm_completion_transformation/__pycache__/session_handler.cpython-310.pyc,, -litellm/responses/litellm_completion_transformation/__pycache__/streaming_iterator.cpython-310.pyc,, -litellm/responses/litellm_completion_transformation/__pycache__/transformation.cpython-310.pyc,, -litellm/responses/litellm_completion_transformation/handler.py,sha256=v2ckP6n-GGF4zMvJ13de5gVyd763LMZWn98FTYXDky4,4319 -litellm/responses/litellm_completion_transformation/session_handler.py,sha256=O689Cm2iyNI-L_AdMlI0SiqeX0eOh5KLtD_Z4m3WXqw,2026 -litellm/responses/litellm_completion_transformation/streaming_iterator.py,sha256=XFAyf_JNl0Lm6KwgRP2-6WnKe9yOiDKY6EUi4w3WMH8,6040 -litellm/responses/litellm_completion_transformation/transformation.py,sha256=sNnC51j1kdBQbDjG0U74O7SeQwrEcnqeup9N6tue7aY,25699 -litellm/responses/main.py,sha256=dGfeSfbi9xWetNfHTvxWnl4MpMdhDRQ9Y_GKqnJZZS0,16484 -litellm/responses/streaming_iterator.py,sha256=Hi1aOgFcJ3OdQKydF6SDukyF3vsGT8V3HirHAvOuMOs,11133 -litellm/responses/utils.py,sha256=UQElW8FH83ecrDwHPJ2jTZGMILVG7eE11qNdbY9i3bY,7442 -litellm/router.py,sha256=n3Ypowraaj-scyfyxYkbvZXl2ufhdbLt_24nPOG1IYM,255173 -litellm/router_strategy/__pycache__/base_routing_strategy.cpython-310.pyc,, -litellm/router_strategy/__pycache__/budget_limiter.cpython-310.pyc,, -litellm/router_strategy/__pycache__/least_busy.cpython-310.pyc,, -litellm/router_strategy/__pycache__/lowest_cost.cpython-310.pyc,, -litellm/router_strategy/__pycache__/lowest_latency.cpython-310.pyc,, -litellm/router_strategy/__pycache__/lowest_tpm_rpm.cpython-310.pyc,, -litellm/router_strategy/__pycache__/lowest_tpm_rpm_v2.cpython-310.pyc,, -litellm/router_strategy/__pycache__/simple_shuffle.cpython-310.pyc,, -litellm/router_strategy/__pycache__/tag_based_routing.cpython-310.pyc,, -litellm/router_strategy/base_routing_strategy.py,sha256=jsR9gf0PQbWqbQJTFE6-WfoyHSbvZA1irBN81lDNHcA,7539 -litellm/router_strategy/budget_limiter.py,sha256=fx_Kcos_Eo4VwszUXyjqxuFYcyxLMc0oZ8DEQIpu0_8,34246 -litellm/router_strategy/least_busy.py,sha256=l1HaDaRqfHnd4H8Ftn0kgOIte8zVwJqOFxuFIX7ZnvE,9709 -litellm/router_strategy/lowest_cost.py,sha256=Eu8OS8N-h5dhDv2ih0tqW5y5mp1hiCvnpy7kZOt4P7Y,12584 -litellm/router_strategy/lowest_latency.py,sha256=vZZq9PrpVgoW55shOUKCRBPCEtLCOma9OJXai6f7-CA,22944 -litellm/router_strategy/lowest_tpm_rpm.py,sha256=7Fk7GVJopFjl0QE_15PLQTgsEvl-t_UCmu-_zJGw_RA,9163 -litellm/router_strategy/lowest_tpm_rpm_v2.py,sha256=vk3cRxE47C6MtT6iVMw41Mi0q-kA8slI3afqPg-5Vqo,27450 -litellm/router_strategy/simple_shuffle.py,sha256=w54uAE7wans0FX4SwqFoCMGfbjubasLLoYjyEvZz_B8,4245 -litellm/router_strategy/tag_based_routing.py,sha256=J_M9g_Fm2WqBrrX79ymJ6eJ_V_BQ399L_8CePtwPHA0,4880 -litellm/router_utils/__pycache__/add_retry_fallback_headers.cpython-310.pyc,, -litellm/router_utils/__pycache__/batch_utils.cpython-310.pyc,, -litellm/router_utils/__pycache__/client_initalization_utils.cpython-310.pyc,, -litellm/router_utils/__pycache__/clientside_credential_handler.cpython-310.pyc,, -litellm/router_utils/__pycache__/common_utils.cpython-310.pyc,, -litellm/router_utils/__pycache__/cooldown_cache.cpython-310.pyc,, -litellm/router_utils/__pycache__/cooldown_callbacks.cpython-310.pyc,, -litellm/router_utils/__pycache__/cooldown_handlers.cpython-310.pyc,, -litellm/router_utils/__pycache__/fallback_event_handlers.cpython-310.pyc,, -litellm/router_utils/__pycache__/get_retry_from_policy.cpython-310.pyc,, -litellm/router_utils/__pycache__/handle_error.cpython-310.pyc,, -litellm/router_utils/__pycache__/pattern_match_deployments.cpython-310.pyc,, -litellm/router_utils/__pycache__/prompt_caching_cache.cpython-310.pyc,, -litellm/router_utils/__pycache__/response_headers.cpython-310.pyc,, -litellm/router_utils/add_retry_fallback_headers.py,sha256=iBiL1oFLog-X96tcQsihvr_nRf4JwHksJ4BfY_Ecx9U,1885 -litellm/router_utils/batch_utils.py,sha256=V2-pcO_o0gLZy7lnw3HvB7isosgt3HDYpi4nut9hjqo,2287 -litellm/router_utils/client_initalization_utils.py,sha256=Uvh_1DIkV1IRR2H0Hbs1J_j2agGZfmpfdjL_JQqZ_d4,1307 -litellm/router_utils/clientside_credential_handler.py,sha256=QiKTTeg5VFjphUiTQM_S3NE0OVWtqzZpxdiUwPxiokU,938 -litellm/router_utils/common_utils.py,sha256=A8o5eJ6WNjZ6rgBrXFGnoIjTxAVF_o6c7YH8w0gedNs,434 -litellm/router_utils/cooldown_cache.py,sha256=5vloiGxImNyJkAQpc5ZsBW6iM8yOSvg3FhQ1CEhZCcg,6169 -litellm/router_utils/cooldown_callbacks.py,sha256=mNMgMMn7NeBzsJJmspnTY16dW6GPUcUViaA-XMVTKnA,3096 -litellm/router_utils/cooldown_handlers.py,sha256=fAMsY_iIM_nqGE82HnI7z5Gdk1Mfso6sTKYgF4bNv6o,14264 -litellm/router_utils/fallback_event_handlers.py,sha256=PG0MTeKG5VGazPz5KTTLvxDxBQsqZwRS2BsdwMP9sak,11686 -litellm/router_utils/get_retry_from_policy.py,sha256=RDoTzl7_6aMaqkvxN4FxCi3m01-Lkb204iDJOwFwWpw,2254 -litellm/router_utils/handle_error.py,sha256=fV2Hj0bw9zI_pwtEg9yu49LPItgIABYqVU_5nh1kqyo,3080 -litellm/router_utils/pattern_match_deployments.py,sha256=lB9C9D1Tzfs3WuF87PJBa9Ik3-MnzL8bfS7oG8yTuzM,8798 -litellm/router_utils/pre_call_checks/__pycache__/prompt_caching_deployment_check.cpython-310.pyc,, -litellm/router_utils/pre_call_checks/__pycache__/responses_api_deployment_check.cpython-310.pyc,, -litellm/router_utils/pre_call_checks/prompt_caching_deployment_check.py,sha256=5Aq1ZwvTiGh7sXLiDSyA0WfBuoUSNc9YjfRE5JHOaPU,3675 -litellm/router_utils/pre_call_checks/responses_api_deployment_check.py,sha256=7Fu3qV04sH4ie4G2NeT7RO2263myAjyiqUCQU7QK7W8,1684 -litellm/router_utils/prompt_caching_cache.py,sha256=6kOsRGIVBXtzTjpbdBDTltQ5VmDhJduunaJ3YHpjOT8,5755 -litellm/router_utils/response_headers.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -litellm/router_utils/router_callbacks/__pycache__/track_deployment_metrics.cpython-310.pyc,, -litellm/router_utils/router_callbacks/track_deployment_metrics.py,sha256=93Ys2NamfsELx4eNXx0yyYWMrJkNdGdmSeSJ2rDFYeA,2121 -litellm/scheduler.py,sha256=vUlPEn7vQeIhbCzbhdnIptlHUOOaq84hxfcwSqwQSLo,4562 -litellm/secret_managers/Readme.md,sha256=6r8syZ7qgTWqM68lzcicfv3TtUYWDNMps4ph0thavwo,120 -litellm/secret_managers/__pycache__/aws_secret_manager.cpython-310.pyc,, -litellm/secret_managers/__pycache__/aws_secret_manager_v2.cpython-310.pyc,, -litellm/secret_managers/__pycache__/base_secret_manager.cpython-310.pyc,, -litellm/secret_managers/__pycache__/get_azure_ad_token_provider.cpython-310.pyc,, -litellm/secret_managers/__pycache__/google_kms.cpython-310.pyc,, -litellm/secret_managers/__pycache__/google_secret_manager.cpython-310.pyc,, -litellm/secret_managers/__pycache__/hashicorp_secret_manager.cpython-310.pyc,, -litellm/secret_managers/__pycache__/main.cpython-310.pyc,, -litellm/secret_managers/aws_secret_manager.py,sha256=tQs4Z1FLuakA9vdAMGYbA1XiP3VXjV3aawi0OY1npLM,4648 -litellm/secret_managers/aws_secret_manager_v2.py,sha256=asYDJVkYVH7BZjhV9xuhhb_Gswb3yWj2Wq1oOhqijFk,12606 -litellm/secret_managers/base_secret_manager.py,sha256=XqsJd5ZbMaC7AzCrjNv1PjYlSZjkLguSKwcvpJ6heP0,6222 -litellm/secret_managers/get_azure_ad_token_provider.py,sha256=8djZDL1y-iLj-VFDFoxGbtEWOfiglB6NRJpN-bNtzV4,1491 -litellm/secret_managers/google_kms.py,sha256=8VgSLAThq_ylEZ_8AWcIuSD_S5QQzwwAk4TFETjz9bM,1292 -litellm/secret_managers/google_secret_manager.py,sha256=T2I8FozRMGGfUuIGRerjP-xvM_35N8S4yMYWe5kr9eE,4886 -litellm/secret_managers/hashicorp_secret_manager.py,sha256=z0oweGnrzq97ce7XwX_QPlQmByUvUm0lOSx3lkWM-nQ,12044 -litellm/secret_managers/main.py,sha256=vBav4rKdboHS6XiwP5z72c4RasK30taIDf0MrNRORzs,15415 -litellm/timeout.py,sha256=0PmQsBdydAjV3NP6YCipt-aSMlwNTf31o_BmnCz-92I,4314 -litellm/types/__pycache__/adapter.cpython-310.pyc,, -litellm/types/__pycache__/caching.cpython-310.pyc,, -litellm/types/__pycache__/completion.cpython-310.pyc,, -litellm/types/__pycache__/embedding.cpython-310.pyc,, -litellm/types/__pycache__/files.cpython-310.pyc,, -litellm/types/__pycache__/fine_tuning.cpython-310.pyc,, -litellm/types/__pycache__/guardrails.cpython-310.pyc,, -litellm/types/__pycache__/rerank.cpython-310.pyc,, -litellm/types/__pycache__/router.cpython-310.pyc,, -litellm/types/__pycache__/scheduler.cpython-310.pyc,, -litellm/types/__pycache__/services.cpython-310.pyc,, -litellm/types/__pycache__/tag_management.cpython-310.pyc,, -litellm/types/__pycache__/utils.cpython-310.pyc,, -litellm/types/adapter.py,sha256=VLUBbZaxxVWPTzOVbks1x4xSm1icGSW3b7abid_I3y0,222 -litellm/types/caching.py,sha256=t1mVup8piP0tSsIzfuOFjNU49fL75fCdIHaOCHB5ATg,1978 -litellm/types/completion.py,sha256=wiu4Are1ZbIwZLYGKZHC4Vq0ZXOreUCws0lNFysPmsU,5945 -litellm/types/embedding.py,sha256=-I4LM4kGCRwNtw0SiSngM8OePTRnrIjIiwNfwGY2slg,615 -litellm/types/files.py,sha256=UtvxVnYJ_vd9RVyPAsGjugOAai7dkEmE9JdvKL5vhrM,7277 -litellm/types/fine_tuning.py,sha256=9TQhXzi6Ze7XovufB9ezIVPrRbRJTmW40MU067-bHjc,165 -litellm/types/guardrails.py,sha256=PtL8btNPGPmKBdM0KREKEXJ9ZVpJVpxSNDauK1oe2Kc,4117 -litellm/types/integrations/__pycache__/anthropic_cache_control_hook.cpython-310.pyc,, -litellm/types/integrations/__pycache__/argilla.cpython-310.pyc,, -litellm/types/integrations/__pycache__/arize.cpython-310.pyc,, -litellm/types/integrations/__pycache__/arize_phoenix.cpython-310.pyc,, -litellm/types/integrations/__pycache__/base_health_check.cpython-310.pyc,, -litellm/types/integrations/__pycache__/datadog.cpython-310.pyc,, -litellm/types/integrations/__pycache__/datadog_llm_obs.cpython-310.pyc,, -litellm/types/integrations/__pycache__/gcs_bucket.cpython-310.pyc,, -litellm/types/integrations/__pycache__/langfuse.cpython-310.pyc,, -litellm/types/integrations/__pycache__/langsmith.cpython-310.pyc,, -litellm/types/integrations/__pycache__/pagerduty.cpython-310.pyc,, -litellm/types/integrations/__pycache__/prometheus.cpython-310.pyc,, -litellm/types/integrations/__pycache__/slack_alerting.cpython-310.pyc,, -litellm/types/integrations/anthropic_cache_control_hook.py,sha256=eLI13LcUCS03f1UgbTUFvZ3bAoKzzdsnSsOkVNbcARQ,579 -litellm/types/integrations/argilla.py,sha256=5ZI_6BDBdTJjkj4hFM41WXWnKSERIqc0x9XwXfyg688,441 -litellm/types/integrations/arize.py,sha256=r9bIi9BVLi6dVsBa6plPSTTYa8DIQ0SWy_0tNeLGWa4,325 -litellm/types/integrations/arize_phoenix.py,sha256=5b0_FsQKKSCJd5E5JzJvVZqde_09mVdDcb_n5NxhmBc,237 -litellm/types/integrations/base_health_check.py,sha256=hA0anYpSWRm5MAnEwenbi_DNQ9hl9DY_LIr6gr5eCGc,174 -litellm/types/integrations/datadog.py,sha256=sLyvciVKrVkoCc2nxWQbO7hfBf6EYHUjCm-CxCAwWsY,730 -litellm/types/integrations/datadog_llm_obs.py,sha256=9Zm7AsIVVsyPMGoIEVwon2kygyWaBUlySuw1X9OlE_k,1318 -litellm/types/integrations/gcs_bucket.py,sha256=iMI8OC97CyojKgHwrqEI8qbwyk8f62tjRRhfxyad3IU,718 -litellm/types/integrations/langfuse.py,sha256=62eGBD0cDR9wjSPBBPqFGjz-_gtUYF26pf6PDcCU4jc,188 -litellm/types/integrations/langsmith.py,sha256=fF6YZSqHUoxicOXU1-lnWc6TceXB9PIkpp5_rjzkzZA,1771 -litellm/types/integrations/pagerduty.py,sha256=BKgwbaKqRRwvtoqSISh1aCoYOrgMqda0mLWbleQ1rso,1934 -litellm/types/integrations/prometheus.py,sha256=HxVVF4fvvF3S_SjBgL8p-Vwp7bwdZBzlZvoxJK6npVQ,9524 -litellm/types/integrations/slack_alerting.py,sha256=vtHJI3R6IeWilaPb3_kbDCKC1H9d1EODZnr8QAGKqZs,6243 -litellm/types/llms/__pycache__/anthropic.cpython-310.pyc,, -litellm/types/llms/__pycache__/azure.cpython-310.pyc,, -litellm/types/llms/__pycache__/azure_ai.cpython-310.pyc,, -litellm/types/llms/__pycache__/base.cpython-310.pyc,, -litellm/types/llms/__pycache__/bedrock.cpython-310.pyc,, -litellm/types/llms/__pycache__/cohere.cpython-310.pyc,, -litellm/types/llms/__pycache__/custom_http.cpython-310.pyc,, -litellm/types/llms/__pycache__/custom_llm.cpython-310.pyc,, -litellm/types/llms/__pycache__/databricks.cpython-310.pyc,, -litellm/types/llms/__pycache__/gemini.cpython-310.pyc,, -litellm/types/llms/__pycache__/mistral.cpython-310.pyc,, -litellm/types/llms/__pycache__/ollama.cpython-310.pyc,, -litellm/types/llms/__pycache__/openai.cpython-310.pyc,, -litellm/types/llms/__pycache__/openrouter.cpython-310.pyc,, -litellm/types/llms/__pycache__/rerank.cpython-310.pyc,, -litellm/types/llms/__pycache__/triton.cpython-310.pyc,, -litellm/types/llms/__pycache__/vertex_ai.cpython-310.pyc,, -litellm/types/llms/__pycache__/watsonx.cpython-310.pyc,, -litellm/types/llms/anthropic.py,sha256=vLdpUsDE8B0RYdjl55M6zWMaelniR4iSIXE7csA9Scc,9156 -litellm/types/llms/anthropic_messages/__pycache__/anthropic_response.cpython-310.pyc,, -litellm/types/llms/anthropic_messages/anthropic_response.py,sha256=5Uf51FYGPUvmIwlK6xO7brE1NCRBWzgPXtZcRh6vKrg,2132 -litellm/types/llms/azure.py,sha256=QY-yJZhS_KA3kCUll-OAgBVzCMUQRJsWcisk9Uyg2X0,98 -litellm/types/llms/azure_ai.py,sha256=Au_E0qNwhfjNk_yciLEV0Ctj26TjadnZ9oSKcivnuCc,456 -litellm/types/llms/base.py,sha256=OhH4IgTv6yUa29Y6_5z5SsUEGtbk1CnYkherC1isNJk,364 -litellm/types/llms/bedrock.py,sha256=t_9ZXsVtWWECpAIqAzYRaeF_LvwBiftx6CAzgEUHlgk,12733 -litellm/types/llms/cohere.py,sha256=Ao4gg6N41MVlGp4P6LDRDhJiWuXCf5AomUFS2GQiQco,2399 -litellm/types/llms/custom_http.py,sha256=16TRcR2WMH2d_5y8H0sAkOap-ybHTXzq-sjbUeq16z0,678 -litellm/types/llms/custom_llm.py,sha256=BQiianU1zrlBtLpjB6zaXe5-xeVZrsRZNb25go4gnqI,220 -litellm/types/llms/databricks.py,sha256=AgUyf-e0kZ3SSjtBqY87KhTPXEbNSgHbPIVEqzv0fiM,1849 -litellm/types/llms/gemini.py,sha256=RMWGrFkHOQNnYmiiKBTccV3yNBdhSXJwLxJpzRasL8s,741 -litellm/types/llms/mistral.py,sha256=aG_foFrP40lc8fAjkEYpHhbTyKgy_RsdyuobUrupaBs,292 -litellm/types/llms/ollama.py,sha256=E0-uFnQ_e5_rjC9EiG6ML-r59jfT7Xiy6axkLm5aZLM,588 -litellm/types/llms/openai.py,sha256=AU2P_KP_uLJx9BlYMXBMRcetk2908ZbH7GBOZo55Z7U,35751 -litellm/types/llms/openrouter.py,sha256=YuHph6I-gufzvQz4mBbdnqzRNZHegBrVNZdP_xFmby8,206 -litellm/types/llms/rerank.py,sha256=jAC4Iy6qoXJHSYx3YtW97Khk04c7VrzTRg2D7OKPkWc,365 -litellm/types/llms/triton.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1 -litellm/types/llms/vertex_ai.py,sha256=aopujKKdGohr-CY3RPpAPnZQFpQTsQel-vZGsJRtagk,13575 -litellm/types/llms/watsonx.py,sha256=-2Cg1ob-c94FHLZx6F04t7d0lR2-5NXDFmMEqABLrHw,1040 -litellm/types/mcp_server/__pycache__/mcp_server_manager.cpython-310.pyc,, -litellm/types/mcp_server/__pycache__/tool_registry.cpython-310.pyc,, -litellm/types/mcp_server/mcp_server_manager.py,sha256=QshJDDjkICQBdcqSgOiW50hjeL9RRRMlAV-MQwXBR-c,376 -litellm/types/mcp_server/tool_registry.py,sha256=MJ0QLfeknSuvkfoG2pDOQ_zSESlrVo2tNSmflLRf13c,678 -litellm/types/passthrough_endpoints/__pycache__/assembly_ai.cpython-310.pyc,, -litellm/types/passthrough_endpoints/__pycache__/pass_through_endpoints.cpython-310.pyc,, -litellm/types/passthrough_endpoints/__pycache__/vertex_ai.cpython-310.pyc,, -litellm/types/passthrough_endpoints/assembly_ai.py,sha256=M_P5ngm2j4M6O_TkDYfyNDnh9-5gemlv1euZZEnSmNM,73 -litellm/types/passthrough_endpoints/pass_through_endpoints.py,sha256=cistT3K8WbCB-c9ratvmC5uHf0HHH2f26mZUQpQfA-M,702 -litellm/types/passthrough_endpoints/vertex_ai.py,sha256=ZsTmBHBtNxfxfhASFbA_xz9yagjhe6_4rR8ZhwTxN04,557 -litellm/types/proxy/README.md,sha256=BiSieFeLSxJOdzoRZ7tBfNdT01rD7gFr6WP93PklFus,133 -litellm/types/proxy/management_endpoints/__pycache__/common_daily_activity.cpython-310.pyc,, -litellm/types/proxy/management_endpoints/__pycache__/internal_user_endpoints.cpython-310.pyc,, -litellm/types/proxy/management_endpoints/__pycache__/scim_v2.cpython-310.pyc,, -litellm/types/proxy/management_endpoints/__pycache__/team_endpoints.cpython-310.pyc,, -litellm/types/proxy/management_endpoints/__pycache__/ui_sso.cpython-310.pyc,, -litellm/types/proxy/management_endpoints/common_daily_activity.py,sha256=TjogxRs560kcwN90SCc_BDTSoD1hNUw5iRASDvpj2qM,3298 -litellm/types/proxy/management_endpoints/internal_user_endpoints.py,sha256=WaDpPy4ISTVgN2FMnPIvYkBjmOT5aa8vDvYVeWAASMU,417 -litellm/types/proxy/management_endpoints/scim_v2.py,sha256=bQv69LlQlITRNvXQEPOHTB-jH6_aHhlrakxZeupKVv0,2099 -litellm/types/proxy/management_endpoints/team_endpoints.py,sha256=8jGHGmp1JwAhrHKS-N-_Up0SzZ4N2Dsw2WiRidoiM4I,806 -litellm/types/proxy/management_endpoints/ui_sso.py,sha256=Oy8uzwuSR8rm6lTtu9TTaz3uWwtd1QcfHCwK31ikWmA,1891 -litellm/types/rerank.py,sha256=UR3Rs0h_kTYtSEHHt6xp1i4g_E3tBoXDdMlGqXbJcxU,2035 -litellm/types/responses/__pycache__/main.cpython-310.pyc,, -litellm/types/responses/main.py,sha256=dfUuBCDmLoEFyVGTnv6m32ckzK8Ffv85Qo6V6xVfAB4,1940 -litellm/types/router.py,sha256=Axlz1ZYvqdDjKX06G6dkpss-XJAvGnEU_TGEk1vgBvY,24769 -litellm/types/scheduler.py,sha256=g5ZYA6KD-Nr1QVOoctmfRObylqfr8pzrka0AOQx8k8s,99 -litellm/types/services.py,sha256=DIXHb8MHLHCDVA0Wa_DTKpl_WKt7DxrXJGRFZ8_c6lU,4177 -litellm/types/tag_management.py,sha256=ly2n5taPEGk4O-71Hb3fi9ynd4NWpkS15ncs9yVT9JE,1048 -litellm/types/utils.py,sha256=0CkXcs7qApPcrCgduM0aOfyL5ue9Z4c267Q1j6S-sV0,71281 -litellm/utils.py,sha256=gwopO0CXP13t2jqc9z-lq2WXnr-APjBYvFOvjUQNNGI,268327 diff --git a/.venv/lib/python3.10/site-packages/litellm-1.67.2.dist-info/REQUESTED b/.venv/lib/python3.10/site-packages/litellm-1.67.2.dist-info/REQUESTED deleted file mode 100644 index e69de29b..00000000 diff --git a/.venv/lib/python3.10/site-packages/litellm-1.67.2.dist-info/WHEEL b/.venv/lib/python3.10/site-packages/litellm-1.67.2.dist-info/WHEEL deleted file mode 100644 index 8b9b3a1b..00000000 --- a/.venv/lib/python3.10/site-packages/litellm-1.67.2.dist-info/WHEEL +++ /dev/null @@ -1,4 +0,0 @@ -Wheel-Version: 1.0 -Generator: poetry-core 1.9.1 -Root-Is-Purelib: true -Tag: py3-none-any diff --git a/.venv/lib/python3.10/site-packages/litellm-1.67.2.dist-info/entry_points.txt b/.venv/lib/python3.10/site-packages/litellm-1.67.2.dist-info/entry_points.txt deleted file mode 100644 index 48f698cf..00000000 --- a/.venv/lib/python3.10/site-packages/litellm-1.67.2.dist-info/entry_points.txt +++ /dev/null @@ -1,3 +0,0 @@ -[console_scripts] -litellm=litellm:run_server - diff --git a/.venv/lib/python3.10/site-packages/litellm/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/__pycache__/__init__.cpython-310.pyc index e741511d..082983e5 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/__pycache__/_logging.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/__pycache__/_logging.cpython-310.pyc index d7ea26e4..7903b0b5 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/_logging.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/__pycache__/_logging.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/__pycache__/_redis.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/__pycache__/_redis.cpython-310.pyc deleted file mode 100644 index 7e334bd3..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/_redis.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/__pycache__/_service_logger.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/__pycache__/_service_logger.cpython-310.pyc index 1c40df35..47a7fa57 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/_service_logger.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/__pycache__/_service_logger.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/__pycache__/_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/__pycache__/_version.cpython-310.pyc index 2e900ad1..6279a03c 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/_version.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/__pycache__/_version.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/__pycache__/budget_manager.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/__pycache__/budget_manager.cpython-310.pyc index 17d32d53..7baf972f 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/budget_manager.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/__pycache__/budget_manager.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/__pycache__/constants.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/__pycache__/constants.cpython-310.pyc index 3cc6520f..848ccb5a 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/constants.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/__pycache__/constants.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/__pycache__/cost_calculator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/__pycache__/cost_calculator.cpython-310.pyc index bae1564f..c21e05fa 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/cost_calculator.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/__pycache__/cost_calculator.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/__pycache__/exceptions.cpython-310.pyc index 2bc6b3ff..4ab51568 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/exceptions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/__pycache__/exceptions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/__pycache__/main.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/__pycache__/main.cpython-310.pyc index 584de11f..5658891a 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/main.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/__pycache__/main.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/__pycache__/router.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/__pycache__/router.cpython-310.pyc index 29b52bdd..9df9fb7c 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/router.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/__pycache__/router.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/__pycache__/scheduler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/__pycache__/scheduler.cpython-310.pyc index 2ce8bf92..0da11cb0 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/scheduler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/__pycache__/scheduler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/__pycache__/timeout.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/__pycache__/timeout.cpython-310.pyc index 4e1c1d6c..84d7b560 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/timeout.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/__pycache__/timeout.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/__pycache__/utils.cpython-310.pyc index 5bd20a19..631974f8 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/__pycache__/utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/anthropic_interface/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/anthropic_interface/__pycache__/__init__.cpython-310.pyc index 341375ec..62017b0e 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/anthropic_interface/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/anthropic_interface/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/anthropic_interface/messages/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/anthropic_interface/messages/__pycache__/__init__.cpython-310.pyc index f3cfe5d2..d2306914 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/anthropic_interface/messages/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/anthropic_interface/messages/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/assistants/__pycache__/main.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/assistants/__pycache__/main.cpython-310.pyc index e44de43b..6fcc6b07 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/assistants/__pycache__/main.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/assistants/__pycache__/main.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/assistants/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/assistants/__pycache__/utils.cpython-310.pyc index 0222a375..deb3df92 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/assistants/__pycache__/utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/assistants/__pycache__/utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/batch_completion/__pycache__/main.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/batch_completion/__pycache__/main.cpython-310.pyc index 3d880e1b..dcd7ab1d 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/batch_completion/__pycache__/main.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/batch_completion/__pycache__/main.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/batches/__pycache__/batch_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/batches/__pycache__/batch_utils.cpython-310.pyc index df0756da..d1f8623d 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/batches/__pycache__/batch_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/batches/__pycache__/batch_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/batches/__pycache__/main.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/batches/__pycache__/main.cpython-310.pyc index 6cee27d6..8dd2ab9f 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/batches/__pycache__/main.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/batches/__pycache__/main.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/__init__.cpython-310.pyc index a05a5607..95356e8d 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/_internal_lru_cache.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/_internal_lru_cache.cpython-310.pyc index c4462b62..65db5116 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/_internal_lru_cache.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/_internal_lru_cache.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/base_cache.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/base_cache.cpython-310.pyc index 2e23a759..837ff73b 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/base_cache.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/base_cache.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/caching.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/caching.cpython-310.pyc index 23b3147e..897fe3ff 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/caching.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/caching.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/caching_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/caching_handler.cpython-310.pyc index c1908ac0..7b79c081 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/caching_handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/caching_handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/disk_cache.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/disk_cache.cpython-310.pyc index f42fc87c..496b12b7 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/disk_cache.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/disk_cache.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/dual_cache.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/dual_cache.cpython-310.pyc index e4349020..ad9edd06 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/dual_cache.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/dual_cache.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/in_memory_cache.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/in_memory_cache.cpython-310.pyc index 368ca14c..d4487bb6 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/in_memory_cache.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/in_memory_cache.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/llm_caching_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/llm_caching_handler.cpython-310.pyc index 2b34e587..9ecdf4c9 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/llm_caching_handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/llm_caching_handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/qdrant_semantic_cache.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/qdrant_semantic_cache.cpython-310.pyc index cd2f300c..e5d76633 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/qdrant_semantic_cache.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/qdrant_semantic_cache.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/redis_cache.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/redis_cache.cpython-310.pyc index b7064213..366dfbae 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/redis_cache.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/redis_cache.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/redis_cluster_cache.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/redis_cluster_cache.cpython-310.pyc index e8273af5..b9e808ea 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/redis_cluster_cache.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/redis_cluster_cache.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/redis_semantic_cache.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/redis_semantic_cache.cpython-310.pyc index 06471fd4..40957fcb 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/redis_semantic_cache.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/redis_semantic_cache.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/s3_cache.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/s3_cache.cpython-310.pyc index 93442269..b802927a 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/s3_cache.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/s3_cache.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/cost_calculator.py b/.venv/lib/python3.10/site-packages/litellm/cost_calculator.py index 7f3d4fcc..593cdb28 100644 --- a/.venv/lib/python3.10/site-packages/litellm/cost_calculator.py +++ b/.venv/lib/python3.10/site-packages/litellm/cost_calculator.py @@ -57,6 +57,7 @@ from litellm.llms.vertex_ai.image_generation.cost_calculator import ( from litellm.responses.utils import ResponseAPILoggingUtils from litellm.types.llms.openai import ( HttpxBinaryResponseContent, + ImageGenerationRequestQuality, OpenAIRealtimeStreamList, OpenAIRealtimeStreamResponseBaseObject, OpenAIRealtimeStreamSessionEvents, @@ -913,7 +914,7 @@ def completion_cost( # noqa: PLR0915 def get_response_cost_from_hidden_params( - hidden_params: Union[dict, BaseModel] + hidden_params: Union[dict, BaseModel], ) -> Optional[float]: if isinstance(hidden_params, BaseModel): _hidden_params_dict = hidden_params.model_dump() @@ -1101,30 +1102,38 @@ def default_image_cost_calculator( f"{quality}/{base_model_name}" if quality else base_model_name ) + # gpt-image-1 models use low, medium, high quality. If user did not specify quality, use medium fot gpt-image-1 model family + model_name_with_v2_quality = ( + f"{ImageGenerationRequestQuality.MEDIUM.value}/{base_model_name}" + ) + verbose_logger.debug( f"Looking up cost for models: {model_name_with_quality}, {base_model_name}" ) - # Try model with quality first, fall back to base model name - if model_name_with_quality in litellm.model_cost: - cost_info = litellm.model_cost[model_name_with_quality] - elif base_model_name in litellm.model_cost: - cost_info = litellm.model_cost[base_model_name] - else: - # Try without provider prefix - model_without_provider = f"{size_str}/{model.split('/')[-1]}" - model_with_quality_without_provider = ( - f"{quality}/{model_without_provider}" if quality else model_without_provider - ) + model_without_provider = f"{size_str}/{model.split('/')[-1]}" + model_with_quality_without_provider = ( + f"{quality}/{model_without_provider}" if quality else model_without_provider + ) - if model_with_quality_without_provider in litellm.model_cost: - cost_info = litellm.model_cost[model_with_quality_without_provider] - elif model_without_provider in litellm.model_cost: - cost_info = litellm.model_cost[model_without_provider] - else: - raise Exception( - f"Model not found in cost map. Tried {model_name_with_quality}, {base_model_name}, {model_with_quality_without_provider}, and {model_without_provider}" - ) + # Try model with quality first, fall back to base model name + cost_info: Optional[dict] = None + models_to_check = [ + model_name_with_quality, + base_model_name, + model_name_with_v2_quality, + model_with_quality_without_provider, + model_without_provider, + model, + ] + for model in models_to_check: + if model in litellm.model_cost: + cost_info = litellm.model_cost[model] + break + if cost_info is None: + raise Exception( + f"Model not found in cost map. Tried checking {models_to_check}" + ) return cost_info["input_cost_per_pixel"] * height * width * n diff --git a/.venv/lib/python3.10/site-packages/litellm/experimental_mcp_client/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/experimental_mcp_client/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 982ce40c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/experimental_mcp_client/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/experimental_mcp_client/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/experimental_mcp_client/__pycache__/client.cpython-310.pyc deleted file mode 100644 index e3415006..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/experimental_mcp_client/__pycache__/client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/experimental_mcp_client/__pycache__/tools.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/experimental_mcp_client/__pycache__/tools.cpython-310.pyc deleted file mode 100644 index 90d7090d..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/experimental_mcp_client/__pycache__/tools.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/files/__pycache__/main.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/files/__pycache__/main.cpython-310.pyc index 895448c9..d1af8a61 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/files/__pycache__/main.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/files/__pycache__/main.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/fine_tuning/__pycache__/main.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/fine_tuning/__pycache__/main.cpython-310.pyc index 5cc8cd87..fe9635a9 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/fine_tuning/__pycache__/main.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/fine_tuning/__pycache__/main.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/SlackAlerting/__pycache__/batching_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/SlackAlerting/__pycache__/batching_handler.cpython-310.pyc index ba3cc671..936b08a2 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/SlackAlerting/__pycache__/batching_handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/SlackAlerting/__pycache__/batching_handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/SlackAlerting/__pycache__/slack_alerting.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/SlackAlerting/__pycache__/slack_alerting.cpython-310.pyc index ac92cb1f..3c6ccd61 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/SlackAlerting/__pycache__/slack_alerting.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/SlackAlerting/__pycache__/slack_alerting.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/SlackAlerting/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/SlackAlerting/__pycache__/utils.cpython-310.pyc index bf791552..19aab14b 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/SlackAlerting/__pycache__/utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/SlackAlerting/__pycache__/utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/__init__.cpython-310.pyc index 8c1a4f17..b83fa785 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/additional_logging_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/additional_logging_utils.cpython-310.pyc index 1e257999..c8576b8a 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/additional_logging_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/additional_logging_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/anthropic_cache_control_hook.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/anthropic_cache_control_hook.cpython-310.pyc index 64b87ee7..9b711699 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/anthropic_cache_control_hook.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/anthropic_cache_control_hook.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/argilla.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/argilla.cpython-310.pyc index 47dc0a41..afdf2fea 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/argilla.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/argilla.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/athina.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/athina.cpython-310.pyc index 1a123041..77013678 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/athina.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/athina.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/braintrust_logging.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/braintrust_logging.cpython-310.pyc index 53074d46..04d0dd6f 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/braintrust_logging.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/braintrust_logging.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/custom_batch_logger.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/custom_batch_logger.cpython-310.pyc index 65e81a1e..ca605fb5 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/custom_batch_logger.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/custom_batch_logger.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/custom_guardrail.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/custom_guardrail.cpython-310.pyc index 0d44646c..da73e41c 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/custom_guardrail.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/custom_guardrail.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/custom_logger.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/custom_logger.cpython-310.pyc index a9deb6df..e9a8a296 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/custom_logger.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/custom_logger.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/custom_prompt_management.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/custom_prompt_management.cpython-310.pyc index c8c183d2..748825c4 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/custom_prompt_management.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/custom_prompt_management.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/dynamodb.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/dynamodb.cpython-310.pyc index c6239c6c..ea412290 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/dynamodb.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/dynamodb.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/email_alerting.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/email_alerting.cpython-310.pyc deleted file mode 100644 index f95d88a0..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/email_alerting.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/galileo.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/galileo.cpython-310.pyc index 7a59b75a..263f7252 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/galileo.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/galileo.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/greenscale.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/greenscale.cpython-310.pyc index 2a24add8..dd28db60 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/greenscale.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/greenscale.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/helicone.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/helicone.cpython-310.pyc index f2763088..123922b7 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/helicone.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/helicone.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/humanloop.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/humanloop.cpython-310.pyc index 9b07b194..99bc77dc 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/humanloop.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/humanloop.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/lago.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/lago.cpython-310.pyc index 0cb82dd7..8c9a18db 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/lago.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/lago.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/langsmith.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/langsmith.cpython-310.pyc index 1301893c..e95d8572 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/langsmith.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/langsmith.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/langtrace.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/langtrace.cpython-310.pyc deleted file mode 100644 index 2ef65677..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/langtrace.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/literal_ai.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/literal_ai.cpython-310.pyc index e960f109..1b6ffd48 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/literal_ai.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/literal_ai.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/logfire_logger.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/logfire_logger.cpython-310.pyc index 8d12886f..5c92a37f 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/logfire_logger.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/logfire_logger.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/lunary.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/lunary.cpython-310.pyc index ebb84f6f..1d99c8af 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/lunary.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/lunary.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/mlflow.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/mlflow.cpython-310.pyc index fc05a1ee..eab3ff3c 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/mlflow.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/mlflow.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/openmeter.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/openmeter.cpython-310.pyc index 93f01b00..0f5d04bf 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/openmeter.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/openmeter.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/opentelemetry.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/opentelemetry.cpython-310.pyc index f3b7dff2..0bfdf6f2 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/opentelemetry.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/opentelemetry.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/prometheus.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/prometheus.cpython-310.pyc index ef4b9828..6e64b06b 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/prometheus.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/prometheus.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/prometheus_services.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/prometheus_services.cpython-310.pyc index 6ab21adc..0ce73d3f 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/prometheus_services.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/prometheus_services.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/prompt_layer.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/prompt_layer.cpython-310.pyc index e253bbd5..0c1e4b88 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/prompt_layer.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/prompt_layer.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/prompt_management_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/prompt_management_base.cpython-310.pyc index 821ff95a..bb7e2be2 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/prompt_management_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/prompt_management_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/s3.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/s3.cpython-310.pyc index e0d72f6f..3257bb90 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/s3.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/s3.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/supabase.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/supabase.cpython-310.pyc index ca21421d..3b06d316 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/supabase.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/supabase.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/test_httpx.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/test_httpx.cpython-310.pyc deleted file mode 100644 index e01ea096..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/test_httpx.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/traceloop.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/traceloop.cpython-310.pyc index f08777cc..6f85ed2b 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/traceloop.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/traceloop.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/weights_biases.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/weights_biases.cpython-310.pyc index dbae4ff8..a2d642b8 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/weights_biases.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/weights_biases.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/_types/__pycache__/open_inference.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/_types/__pycache__/open_inference.cpython-310.pyc deleted file mode 100644 index 0bf38130..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/_types/__pycache__/open_inference.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/agentops/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/agentops/__pycache__/__init__.cpython-310.pyc index 7731534b..59891dce 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/agentops/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/agentops/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/agentops/__pycache__/agentops.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/agentops/__pycache__/agentops.cpython-310.pyc index 1297b056..bd078d23 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/agentops/__pycache__/agentops.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/agentops/__pycache__/agentops.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/arize/__pycache__/_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/arize/__pycache__/_utils.cpython-310.pyc index 8a4b6f90..8677f1fd 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/arize/__pycache__/_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/arize/__pycache__/_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/arize/__pycache__/arize.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/arize/__pycache__/arize.cpython-310.pyc index cf1e52fd..ae73a7cb 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/arize/__pycache__/arize.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/arize/__pycache__/arize.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/arize/__pycache__/arize_phoenix.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/arize/__pycache__/arize_phoenix.cpython-310.pyc index cc309fa7..46836df2 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/arize/__pycache__/arize_phoenix.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/arize/__pycache__/arize_phoenix.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/azure_storage/__pycache__/azure_storage.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/azure_storage/__pycache__/azure_storage.cpython-310.pyc index 473a7184..18853d98 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/azure_storage/__pycache__/azure_storage.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/azure_storage/__pycache__/azure_storage.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/datadog/__pycache__/datadog.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/datadog/__pycache__/datadog.cpython-310.pyc index 142546cd..26996cea 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/datadog/__pycache__/datadog.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/datadog/__pycache__/datadog.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/datadog/__pycache__/datadog_llm_obs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/datadog/__pycache__/datadog_llm_obs.cpython-310.pyc index 70305da1..62a36d77 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/datadog/__pycache__/datadog_llm_obs.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/datadog/__pycache__/datadog_llm_obs.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/email_templates/__pycache__/templates.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/email_templates/__pycache__/templates.cpython-310.pyc index 6644cdf3..98552038 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/email_templates/__pycache__/templates.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/email_templates/__pycache__/templates.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/gcs_bucket/__pycache__/gcs_bucket.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/gcs_bucket/__pycache__/gcs_bucket.cpython-310.pyc index 6ee4cd28..09b35b94 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/gcs_bucket/__pycache__/gcs_bucket.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/gcs_bucket/__pycache__/gcs_bucket.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/gcs_bucket/__pycache__/gcs_bucket_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/gcs_bucket/__pycache__/gcs_bucket_base.cpython-310.pyc index 437e57c9..00692394 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/gcs_bucket/__pycache__/gcs_bucket_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/gcs_bucket/__pycache__/gcs_bucket_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/gcs_pubsub/__pycache__/pub_sub.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/gcs_pubsub/__pycache__/pub_sub.cpython-310.pyc index 9dd5b8b9..d7c1d746 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/gcs_pubsub/__pycache__/pub_sub.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/gcs_pubsub/__pycache__/pub_sub.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/langfuse/__pycache__/langfuse.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/langfuse/__pycache__/langfuse.cpython-310.pyc index 707a2212..0d4e46db 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/langfuse/__pycache__/langfuse.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/langfuse/__pycache__/langfuse.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/langfuse/__pycache__/langfuse_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/langfuse/__pycache__/langfuse_handler.cpython-310.pyc index 7ca1d8c8..cd5d5bc0 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/langfuse/__pycache__/langfuse_handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/langfuse/__pycache__/langfuse_handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/langfuse/__pycache__/langfuse_prompt_management.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/langfuse/__pycache__/langfuse_prompt_management.cpython-310.pyc index b713fd1d..4eeb3486 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/langfuse/__pycache__/langfuse_prompt_management.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/langfuse/__pycache__/langfuse_prompt_management.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/opik/__pycache__/opik.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/opik/__pycache__/opik.cpython-310.pyc index f306ff4a..ad2ad233 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/opik/__pycache__/opik.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/opik/__pycache__/opik.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/opik/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/opik/__pycache__/utils.cpython-310.pyc index 5a03189e..2d2cea31 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/opik/__pycache__/utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/opik/__pycache__/utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/pagerduty/__pycache__/pagerduty.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/pagerduty/__pycache__/pagerduty.cpython-310.pyc index 8c76876e..e80f8da9 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/pagerduty/__pycache__/pagerduty.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/integrations/pagerduty/__pycache__/pagerduty.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/prometheus.py b/.venv/lib/python3.10/site-packages/litellm/integrations/prometheus.py index f61321e5..03bf1cd2 100644 --- a/.venv/lib/python3.10/site-packages/litellm/integrations/prometheus.py +++ b/.venv/lib/python3.10/site-packages/litellm/integrations/prometheus.py @@ -1000,9 +1000,9 @@ class PrometheusLogger(CustomLogger): ): try: verbose_logger.debug("setting remaining tokens requests metric") - standard_logging_payload: Optional[StandardLoggingPayload] = ( - request_kwargs.get("standard_logging_object") - ) + standard_logging_payload: Optional[ + StandardLoggingPayload + ] = request_kwargs.get("standard_logging_object") if standard_logging_payload is None: return @@ -1453,6 +1453,7 @@ class PrometheusLogger(CustomLogger): user_id=None, team_id=None, key_alias=None, + key_hash=None, exclude_team_id=UI_SESSION_TOKEN_TEAM_ID, return_full_object=True, organization_id=None, @@ -1771,10 +1772,10 @@ class PrometheusLogger(CustomLogger): from litellm.integrations.custom_logger import CustomLogger from litellm.integrations.prometheus import PrometheusLogger - prometheus_loggers: List[CustomLogger] = ( - litellm.logging_callback_manager.get_custom_loggers_for_type( - callback_type=PrometheusLogger - ) + prometheus_loggers: List[ + CustomLogger + ] = litellm.logging_callback_manager.get_custom_loggers_for_type( + callback_type=PrometheusLogger ) # we need to get the initialized prometheus logger instance(s) and call logger.initialize_remaining_budget_metrics() on them verbose_logger.debug("found %s prometheus loggers", len(prometheus_loggers)) diff --git a/.venv/lib/python3.10/site-packages/litellm/integrations/prometheus_helpers/__pycache__/prometheus_api.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/integrations/prometheus_helpers/__pycache__/prometheus_api.cpython-310.pyc deleted file mode 100644 index 9ff4214d..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/prometheus_helpers/__pycache__/prometheus_api.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/asyncify.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/asyncify.cpython-310.pyc index d4f323c6..6a5edc06 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/asyncify.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/asyncify.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/core_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/core_helpers.cpython-310.pyc index d11d301b..b65fc8ff 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/core_helpers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/core_helpers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/credential_accessor.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/credential_accessor.cpython-310.pyc index aa51f68e..b7accb53 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/credential_accessor.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/credential_accessor.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/dd_tracing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/dd_tracing.cpython-310.pyc index 3485f178..3bb8ec10 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/dd_tracing.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/dd_tracing.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/default_encoding.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/default_encoding.cpython-310.pyc index 7f990767..4fc6fa0a 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/default_encoding.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/default_encoding.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/dot_notation_indexing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/dot_notation_indexing.cpython-310.pyc deleted file mode 100644 index 835e21ad..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/dot_notation_indexing.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/duration_parser.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/duration_parser.cpython-310.pyc index 7a3f8d0b..6890f919 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/duration_parser.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/duration_parser.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/exception_mapping_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/exception_mapping_utils.cpython-310.pyc index 62f46579..1a5e3e1d 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/exception_mapping_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/exception_mapping_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/fallback_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/fallback_utils.cpython-310.pyc index dcb60675..9dae0944 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/fallback_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/fallback_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/get_litellm_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/get_litellm_params.cpython-310.pyc index e1eee7ce..9d306dc6 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/get_litellm_params.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/get_litellm_params.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/get_llm_provider_logic.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/get_llm_provider_logic.cpython-310.pyc index 8803da9e..5b393b18 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/get_llm_provider_logic.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/get_llm_provider_logic.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/get_model_cost_map.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/get_model_cost_map.cpython-310.pyc index 0fba429e..92b7e1f4 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/get_model_cost_map.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/get_model_cost_map.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/get_supported_openai_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/get_supported_openai_params.cpython-310.pyc index b77d5084..d0919c7d 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/get_supported_openai_params.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/get_supported_openai_params.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/health_check_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/health_check_utils.cpython-310.pyc index 85f210ae..3717f6cf 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/health_check_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/health_check_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/initialize_dynamic_callback_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/initialize_dynamic_callback_params.cpython-310.pyc index b73a75f8..ea07f676 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/initialize_dynamic_callback_params.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/initialize_dynamic_callback_params.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/json_validation_rule.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/json_validation_rule.cpython-310.pyc index ab290ccf..ed5bdcb5 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/json_validation_rule.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/json_validation_rule.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/litellm_logging.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/litellm_logging.cpython-310.pyc index e29c70d2..feeff8e7 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/litellm_logging.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/litellm_logging.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/llm_request_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/llm_request_utils.cpython-310.pyc index bc9c560f..0de1a649 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/llm_request_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/llm_request_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/logging_callback_manager.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/logging_callback_manager.cpython-310.pyc index b58fad60..932f530e 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/logging_callback_manager.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/logging_callback_manager.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/logging_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/logging_utils.cpython-310.pyc index a3a67c5a..90887ce8 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/logging_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/logging_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/mock_functions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/mock_functions.cpython-310.pyc index 162a9f8b..4d9c04f6 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/mock_functions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/mock_functions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/model_param_helper.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/model_param_helper.cpython-310.pyc index fb70d993..325ac009 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/model_param_helper.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/model_param_helper.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/realtime_streaming.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/realtime_streaming.cpython-310.pyc index 30882ae8..ccc29605 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/realtime_streaming.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/realtime_streaming.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/redact_messages.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/redact_messages.cpython-310.pyc index e565ab35..a19a832f 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/redact_messages.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/redact_messages.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/response_header_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/response_header_helpers.cpython-310.pyc deleted file mode 100644 index 217f6826..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/response_header_helpers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/rules.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/rules.cpython-310.pyc index 55134b89..e47303d7 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/rules.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/rules.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/safe_json_dumps.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/safe_json_dumps.cpython-310.pyc index be659420..21cd729c 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/safe_json_dumps.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/safe_json_dumps.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/sensitive_data_masker.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/sensitive_data_masker.cpython-310.pyc deleted file mode 100644 index ecd89109..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/sensitive_data_masker.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/streaming_chunk_builder_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/streaming_chunk_builder_utils.cpython-310.pyc index c2ea14b8..035f8f8e 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/streaming_chunk_builder_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/streaming_chunk_builder_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/streaming_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/streaming_handler.cpython-310.pyc index 7f6caf75..a637bc06 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/streaming_handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/streaming_handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/thread_pool_executor.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/thread_pool_executor.cpython-310.pyc index acd6e7b5..a63aa74f 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/thread_pool_executor.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/thread_pool_executor.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/token_counter.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/token_counter.cpython-310.pyc index 38b60356..2cf397c0 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/token_counter.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/token_counter.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/audio_utils/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/audio_utils/__pycache__/utils.cpython-310.pyc index 92b3ac82..f3fb1f0c 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/audio_utils/__pycache__/utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/audio_utils/__pycache__/utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/exception_mapping_utils.py b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/exception_mapping_utils.py index 54d87cc4..7578019d 100644 --- a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/exception_mapping_utils.py +++ b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/exception_mapping_utils.py @@ -311,6 +311,9 @@ def exception_type( # type: ignore # noqa: PLR0915 elif ( "invalid_request_error" in error_str and "content_policy_violation" in error_str + ) or ( + "Invalid prompt" in error_str + and "violating our usage policy" in error_str ): exception_mapping_worked = True raise ContentPolicyViolationError( diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/fallback_utils.py b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/fallback_utils.py index 90c55246..d5610d5f 100644 --- a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/fallback_utils.py +++ b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/fallback_utils.py @@ -1,5 +1,6 @@ import uuid from copy import deepcopy +from typing import Optional import litellm from litellm._logging import verbose_logger @@ -31,13 +32,16 @@ async def async_completion_with_fallbacks(**kwargs): kwargs.pop("acompletion", None) # Remove to prevent keyword conflicts litellm_call_id = str(uuid.uuid4()) base_kwargs = {**kwargs, **nested_kwargs, "litellm_call_id": litellm_call_id} + + # fields to remove base_kwargs.pop("model", None) # Remove model as it will be set per fallback + litellm_logging_obj = base_kwargs.pop("litellm_logging_obj", None) # Try each fallback model + most_recent_exception_str: Optional[str] = None for fallback in fallbacks: try: completion_kwargs = deepcopy(base_kwargs) - # Handle dictionary fallback configurations if isinstance(fallback, dict): model = fallback.pop("model", original_model) @@ -45,7 +49,11 @@ async def async_completion_with_fallbacks(**kwargs): else: model = fallback - response = await litellm.acompletion(**completion_kwargs, model=model) + response = await litellm.acompletion( + **completion_kwargs, + model=model, + litellm_logging_obj=litellm_logging_obj, + ) if response is not None: return response @@ -54,10 +62,11 @@ async def async_completion_with_fallbacks(**kwargs): verbose_logger.exception( f"Fallback attempt failed for model {model}: {str(e)}" ) + most_recent_exception_str = str(e) continue raise Exception( - "All fallback attempts failed. Enable verbose logging with `litellm.set_verbose=True` for details." + f"{most_recent_exception_str}. All fallback attempts failed. Enable verbose logging with `litellm.set_verbose=True` for details." ) diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/get_litellm_params.py b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/get_litellm_params.py index f40f1ae4..7e8f60bd 100644 --- a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/get_litellm_params.py +++ b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/get_litellm_params.py @@ -48,6 +48,7 @@ def get_litellm_params( user_continue_message=None, base_model: Optional[str] = None, litellm_trace_id: Optional[str] = None, + litellm_session_id: Optional[str] = None, hf_model_name: Optional[str] = None, custom_prompt_dict: Optional[dict] = None, litellm_metadata: Optional[dict] = None, @@ -91,6 +92,7 @@ def get_litellm_params( "base_model": base_model or _get_base_model_from_litellm_call_metadata(metadata=metadata), "litellm_trace_id": litellm_trace_id, + "litellm_session_id": litellm_session_id, "hf_model_name": hf_model_name, "custom_prompt_dict": custom_prompt_dict, "litellm_metadata": litellm_metadata, diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/litellm_logging.py b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/litellm_logging.py index 77d4fd7d..441392a1 100644 --- a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/litellm_logging.py +++ b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/litellm_logging.py @@ -28,7 +28,6 @@ from litellm._logging import _is_debugging_on, verbose_logger from litellm.batches.batch_utils import _handle_completed_batch from litellm.caching.caching import DualCache, InMemoryCache from litellm.caching.caching_handler import LLMCachingHandler - from litellm.constants import ( DEFAULT_MOCK_RESPONSE_COMPLETION_TOKEN_COUNT, DEFAULT_MOCK_RESPONSE_PROMPT_TOKEN_COUNT, @@ -64,7 +63,7 @@ from litellm.types.llms.openai import ( ResponsesAPIResponse, ) from litellm.types.rerank import RerankResponse -from litellm.types.router import SPECIAL_MODEL_INFO_PARAMS +from litellm.types.router import CustomPricingLiteLLMParams from litellm.types.utils import ( CallTypes, EmbeddingResponse, @@ -249,7 +248,7 @@ class Logging(LiteLLMLoggingBaseClass): self.start_time = start_time # log the call start time self.call_type = call_type self.litellm_call_id = litellm_call_id - self.litellm_trace_id = litellm_trace_id + self.litellm_trace_id: str = litellm_trace_id or str(uuid.uuid4()) self.function_id = function_id self.streaming_chunks: List[Any] = [] # for generating complete stream response self.sync_streaming_chunks: List[Any] = ( @@ -447,13 +446,10 @@ class Logging(LiteLLMLoggingBaseClass): if "stream_options" in additional_params: self.stream_options = additional_params["stream_options"] ## check if custom pricing set ## - if ( - litellm_params.get("input_cost_per_token") is not None - or litellm_params.get("input_cost_per_second") is not None - or litellm_params.get("output_cost_per_token") is not None - or litellm_params.get("output_cost_per_second") is not None - ): - self.custom_pricing = True + custom_pricing_keys = CustomPricingLiteLLMParams.model_fields.keys() + for key in custom_pricing_keys: + if litellm_params.get(key) is not None: + self.custom_pricing = True if "custom_llm_provider" in self.model_call_details: self.custom_llm_provider = self.model_call_details["custom_llm_provider"] @@ -3149,10 +3145,11 @@ def use_custom_pricing_for_model(litellm_params: Optional[dict]) -> bool: metadata: dict = litellm_params.get("metadata", {}) or {} model_info: dict = metadata.get("model_info", {}) or {} - for _custom_cost_param in SPECIAL_MODEL_INFO_PARAMS: - if litellm_params.get(_custom_cost_param, None) is not None: + custom_pricing_keys = CustomPricingLiteLLMParams.model_fields.keys() + for key in custom_pricing_keys: + if litellm_params.get(key, None) is not None: return True - elif model_info.get(_custom_cost_param, None) is not None: + elif model_info.get(key, None) is not None: return True return False @@ -3500,6 +3497,28 @@ class StandardLoggingPayloadSetup: else: return end_time_float - start_time_float + @staticmethod + def _get_standard_logging_payload_trace_id( + logging_obj: Logging, + litellm_params: dict, + ) -> str: + """ + Returns the `litellm_trace_id` for this request + + This helps link sessions when multiple requests are made in a single session + """ + dynamic_litellm_session_id = litellm_params.get("litellm_session_id") + dynamic_litellm_trace_id = litellm_params.get("litellm_trace_id") + + # Note: we recommend using `litellm_session_id` for session tracking + # `litellm_trace_id` is an internal litellm param + if dynamic_litellm_session_id: + return str(dynamic_litellm_session_id) + elif dynamic_litellm_trace_id: + return str(dynamic_litellm_trace_id) + else: + return logging_obj.litellm_trace_id + def get_standard_logging_object_payload( kwargs: Optional[dict], @@ -3652,7 +3671,10 @@ def get_standard_logging_object_payload( payload: StandardLoggingPayload = StandardLoggingPayload( id=str(id), - trace_id=kwargs.get("litellm_trace_id"), # type: ignore + trace_id=StandardLoggingPayloadSetup._get_standard_logging_payload_trace_id( + logging_obj=logging_obj, + litellm_params=litellm_params, + ), call_type=call_type or "", cache_hit=cache_hit, stream=stream, diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_cost_calc/__pycache__/tool_call_cost_tracking.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_cost_calc/__pycache__/tool_call_cost_tracking.cpython-310.pyc index 4b992ac9..124480f6 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_cost_calc/__pycache__/tool_call_cost_tracking.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_cost_calc/__pycache__/tool_call_cost_tracking.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_cost_calc/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_cost_calc/__pycache__/utils.cpython-310.pyc index 6a4645e2..49e8d841 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_cost_calc/__pycache__/utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_cost_calc/__pycache__/utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/convert_dict_to_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/convert_dict_to_response.cpython-310.pyc index 1bac3170..1e4fafac 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/convert_dict_to_response.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/convert_dict_to_response.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/get_api_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/get_api_base.cpython-310.pyc index 0859dff3..a38a5074 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/get_api_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/get_api_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/get_formatted_prompt.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/get_formatted_prompt.cpython-310.pyc index 7c349244..20e2ae9b 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/get_formatted_prompt.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/get_formatted_prompt.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/get_headers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/get_headers.cpython-310.pyc index ab32743a..8d123be1 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/get_headers.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/get_headers.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/response_metadata.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/response_metadata.cpython-310.pyc index 49f2ea82..61bdd34e 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/response_metadata.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/response_metadata.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/prompt_templates/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/prompt_templates/__pycache__/common_utils.cpython-310.pyc index fbd3cb5d..c0dc739c 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/prompt_templates/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/prompt_templates/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/prompt_templates/__pycache__/factory.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/prompt_templates/__pycache__/factory.cpython-310.pyc index 8a045bc2..ee8f8ec1 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/prompt_templates/__pycache__/factory.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/prompt_templates/__pycache__/factory.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/prompt_templates/__pycache__/image_handling.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/prompt_templates/__pycache__/image_handling.cpython-310.pyc index 17168210..795bc42d 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/prompt_templates/__pycache__/image_handling.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/prompt_templates/__pycache__/image_handling.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/specialty_caches/__pycache__/dynamic_logging_cache.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/specialty_caches/__pycache__/dynamic_logging_cache.cpython-310.pyc index 56bc4112..5e4c25ec 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/specialty_caches/__pycache__/dynamic_logging_cache.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/specialty_caches/__pycache__/dynamic_logging_cache.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/streaming_chunk_builder_utils.py b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/streaming_chunk_builder_utils.py index 198b71ca..4068d2e0 100644 --- a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/streaming_chunk_builder_utils.py +++ b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/streaming_chunk_builder_utils.py @@ -348,11 +348,17 @@ class ChunkProcessor: and usage_chunk_dict["completion_tokens"] > 0 ): completion_tokens = usage_chunk_dict["completion_tokens"] - if usage_chunk_dict["cache_creation_input_tokens"] is not None: + if usage_chunk_dict["cache_creation_input_tokens"] is not None and ( + usage_chunk_dict["cache_creation_input_tokens"] > 0 + or cache_creation_input_tokens is None + ): cache_creation_input_tokens = usage_chunk_dict[ "cache_creation_input_tokens" ] - if usage_chunk_dict["cache_read_input_tokens"] is not None: + if usage_chunk_dict["cache_read_input_tokens"] is not None and ( + usage_chunk_dict["cache_read_input_tokens"] > 0 + or cache_read_input_tokens is None + ): cache_read_input_tokens = usage_chunk_dict[ "cache_read_input_tokens" ] diff --git a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/tokenizers/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/tokenizers/__pycache__/__init__.cpython-310.pyc index 7f846be9..0525d856 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/tokenizers/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/tokenizers/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/__init__.cpython-310.pyc index ec0a8540..f76bb703 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/base.cpython-310.pyc index 2aa2f451..7e765b41 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/baseten.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/baseten.cpython-310.pyc index 2b42abed..705efc7b 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/baseten.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/baseten.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/custom_llm.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/custom_llm.cpython-310.pyc index 4d31a6b2..cccfa0ac 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/custom_llm.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/custom_llm.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/maritalk.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/maritalk.cpython-310.pyc index 65e03c10..be544e88 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/maritalk.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/maritalk.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/ollama_chat.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/ollama_chat.cpython-310.pyc index b8656f7f..cc37b3bd 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/ollama_chat.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/ollama_chat.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/volcengine.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/volcengine.cpython-310.pyc index 482551f2..c86e39ff 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/volcengine.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/volcengine.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/ai21/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/ai21/chat/__pycache__/transformation.cpython-310.pyc index bf4a1d08..6e658c4d 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/ai21/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/ai21/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/aiohttp_openai/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/aiohttp_openai/chat/__pycache__/transformation.cpython-310.pyc index ea370898..c144f588 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/aiohttp_openai/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/aiohttp_openai/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/__pycache__/common_utils.cpython-310.pyc index d5a1fb82..f65e4026 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/__pycache__/cost_calculation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/__pycache__/cost_calculation.cpython-310.pyc index ef3f511e..e021a386 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/__pycache__/cost_calculation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/__pycache__/cost_calculation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/chat/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/chat/__pycache__/__init__.cpython-310.pyc index 8996a403..e10da4db 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/chat/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/chat/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/chat/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/chat/__pycache__/handler.cpython-310.pyc index 86ba8044..a354ce5f 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/chat/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/chat/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/chat/__pycache__/transformation.cpython-310.pyc index c1c6991f..a3332793 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/completion/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/completion/__pycache__/handler.cpython-310.pyc deleted file mode 100644 index d201dbd6..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/completion/__pycache__/handler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/completion/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/completion/__pycache__/transformation.cpython-310.pyc index 1db2b714..f18f7dae 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/completion/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/completion/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/experimental_pass_through/messages/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/experimental_pass_through/messages/__pycache__/handler.cpython-310.pyc index 067c46ee..e5ff1946 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/experimental_pass_through/messages/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/experimental_pass_through/messages/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/experimental_pass_through/messages/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/experimental_pass_through/messages/__pycache__/transformation.cpython-310.pyc index 3beac5df..64344c00 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/experimental_pass_through/messages/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/experimental_pass_through/messages/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/assistants.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/assistants.cpython-310.pyc index 1b0f159c..433648eb 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/assistants.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/assistants.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/audio_transcriptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/audio_transcriptions.cpython-310.pyc index 4e98116d..2b64f042 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/audio_transcriptions.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/audio_transcriptions.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/azure.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/azure.cpython-310.pyc index 0cb6289e..4696cef1 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/azure.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/azure.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/common_utils.cpython-310.pyc index c1a4ea19..0ecd286a 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/cost_calculation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/cost_calculation.cpython-310.pyc index 4a0c7cdb..511c7325 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/cost_calculation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/cost_calculation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure/batches/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/azure/batches/__pycache__/handler.cpython-310.pyc index 729faf72..b4162b42 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/batches/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/azure/batches/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure/chat/__pycache__/gpt_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/azure/chat/__pycache__/gpt_transformation.cpython-310.pyc index bb4eb3ab..d7f83240 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/chat/__pycache__/gpt_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/azure/chat/__pycache__/gpt_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure/chat/__pycache__/o_series_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/azure/chat/__pycache__/o_series_handler.cpython-310.pyc index 3787658f..6f729462 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/chat/__pycache__/o_series_handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/azure/chat/__pycache__/o_series_handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure/chat/__pycache__/o_series_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/azure/chat/__pycache__/o_series_transformation.cpython-310.pyc index af4fee9f..0b35d042 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/chat/__pycache__/o_series_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/azure/chat/__pycache__/o_series_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure/completion/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/azure/completion/__pycache__/handler.cpython-310.pyc index f6fe5297..a8cdba31 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/completion/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/azure/completion/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure/completion/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/azure/completion/__pycache__/transformation.cpython-310.pyc index 09e30e17..cc0770df 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/completion/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/azure/completion/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure/files/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/azure/files/__pycache__/handler.cpython-310.pyc index 476804a0..860f62d7 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/files/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/azure/files/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure/fine_tuning/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/azure/fine_tuning/__pycache__/handler.cpython-310.pyc index 294c97bf..09d4cfea 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/fine_tuning/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/azure/fine_tuning/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure/realtime/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/azure/realtime/__pycache__/handler.cpython-310.pyc index d9b4312e..0cb79821 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/realtime/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/azure/realtime/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure/responses/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/azure/responses/__pycache__/transformation.cpython-310.pyc index c12356e0..98023dc7 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/responses/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/azure/responses/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure/responses/transformation.py b/.venv/lib/python3.10/site-packages/litellm/llms/azure/responses/transformation.py index 499d21cb..7d9244e3 100644 --- a/.venv/lib/python3.10/site-packages/litellm/llms/azure/responses/transformation.py +++ b/.venv/lib/python3.10/site-packages/litellm/llms/azure/responses/transformation.py @@ -95,6 +95,35 @@ class AzureOpenAIResponsesAPIConfig(OpenAIResponsesAPIConfig): ######################################################### ########## DELETE RESPONSE API TRANSFORMATION ############## ######################################################### + def _construct_url_for_response_id_in_path( + self, api_base: str, response_id: str + ) -> str: + """ + Constructs a URL for the API request with the response_id in the path. + """ + from urllib.parse import urlparse, urlunparse + + # Parse the URL to separate its components + parsed_url = urlparse(api_base) + + # Insert the response_id at the end of the path component + # Remove trailing slash if present to avoid double slashes + path = parsed_url.path.rstrip("/") + new_path = f"{path}/{response_id}" + + # Reconstruct the URL with all original components but with the modified path + constructed_url = urlunparse( + ( + parsed_url.scheme, # http, https + parsed_url.netloc, # domain name, port + new_path, # path with response_id added + parsed_url.params, # parameters + parsed_url.query, # query string + parsed_url.fragment, # fragment + ) + ) + return constructed_url + def transform_delete_response_api_request( self, response_id: str, @@ -111,28 +140,33 @@ class AzureOpenAIResponsesAPIConfig(OpenAIResponsesAPIConfig): This function handles URLs with query parameters by inserting the response_id at the correct location (before any query parameters). """ - from urllib.parse import urlparse, urlunparse - - # Parse the URL to separate its components - parsed_url = urlparse(api_base) - - # Insert the response_id at the end of the path component - # Remove trailing slash if present to avoid double slashes - path = parsed_url.path.rstrip("/") - new_path = f"{path}/{response_id}" - - # Reconstruct the URL with all original components but with the modified path - delete_url = urlunparse( - ( - parsed_url.scheme, # http, https - parsed_url.netloc, # domain name, port - new_path, # path with response_id added - parsed_url.params, # parameters - parsed_url.query, # query string - parsed_url.fragment, # fragment - ) + delete_url = self._construct_url_for_response_id_in_path( + api_base=api_base, response_id=response_id ) data: Dict = {} verbose_logger.debug(f"delete response url={delete_url}") return delete_url, data + + ######################################################### + ########## GET RESPONSE API TRANSFORMATION ############### + ######################################################### + def transform_get_response_api_request( + self, + response_id: str, + api_base: str, + litellm_params: GenericLiteLLMParams, + headers: dict, + ) -> Tuple[str, Dict]: + """ + Transform the get response API request into a URL and data + + OpenAI API expects the following request + - GET /v1/responses/{response_id} + """ + get_url = self._construct_url_for_response_id_in_path( + api_base=api_base, response_id=response_id + ) + data: Dict = {} + verbose_logger.debug(f"get response url={get_url}") + return get_url, data diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/chat/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/chat/__pycache__/handler.cpython-310.pyc deleted file mode 100644 index 49419feb..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/chat/__pycache__/handler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/chat/__pycache__/transformation.cpython-310.pyc index f4c13c69..2d516187 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/embed/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/embed/__pycache__/__init__.cpython-310.pyc index 41e4df61..ae4550f1 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/embed/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/embed/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/embed/__pycache__/cohere_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/embed/__pycache__/cohere_transformation.cpython-310.pyc index ca84212d..90a83ea3 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/embed/__pycache__/cohere_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/embed/__pycache__/cohere_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/embed/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/embed/__pycache__/handler.cpython-310.pyc index d0b7e689..ec2399d4 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/embed/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/embed/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/rerank/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/rerank/__pycache__/handler.cpython-310.pyc deleted file mode 100644 index b34b28ef..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/rerank/__pycache__/handler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/rerank/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/rerank/__pycache__/transformation.cpython-310.pyc index 9bf985c3..6cfbda41 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/rerank/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/rerank/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/__pycache__/base_model_iterator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/__pycache__/base_model_iterator.cpython-310.pyc index 4e5e5682..597410b7 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/__pycache__/base_model_iterator.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/__pycache__/base_model_iterator.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/__pycache__/base_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/__pycache__/base_utils.cpython-310.pyc index 9e51cda8..fbfe4b6b 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/__pycache__/base_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/__pycache__/base_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/anthropic_messages/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/anthropic_messages/__pycache__/transformation.cpython-310.pyc index 3a259886..0a5a184a 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/anthropic_messages/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/anthropic_messages/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/audio_transcription/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/audio_transcription/__pycache__/transformation.cpython-310.pyc index 15c90c3c..212b45c6 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/audio_transcription/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/audio_transcription/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/chat/__pycache__/transformation.cpython-310.pyc index c833f609..5a0f201a 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/completion/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/completion/__pycache__/transformation.cpython-310.pyc index 8e0c78bd..cff54a8c 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/completion/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/completion/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/embedding/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/embedding/__pycache__/transformation.cpython-310.pyc index 97270894..a7aea2b7 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/embedding/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/embedding/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/files/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/files/__pycache__/transformation.cpython-310.pyc index 10e757cf..2ccb3687 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/files/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/files/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/image_variations/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/image_variations/__pycache__/transformation.cpython-310.pyc index 0c00d15e..7dcc3ce0 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/image_variations/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/image_variations/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/rerank/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/rerank/__pycache__/transformation.cpython-310.pyc index 0aae5479..a1e6b70a 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/rerank/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/rerank/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/responses/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/responses/__pycache__/transformation.cpython-310.pyc index ea2e09ac..6f9f4bad 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/responses/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/responses/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/responses/transformation.py b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/responses/transformation.py index 15ce8cba..751d29dd 100644 --- a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/responses/transformation.py +++ b/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/responses/transformation.py @@ -141,9 +141,34 @@ class BaseResponsesAPIConfig(ABC): pass ######################################################### - ########## END DELETE RESPONSE API TRANSFORMATION ########## + ########## END DELETE RESPONSE API TRANSFORMATION ####### ######################################################### + ######################################################### + ########## GET RESPONSE API TRANSFORMATION ############### + ######################################################### + @abstractmethod + def transform_get_response_api_request( + self, + response_id: str, + api_base: str, + litellm_params: GenericLiteLLMParams, + headers: dict, + ) -> Tuple[str, Dict]: + pass + + @abstractmethod + def transform_get_response_api_response( + self, + raw_response: httpx.Response, + logging_obj: LiteLLMLoggingObj, + ) -> ResponsesAPIResponse: + pass + + ######################################################### + ########## END GET RESPONSE API TRANSFORMATION ########## + ######################################################### + def get_error_class( self, error_message: str, status_code: int, headers: Union[dict, httpx.Headers] ) -> BaseLLMException: diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/__pycache__/base_aws_llm.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/__pycache__/base_aws_llm.cpython-310.pyc index 24217192..0660312c 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/__pycache__/base_aws_llm.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/__pycache__/base_aws_llm.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/__pycache__/common_utils.cpython-310.pyc index 4979503a..d5a860a8 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/__pycache__/__init__.cpython-310.pyc index 8e020599..962095f4 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/__pycache__/converse_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/__pycache__/converse_handler.cpython-310.pyc index 763b5765..e51f6a4d 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/__pycache__/converse_handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/__pycache__/converse_handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/__pycache__/converse_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/__pycache__/converse_transformation.cpython-310.pyc index 1a921a3d..fa0e12df 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/__pycache__/converse_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/__pycache__/converse_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/__pycache__/invoke_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/__pycache__/invoke_handler.cpython-310.pyc index 9e713fed..4d491e7b 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/__pycache__/invoke_handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/__pycache__/invoke_handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/converse_like/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/converse_like/__pycache__/handler.cpython-310.pyc deleted file mode 100644 index c00737e5..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/converse_like/__pycache__/handler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/converse_like/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/converse_like/__pycache__/transformation.cpython-310.pyc deleted file mode 100644 index 0e590167..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/converse_like/__pycache__/transformation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/converse_transformation.py b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/converse_transformation.py index 31d7542c..8332463c 100644 --- a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/converse_transformation.py +++ b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/converse_transformation.py @@ -107,6 +107,15 @@ class AmazonConverseConfig(BaseConfig): "response_format", ] + if ( + "arn" in model + ): # we can't infer the model from the arn, so just add all params + supported_params.append("tools") + supported_params.append("tool_choice") + supported_params.append("thinking") + supported_params.append("reasoning_effort") + return supported_params + ## Filter out 'cross-region' from model name base_model = BedrockModelInfo.get_base_model(model) diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_ai21_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_ai21_transformation.cpython-310.pyc index 7a7bd2cd..a329707f 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_ai21_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_ai21_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_cohere_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_cohere_transformation.cpython-310.pyc index ec033a3b..b395d855 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_cohere_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_cohere_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_deepseek_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_deepseek_transformation.cpython-310.pyc index 259ebb34..3e374a3b 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_deepseek_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_deepseek_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_llama_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_llama_transformation.cpython-310.pyc index 2694d53e..c96f12a7 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_llama_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_llama_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_mistral_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_mistral_transformation.cpython-310.pyc index fa577e5a..01dca92c 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_mistral_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_mistral_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_nova_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_nova_transformation.cpython-310.pyc index 00ee3de7..583077de 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_nova_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_nova_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_titan_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_titan_transformation.cpython-310.pyc index 83fbf934..91e3c743 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_titan_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_titan_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/anthropic_claude2_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/anthropic_claude2_transformation.cpython-310.pyc index 6fb3941c..47411029 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/anthropic_claude2_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/anthropic_claude2_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/anthropic_claude3_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/anthropic_claude3_transformation.cpython-310.pyc index d8e95823..c69579f9 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/anthropic_claude3_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/anthropic_claude3_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/base_invoke_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/base_invoke_transformation.cpython-310.pyc index 4c7d5e31..eca71f77 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/base_invoke_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/base_invoke_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/amazon_titan_g1_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/amazon_titan_g1_transformation.cpython-310.pyc index 2dd14aa2..187898bb 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/amazon_titan_g1_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/amazon_titan_g1_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/amazon_titan_multimodal_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/amazon_titan_multimodal_transformation.cpython-310.pyc index 3133a6fc..ab78cb18 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/amazon_titan_multimodal_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/amazon_titan_multimodal_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/amazon_titan_v2_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/amazon_titan_v2_transformation.cpython-310.pyc index 3e4fbf01..8955b0f3 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/amazon_titan_v2_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/amazon_titan_v2_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/cohere_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/cohere_transformation.cpython-310.pyc index 0271fa67..3284d519 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/cohere_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/cohere_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/embedding.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/embedding.cpython-310.pyc index fbb9944e..13758a76 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/embedding.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/embedding.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/amazon_nova_canvas_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/amazon_nova_canvas_transformation.cpython-310.pyc index 4760d969..57bf57ac 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/amazon_nova_canvas_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/amazon_nova_canvas_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/amazon_stability1_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/amazon_stability1_transformation.cpython-310.pyc index 1bbc818f..d14d6b5d 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/amazon_stability1_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/amazon_stability1_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/amazon_stability3_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/amazon_stability3_transformation.cpython-310.pyc index 40769980..af321cda 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/amazon_stability3_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/amazon_stability3_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/cost_calculator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/cost_calculator.cpython-310.pyc index 132ba90f..b5894792 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/cost_calculator.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/cost_calculator.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/image_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/image_handler.cpython-310.pyc index e3fc613d..a92341d3 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/image_handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/image_handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/rerank/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/rerank/__pycache__/handler.cpython-310.pyc index 80de0a4e..a69d5899 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/rerank/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/rerank/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/rerank/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/rerank/__pycache__/transformation.cpython-310.pyc index 79d04b18..c9d731db 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/rerank/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/rerank/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/cerebras/__pycache__/chat.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/cerebras/__pycache__/chat.cpython-310.pyc index b54debf5..f6d93615 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/cerebras/__pycache__/chat.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/cerebras/__pycache__/chat.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/clarifai/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/clarifai/__pycache__/common_utils.cpython-310.pyc index 428b1cf2..cc1823fb 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/clarifai/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/clarifai/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/clarifai/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/clarifai/chat/__pycache__/transformation.cpython-310.pyc index 2d9b8638..cf0d6057 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/clarifai/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/clarifai/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/cloudflare/chat/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/cloudflare/chat/__pycache__/handler.cpython-310.pyc deleted file mode 100644 index 3017857d..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/cloudflare/chat/__pycache__/handler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/cloudflare/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/cloudflare/chat/__pycache__/transformation.cpython-310.pyc index 4abf1ac8..827f3f75 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/cloudflare/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/cloudflare/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/codestral/completion/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/codestral/completion/__pycache__/handler.cpython-310.pyc index ffb068d2..fd402289 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/codestral/completion/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/codestral/completion/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/codestral/completion/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/codestral/completion/__pycache__/transformation.cpython-310.pyc index 69e45c4c..011dd20f 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/codestral/completion/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/codestral/completion/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/cohere/__pycache__/common_utils.cpython-310.pyc index a591abfb..67df9478 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/cohere/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/cohere/chat/__pycache__/transformation.cpython-310.pyc index 29e652e3..c183d19b 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/cohere/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/chat/__pycache__/v2_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/cohere/chat/__pycache__/v2_transformation.cpython-310.pyc deleted file mode 100644 index 4e74dd57..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/chat/__pycache__/v2_transformation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/completion/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/cohere/completion/__pycache__/handler.cpython-310.pyc deleted file mode 100644 index 29848e1c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/completion/__pycache__/handler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/completion/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/cohere/completion/__pycache__/transformation.cpython-310.pyc index 3c9896d5..778c383a 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/completion/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/cohere/completion/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/embed/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/cohere/embed/__pycache__/handler.cpython-310.pyc index 2aa3aa7e..3395e78f 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/embed/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/cohere/embed/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/embed/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/cohere/embed/__pycache__/transformation.cpython-310.pyc index eb7b1911..6244f7ab 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/embed/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/cohere/embed/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/rerank/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/cohere/rerank/__pycache__/handler.cpython-310.pyc deleted file mode 100644 index f7e229d2..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/rerank/__pycache__/handler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/rerank/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/cohere/rerank/__pycache__/transformation.cpython-310.pyc index 855adce8..dc493361 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/rerank/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/cohere/rerank/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/rerank_v2/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/cohere/rerank_v2/__pycache__/transformation.cpython-310.pyc index 4e3e7db0..27787ad7 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/rerank_v2/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/cohere/rerank_v2/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/custom_httpx/__pycache__/aiohttp_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/custom_httpx/__pycache__/aiohttp_handler.cpython-310.pyc index 493fad52..c7ac007a 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/custom_httpx/__pycache__/aiohttp_handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/custom_httpx/__pycache__/aiohttp_handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/custom_httpx/__pycache__/http_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/custom_httpx/__pycache__/http_handler.cpython-310.pyc index 2472419d..fdc3be43 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/custom_httpx/__pycache__/http_handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/custom_httpx/__pycache__/http_handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/custom_httpx/__pycache__/httpx_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/custom_httpx/__pycache__/httpx_handler.cpython-310.pyc deleted file mode 100644 index fe99c8d7..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/custom_httpx/__pycache__/httpx_handler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/custom_httpx/__pycache__/llm_http_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/custom_httpx/__pycache__/llm_http_handler.cpython-310.pyc index 21216d01..87116a58 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/custom_httpx/__pycache__/llm_http_handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/custom_httpx/__pycache__/llm_http_handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/custom_httpx/llm_http_handler.py b/.venv/lib/python3.10/site-packages/litellm/llms/custom_httpx/llm_http_handler.py index 1958ef0b..abbbc2e5 100644 --- a/.venv/lib/python3.10/site-packages/litellm/llms/custom_httpx/llm_http_handler.py +++ b/.venv/lib/python3.10/site-packages/litellm/llms/custom_httpx/llm_http_handler.py @@ -1426,6 +1426,162 @@ class BaseLLMHTTPHandler: logging_obj=logging_obj, ) + def get_responses( + self, + response_id: str, + responses_api_provider_config: BaseResponsesAPIConfig, + litellm_params: GenericLiteLLMParams, + logging_obj: LiteLLMLoggingObj, + custom_llm_provider: Optional[str] = None, + extra_headers: Optional[Dict[str, Any]] = None, + extra_body: Optional[Dict[str, Any]] = None, + timeout: Optional[Union[float, httpx.Timeout]] = None, + client: Optional[Union[HTTPHandler, AsyncHTTPHandler]] = None, + _is_async: bool = False, + ) -> Union[ResponsesAPIResponse, Coroutine[Any, Any, ResponsesAPIResponse]]: + """ + Get a response by ID + Uses GET /v1/responses/{response_id} endpoint in the responses API + """ + if _is_async: + return self.async_get_responses( + response_id=response_id, + responses_api_provider_config=responses_api_provider_config, + litellm_params=litellm_params, + logging_obj=logging_obj, + custom_llm_provider=custom_llm_provider, + extra_headers=extra_headers, + extra_body=extra_body, + timeout=timeout, + client=client, + ) + + if client is None or not isinstance(client, HTTPHandler): + sync_httpx_client = _get_httpx_client( + params={"ssl_verify": litellm_params.get("ssl_verify", None)} + ) + else: + sync_httpx_client = client + + headers = responses_api_provider_config.validate_environment( + api_key=litellm_params.api_key, + headers=extra_headers or {}, + model="None", + ) + + if extra_headers: + headers.update(extra_headers) + + api_base = responses_api_provider_config.get_complete_url( + api_base=litellm_params.api_base, + litellm_params=dict(litellm_params), + ) + + url, data = responses_api_provider_config.transform_get_response_api_request( + response_id=response_id, + api_base=api_base, + litellm_params=litellm_params, + headers=headers, + ) + + ## LOGGING + logging_obj.pre_call( + input="", + api_key="", + additional_args={ + "complete_input_dict": data, + "api_base": api_base, + "headers": headers, + }, + ) + + try: + response = sync_httpx_client.get( + url=url, headers=headers, params=data + ) + except Exception as e: + raise self._handle_error( + e=e, + provider_config=responses_api_provider_config, + ) + + return responses_api_provider_config.transform_get_response_api_response( + raw_response=response, + logging_obj=logging_obj, + ) + + async def async_get_responses( + self, + response_id: str, + responses_api_provider_config: BaseResponsesAPIConfig, + litellm_params: GenericLiteLLMParams, + logging_obj: LiteLLMLoggingObj, + custom_llm_provider: Optional[str] = None, + extra_headers: Optional[Dict[str, Any]] = None, + extra_body: Optional[Dict[str, Any]] = None, + timeout: Optional[Union[float, httpx.Timeout]] = None, + client: Optional[Union[HTTPHandler, AsyncHTTPHandler]] = None, + ) -> ResponsesAPIResponse: + """ + Async version of get_responses + """ + if client is None or not isinstance(client, AsyncHTTPHandler): + async_httpx_client = get_async_httpx_client( + llm_provider=litellm.LlmProviders(custom_llm_provider), + params={"ssl_verify": litellm_params.get("ssl_verify", None)}, + ) + else: + async_httpx_client = client + + headers = responses_api_provider_config.validate_environment( + api_key=litellm_params.api_key, + headers=extra_headers or {}, + model="None", + ) + + if extra_headers: + headers.update(extra_headers) + + api_base = responses_api_provider_config.get_complete_url( + api_base=litellm_params.api_base, + litellm_params=dict(litellm_params), + ) + + url, data = responses_api_provider_config.transform_get_response_api_request( + response_id=response_id, + api_base=api_base, + litellm_params=litellm_params, + headers=headers, + ) + + ## LOGGING + logging_obj.pre_call( + input="", + api_key="", + additional_args={ + "complete_input_dict": data, + "api_base": api_base, + "headers": headers, + }, + ) + + try: + response = await async_httpx_client.get( + url=url, headers=headers, params=data + ) + + except Exception as e: + verbose_logger.exception(f"Error retrieving response: {e}") + raise self._handle_error( + e=e, + provider_config=responses_api_provider_config, + ) + + return responses_api_provider_config.transform_get_response_api_response( + raw_response=response, + logging_obj=logging_obj, + ) + def create_file( self, create_file_data: CreateFileRequest, diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/databricks/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/databricks/__pycache__/common_utils.cpython-310.pyc index 30229206..c387a3f7 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/databricks/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/databricks/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/databricks/__pycache__/cost_calculator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/databricks/__pycache__/cost_calculator.cpython-310.pyc index 0a9ee5d2..998fc9de 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/databricks/__pycache__/cost_calculator.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/databricks/__pycache__/cost_calculator.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/databricks/__pycache__/streaming_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/databricks/__pycache__/streaming_utils.cpython-310.pyc index 35892389..fe34bc02 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/databricks/__pycache__/streaming_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/databricks/__pycache__/streaming_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/databricks/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/databricks/chat/__pycache__/transformation.cpython-310.pyc index 967e7f48..3704e0ae 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/databricks/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/databricks/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/databricks/embed/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/databricks/embed/__pycache__/handler.cpython-310.pyc index 1951be18..5d23068b 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/databricks/embed/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/databricks/embed/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/databricks/embed/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/databricks/embed/__pycache__/transformation.cpython-310.pyc index d583a900..8d0c2ef7 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/databricks/embed/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/databricks/embed/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/deepgram/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/deepgram/__pycache__/common_utils.cpython-310.pyc index 7b136c52..c12e641d 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/deepgram/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/deepgram/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/deepgram/audio_transcription/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/deepgram/audio_transcription/__pycache__/transformation.cpython-310.pyc index 97a59c5d..2ae21db5 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/deepgram/audio_transcription/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/deepgram/audio_transcription/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/deepinfra/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/deepinfra/chat/__pycache__/transformation.cpython-310.pyc index c131f486..b1cfe541 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/deepinfra/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/deepinfra/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/deepseek/__pycache__/cost_calculator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/deepseek/__pycache__/cost_calculator.cpython-310.pyc index 640ff6f6..0d2f1e59 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/deepseek/__pycache__/cost_calculator.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/deepseek/__pycache__/cost_calculator.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/deepseek/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/deepseek/chat/__pycache__/transformation.cpython-310.pyc index 36a59223..6d825897 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/deepseek/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/deepseek/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/deprecated_providers/__pycache__/aleph_alpha.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/deprecated_providers/__pycache__/aleph_alpha.cpython-310.pyc index d5c6148e..aa2cc701 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/deprecated_providers/__pycache__/aleph_alpha.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/deprecated_providers/__pycache__/aleph_alpha.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/deprecated_providers/__pycache__/palm.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/deprecated_providers/__pycache__/palm.cpython-310.pyc index 961cd069..f466f1d9 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/deprecated_providers/__pycache__/palm.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/deprecated_providers/__pycache__/palm.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/empower/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/empower/chat/__pycache__/transformation.cpython-310.pyc index b49ab19b..c3d82340 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/empower/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/empower/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/__pycache__/common_utils.cpython-310.pyc index 080e29a7..82b652fb 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/__pycache__/cost_calculator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/__pycache__/cost_calculator.cpython-310.pyc index cb6a89bd..a8786fdc 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/__pycache__/cost_calculator.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/__pycache__/cost_calculator.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/audio_transcription/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/audio_transcription/__pycache__/transformation.cpython-310.pyc index 14adbda9..94f9cffd 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/audio_transcription/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/audio_transcription/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/chat/__pycache__/transformation.cpython-310.pyc index 74fa92af..2813eba7 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/completion/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/completion/__pycache__/transformation.cpython-310.pyc index e39d8c7a..17e2f6c4 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/completion/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/completion/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/embed/__pycache__/fireworks_ai_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/embed/__pycache__/fireworks_ai_transformation.cpython-310.pyc index 8caaf5e2..c59bd86f 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/embed/__pycache__/fireworks_ai_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/embed/__pycache__/fireworks_ai_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/friendliai/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/friendliai/chat/__pycache__/transformation.cpython-310.pyc index 3382af8d..5b7d32a6 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/friendliai/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/friendliai/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/galadriel/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/galadriel/chat/__pycache__/transformation.cpython-310.pyc index 2354256b..868bcd6c 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/galadriel/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/galadriel/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/gemini/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/gemini/__pycache__/common_utils.cpython-310.pyc index 305fd0ed..e9d10577 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/gemini/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/gemini/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/gemini/__pycache__/cost_calculator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/gemini/__pycache__/cost_calculator.cpython-310.pyc index 1082b901..7df7f936 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/gemini/__pycache__/cost_calculator.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/gemini/__pycache__/cost_calculator.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/gemini/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/gemini/chat/__pycache__/transformation.cpython-310.pyc index 0d56a2a5..416d18ac 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/gemini/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/gemini/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/gemini/files/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/gemini/files/__pycache__/transformation.cpython-310.pyc deleted file mode 100644 index dd38ceda..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/gemini/files/__pycache__/transformation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/github/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/github/chat/__pycache__/transformation.cpython-310.pyc index d9a98308..59e610dc 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/github/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/github/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/groq/chat/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/groq/chat/__pycache__/handler.cpython-310.pyc index 681a3cdf..76ca65b0 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/groq/chat/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/groq/chat/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/groq/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/groq/chat/__pycache__/transformation.cpython-310.pyc index ff78a637..c7457157 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/groq/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/groq/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/groq/stt/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/groq/stt/__pycache__/transformation.cpython-310.pyc index 89dbd925..d1d83b18 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/groq/stt/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/groq/stt/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/hosted_vllm/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/hosted_vllm/chat/__pycache__/transformation.cpython-310.pyc index 64d73fe4..4177cca2 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/hosted_vllm/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/hosted_vllm/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/huggingface/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/huggingface/__pycache__/common_utils.cpython-310.pyc index d910b65c..d70b3cb2 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/huggingface/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/huggingface/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/huggingface/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/huggingface/chat/__pycache__/transformation.cpython-310.pyc index 52cf42ff..87b8c51f 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/huggingface/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/huggingface/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/huggingface/embedding/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/huggingface/embedding/__pycache__/handler.cpython-310.pyc index 309b73b0..d36b6e98 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/huggingface/embedding/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/huggingface/embedding/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/huggingface/embedding/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/huggingface/embedding/__pycache__/transformation.cpython-310.pyc index d276a9a7..253aeffb 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/huggingface/embedding/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/huggingface/embedding/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/infinity/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/infinity/__pycache__/common_utils.cpython-310.pyc index e7e392e7..6e4d307f 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/infinity/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/infinity/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/infinity/embedding/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/infinity/embedding/__pycache__/handler.cpython-310.pyc deleted file mode 100644 index dae131d1..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/infinity/embedding/__pycache__/handler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/infinity/embedding/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/infinity/embedding/__pycache__/transformation.cpython-310.pyc index ba9fbb45..0175b3de 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/infinity/embedding/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/infinity/embedding/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/infinity/rerank/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/infinity/rerank/__pycache__/handler.cpython-310.pyc deleted file mode 100644 index 77112c70..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/infinity/rerank/__pycache__/handler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/infinity/rerank/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/infinity/rerank/__pycache__/transformation.cpython-310.pyc index 1d40cd97..00993df4 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/infinity/rerank/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/infinity/rerank/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/jina_ai/embedding/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/jina_ai/embedding/__pycache__/transformation.cpython-310.pyc index 8738c808..ead35ca9 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/jina_ai/embedding/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/jina_ai/embedding/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/jina_ai/rerank/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/jina_ai/rerank/__pycache__/handler.cpython-310.pyc deleted file mode 100644 index cc849064..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/jina_ai/rerank/__pycache__/handler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/jina_ai/rerank/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/jina_ai/rerank/__pycache__/transformation.cpython-310.pyc index ac11d7ee..fb7572f8 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/jina_ai/rerank/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/jina_ai/rerank/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/litellm_proxy/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/litellm_proxy/chat/__pycache__/transformation.cpython-310.pyc index b6d1bb35..45e6b0e3 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/litellm_proxy/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/litellm_proxy/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/lm_studio/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/lm_studio/chat/__pycache__/transformation.cpython-310.pyc index 9398c3da..cd4c568b 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/lm_studio/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/lm_studio/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/lm_studio/embed/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/lm_studio/embed/__pycache__/transformation.cpython-310.pyc index c202d7c2..d987c945 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/lm_studio/embed/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/lm_studio/embed/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/mistral/__pycache__/chat.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/mistral/__pycache__/chat.cpython-310.pyc deleted file mode 100644 index 63c5b7f7..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/mistral/__pycache__/chat.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/mistral/__pycache__/embedding.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/mistral/__pycache__/embedding.cpython-310.pyc deleted file mode 100644 index 40eec7fb..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/mistral/__pycache__/embedding.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/mistral/__pycache__/mistral_chat_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/mistral/__pycache__/mistral_chat_transformation.cpython-310.pyc index e0d45823..2ab84c32 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/mistral/__pycache__/mistral_chat_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/mistral/__pycache__/mistral_chat_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/mistral/__pycache__/mistral_embedding_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/mistral/__pycache__/mistral_embedding_transformation.cpython-310.pyc deleted file mode 100644 index d563c1cc..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/mistral/__pycache__/mistral_embedding_transformation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/nlp_cloud/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/nlp_cloud/__pycache__/common_utils.cpython-310.pyc index e8bd3956..64da7e87 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/nlp_cloud/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/nlp_cloud/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/nlp_cloud/chat/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/nlp_cloud/chat/__pycache__/handler.cpython-310.pyc index bddef0a9..53839902 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/nlp_cloud/chat/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/nlp_cloud/chat/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/nlp_cloud/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/nlp_cloud/chat/__pycache__/transformation.cpython-310.pyc index 95e6e7ef..56360902 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/nlp_cloud/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/nlp_cloud/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/nvidia_nim/__pycache__/chat.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/nvidia_nim/__pycache__/chat.cpython-310.pyc index b2458492..373f08d3 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/nvidia_nim/__pycache__/chat.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/nvidia_nim/__pycache__/chat.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/nvidia_nim/__pycache__/embed.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/nvidia_nim/__pycache__/embed.cpython-310.pyc index 71f74d54..b44d8259 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/nvidia_nim/__pycache__/embed.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/nvidia_nim/__pycache__/embed.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/ollama/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/ollama/__pycache__/common_utils.cpython-310.pyc index 9f162aae..134faee0 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/ollama/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/ollama/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/ollama/completion/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/ollama/completion/__pycache__/handler.cpython-310.pyc index 2a8a2ca2..e29d552a 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/ollama/completion/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/ollama/completion/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/ollama/completion/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/ollama/completion/__pycache__/transformation.cpython-310.pyc index e6763def..a0e8858d 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/ollama/completion/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/ollama/completion/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/oobabooga/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/oobabooga/__pycache__/common_utils.cpython-310.pyc index e3f99e2d..c380442a 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/oobabooga/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/oobabooga/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/oobabooga/chat/__pycache__/oobabooga.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/oobabooga/chat/__pycache__/oobabooga.cpython-310.pyc index 39c2a3f9..0fd9929d 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/oobabooga/chat/__pycache__/oobabooga.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/oobabooga/chat/__pycache__/oobabooga.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/oobabooga/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/oobabooga/chat/__pycache__/transformation.cpython-310.pyc index 14e200c5..1f1449f9 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/oobabooga/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/oobabooga/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openai/__pycache__/common_utils.cpython-310.pyc index 93809e95..cc714271 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openai/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai/__pycache__/cost_calculation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openai/__pycache__/cost_calculation.cpython-310.pyc index 91962bb1..1dd59c01 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/__pycache__/cost_calculation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openai/__pycache__/cost_calculation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai/__pycache__/openai.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openai/__pycache__/openai.cpython-310.pyc index 8667488a..206ecdc6 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/__pycache__/openai.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openai/__pycache__/openai.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai/chat/__pycache__/gpt_audio_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openai/chat/__pycache__/gpt_audio_transformation.cpython-310.pyc index 5fe8212b..47b6124d 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/chat/__pycache__/gpt_audio_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openai/chat/__pycache__/gpt_audio_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai/chat/__pycache__/gpt_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openai/chat/__pycache__/gpt_transformation.cpython-310.pyc index 9fa882b2..f9988131 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/chat/__pycache__/gpt_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openai/chat/__pycache__/gpt_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai/chat/__pycache__/o_series_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openai/chat/__pycache__/o_series_handler.cpython-310.pyc deleted file mode 100644 index 4e0f5019..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/chat/__pycache__/o_series_handler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai/chat/__pycache__/o_series_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openai/chat/__pycache__/o_series_transformation.cpython-310.pyc index 371f1259..34249f7d 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/chat/__pycache__/o_series_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openai/chat/__pycache__/o_series_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai/completion/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openai/completion/__pycache__/handler.cpython-310.pyc index e080897c..daec06bb 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/completion/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openai/completion/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai/completion/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openai/completion/__pycache__/transformation.cpython-310.pyc index 56130ca5..7469b5b1 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/completion/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openai/completion/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai/completion/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openai/completion/__pycache__/utils.cpython-310.pyc index 969ee250..1d9c4862 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/completion/__pycache__/utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openai/completion/__pycache__/utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai/fine_tuning/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openai/fine_tuning/__pycache__/handler.cpython-310.pyc index c37dc765..03e0bf09 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/fine_tuning/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openai/fine_tuning/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai/image_variations/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openai/image_variations/__pycache__/handler.cpython-310.pyc index d36711b6..7d524c6c 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/image_variations/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openai/image_variations/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai/image_variations/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openai/image_variations/__pycache__/transformation.cpython-310.pyc index cfa1c4ab..4a10ce80 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/image_variations/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openai/image_variations/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai/realtime/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openai/realtime/__pycache__/handler.cpython-310.pyc index c67d1c18..db1c7fbf 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/realtime/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openai/realtime/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai/responses/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openai/responses/__pycache__/transformation.cpython-310.pyc index 1529e913..57e601c6 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/responses/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openai/responses/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai/responses/transformation.py b/.venv/lib/python3.10/site-packages/litellm/llms/openai/responses/transformation.py index ab16a564..8cbdf6bd 100644 --- a/.venv/lib/python3.10/site-packages/litellm/llms/openai/responses/transformation.py +++ b/.venv/lib/python3.10/site-packages/litellm/llms/openai/responses/transformation.py @@ -250,3 +250,39 @@ class OpenAIResponsesAPIConfig(BaseResponsesAPIConfig): message=raw_response.text, status_code=raw_response.status_code ) return DeleteResponseResult(**raw_response_json) + + ######################################################### + ########## GET RESPONSE API TRANSFORMATION ############### + ######################################################### + def transform_get_response_api_request( + self, + response_id: str, + api_base: str, + litellm_params: GenericLiteLLMParams, + headers: dict, + ) -> Tuple[str, Dict]: + """ + Transform the get response API request into a URL and data + + OpenAI API expects the following request + - GET /v1/responses/{response_id} + """ + url = f"{api_base}/{response_id}" + data: Dict = {} + return url, data + + def transform_get_response_api_response( + self, + raw_response: httpx.Response, + logging_obj: LiteLLMLoggingObj, + ) -> ResponsesAPIResponse: + """ + Transform the get response API response into a ResponsesAPIResponse + """ + try: + raw_response_json = raw_response.json() + except Exception: + raise OpenAIError( + message=raw_response.text, status_code=raw_response.status_code + ) + return ResponsesAPIResponse(**raw_response_json) diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai/transcriptions/__pycache__/gpt_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openai/transcriptions/__pycache__/gpt_transformation.cpython-310.pyc index 86441c11..d4f7b005 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/transcriptions/__pycache__/gpt_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openai/transcriptions/__pycache__/gpt_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai/transcriptions/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openai/transcriptions/__pycache__/handler.cpython-310.pyc index 62fc044d..d8ae310f 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/transcriptions/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openai/transcriptions/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai/transcriptions/__pycache__/whisper_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openai/transcriptions/__pycache__/whisper_transformation.cpython-310.pyc index 7fdc0abb..7c2a4964 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/transcriptions/__pycache__/whisper_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openai/transcriptions/__pycache__/whisper_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai_like/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openai_like/__pycache__/common_utils.cpython-310.pyc index ad14fb7f..bbf07902 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai_like/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openai_like/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai_like/chat/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openai_like/chat/__pycache__/handler.cpython-310.pyc index b3f55d26..beafeee1 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai_like/chat/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openai_like/chat/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai_like/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openai_like/chat/__pycache__/transformation.cpython-310.pyc index 901a98a2..8bb1d5cf 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai_like/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openai_like/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openai_like/embedding/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openai_like/embedding/__pycache__/handler.cpython-310.pyc index fbfa04dc..ca492f4f 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai_like/embedding/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openai_like/embedding/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openrouter/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openrouter/__pycache__/common_utils.cpython-310.pyc index eddbfc09..4d1fce0c 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openrouter/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openrouter/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/openrouter/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/openrouter/chat/__pycache__/transformation.cpython-310.pyc index 0383552a..3c4a257f 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openrouter/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/openrouter/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/perplexity/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/perplexity/chat/__pycache__/transformation.cpython-310.pyc index 17275610..babc9cfe 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/perplexity/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/perplexity/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/petals/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/petals/__pycache__/common_utils.cpython-310.pyc index 3bfffe8e..af2753b0 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/petals/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/petals/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/petals/completion/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/petals/completion/__pycache__/handler.cpython-310.pyc index b93ea33f..b168e1d1 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/petals/completion/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/petals/completion/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/petals/completion/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/petals/completion/__pycache__/transformation.cpython-310.pyc index 44222dde..59772a13 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/petals/completion/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/petals/completion/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/predibase/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/predibase/__pycache__/common_utils.cpython-310.pyc index 6eebc21d..1636319b 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/predibase/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/predibase/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/predibase/chat/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/predibase/chat/__pycache__/handler.cpython-310.pyc index b2148300..95c09bd7 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/predibase/chat/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/predibase/chat/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/predibase/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/predibase/chat/__pycache__/transformation.cpython-310.pyc index 270445a3..6906a8c8 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/predibase/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/predibase/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/replicate/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/replicate/__pycache__/common_utils.cpython-310.pyc index 37a2396b..a4709a1c 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/replicate/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/replicate/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/replicate/chat/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/replicate/chat/__pycache__/handler.cpython-310.pyc index d949b499..43044291 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/replicate/chat/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/replicate/chat/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/replicate/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/replicate/chat/__pycache__/transformation.cpython-310.pyc index 99fdd367..30b343e5 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/replicate/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/replicate/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/__pycache__/common_utils.cpython-310.pyc index faec7a14..5896d58c 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/chat/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/chat/__pycache__/handler.cpython-310.pyc index 00e559f1..9dead2b8 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/chat/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/chat/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/chat/__pycache__/transformation.cpython-310.pyc index 98edc2ec..4228b8f9 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/completion/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/completion/__pycache__/handler.cpython-310.pyc index 0a397519..4c4b0afe 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/completion/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/completion/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/completion/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/completion/__pycache__/transformation.cpython-310.pyc index 94f31366..888370f5 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/completion/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/completion/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/completion/transformation.py b/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/completion/transformation.py index bfc0b6e5..0747a1fe 100644 --- a/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/completion/transformation.py +++ b/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/completion/transformation.py @@ -37,6 +37,7 @@ class SagemakerConfig(BaseConfig): """ max_new_tokens: Optional[int] = None + max_completion_tokens: Optional[int] = None top_p: Optional[float] = None temperature: Optional[float] = None return_full_text: Optional[bool] = None @@ -44,6 +45,7 @@ class SagemakerConfig(BaseConfig): def __init__( self, max_new_tokens: Optional[int] = None, + max_completion_tokens: Optional[int] = None, top_p: Optional[float] = None, temperature: Optional[float] = None, return_full_text: Optional[bool] = None, @@ -65,7 +67,7 @@ class SagemakerConfig(BaseConfig): ) def get_supported_openai_params(self, model: str) -> List: - return ["stream", "temperature", "max_tokens", "top_p", "stop", "n"] + return ["stream", "temperature", "max_tokens", "max_completion_tokens", "top_p", "stop", "n"] def map_openai_params( self, @@ -102,6 +104,8 @@ class SagemakerConfig(BaseConfig): if value == 0: value = 1 optional_params["max_new_tokens"] = value + if param == "max_completion_tokens": + optional_params["max_new_tokens"] = value non_default_params.pop("aws_sagemaker_allow_zero_temp", None) return optional_params diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/sambanova/__pycache__/chat.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/sambanova/__pycache__/chat.cpython-310.pyc index d830fcc9..0bba44bc 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/sambanova/__pycache__/chat.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/sambanova/__pycache__/chat.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/snowflake/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/snowflake/__pycache__/common_utils.cpython-310.pyc deleted file mode 100644 index 8333caff..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/snowflake/__pycache__/common_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/snowflake/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/snowflake/chat/__pycache__/transformation.cpython-310.pyc index 5975e947..3c6aa884 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/snowflake/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/snowflake/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/__pycache__/chat.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/__pycache__/chat.cpython-310.pyc index e84f9c4d..19b7669c 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/__pycache__/chat.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/__pycache__/chat.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/__pycache__/cost_calculator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/__pycache__/cost_calculator.cpython-310.pyc index 63137aec..fa5d0a82 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/__pycache__/cost_calculator.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/__pycache__/cost_calculator.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/__pycache__/embed.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/__pycache__/embed.cpython-310.pyc deleted file mode 100644 index 07f43819..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/__pycache__/embed.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/completion/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/completion/__pycache__/handler.cpython-310.pyc deleted file mode 100644 index 3387da47..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/completion/__pycache__/handler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/completion/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/completion/__pycache__/transformation.cpython-310.pyc index bb63e51c..7718bc47 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/completion/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/completion/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/rerank/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/rerank/__pycache__/handler.cpython-310.pyc index fa3c09cd..d5c8901c 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/rerank/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/rerank/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/rerank/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/rerank/__pycache__/transformation.cpython-310.pyc index d1737289..f1378767 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/rerank/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/rerank/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/topaz/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/topaz/__pycache__/common_utils.cpython-310.pyc index 4ea55625..bbc558a3 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/topaz/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/topaz/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/topaz/image_variations/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/topaz/image_variations/__pycache__/transformation.cpython-310.pyc index 42d0d709..8c21adce 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/topaz/image_variations/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/topaz/image_variations/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/triton/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/triton/__pycache__/common_utils.cpython-310.pyc index e077ae4b..993a9b26 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/triton/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/triton/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/triton/completion/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/triton/completion/__pycache__/handler.cpython-310.pyc deleted file mode 100644 index b8c7c76f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/triton/completion/__pycache__/handler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/triton/completion/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/triton/completion/__pycache__/transformation.cpython-310.pyc index 7204b50e..badf4a14 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/triton/completion/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/triton/completion/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/triton/embedding/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/triton/embedding/__pycache__/transformation.cpython-310.pyc index aa6c2641..35df5ef3 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/triton/embedding/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/triton/embedding/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/__pycache__/common_utils.cpython-310.pyc index 57844e46..539aa954 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/__pycache__/cost_calculator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/__pycache__/cost_calculator.cpython-310.pyc index 89a7aa25..39f636bd 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/__pycache__/cost_calculator.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/__pycache__/cost_calculator.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/__pycache__/vertex_ai_non_gemini.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/__pycache__/vertex_ai_non_gemini.cpython-310.pyc index f92e3633..04ed5747 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/__pycache__/vertex_ai_non_gemini.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/__pycache__/vertex_ai_non_gemini.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/__pycache__/vertex_llm_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/__pycache__/vertex_llm_base.cpython-310.pyc index 95104869..f9926002 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/__pycache__/vertex_llm_base.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/__pycache__/vertex_llm_base.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/batches/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/batches/__pycache__/handler.cpython-310.pyc index 0da7c017..c1761efd 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/batches/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/batches/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/batches/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/batches/__pycache__/transformation.cpython-310.pyc index 209a1be9..eaafe8ac 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/batches/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/batches/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/context_caching/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/context_caching/__pycache__/transformation.cpython-310.pyc deleted file mode 100644 index 13ce5948..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/context_caching/__pycache__/transformation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/context_caching/__pycache__/vertex_ai_context_caching.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/context_caching/__pycache__/vertex_ai_context_caching.cpython-310.pyc deleted file mode 100644 index 45bf7a7c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/context_caching/__pycache__/vertex_ai_context_caching.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/files/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/files/__pycache__/handler.cpython-310.pyc index 068255d8..863e2766 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/files/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/files/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/files/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/files/__pycache__/transformation.cpython-310.pyc index 49892695..b21fc17d 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/files/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/files/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/fine_tuning/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/fine_tuning/__pycache__/handler.cpython-310.pyc index 3c01e313..f4886ac5 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/fine_tuning/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/fine_tuning/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/gemini/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/gemini/__pycache__/transformation.cpython-310.pyc index 865d3d8f..fb19e9da 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/gemini/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/gemini/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/gemini/__pycache__/vertex_and_google_ai_studio_gemini.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/gemini/__pycache__/vertex_and_google_ai_studio_gemini.cpython-310.pyc index 9a209dc7..0ed0e17f 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/gemini/__pycache__/vertex_and_google_ai_studio_gemini.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/gemini/__pycache__/vertex_and_google_ai_studio_gemini.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/gemini_embeddings/__pycache__/batch_embed_content_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/gemini_embeddings/__pycache__/batch_embed_content_handler.cpython-310.pyc index 16eb27af..d71034d9 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/gemini_embeddings/__pycache__/batch_embed_content_handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/gemini_embeddings/__pycache__/batch_embed_content_handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/gemini_embeddings/__pycache__/batch_embed_content_transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/gemini_embeddings/__pycache__/batch_embed_content_transformation.cpython-310.pyc index bb390593..be814077 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/gemini_embeddings/__pycache__/batch_embed_content_transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/gemini_embeddings/__pycache__/batch_embed_content_transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/image_generation/__pycache__/cost_calculator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/image_generation/__pycache__/cost_calculator.cpython-310.pyc index 30bb61c3..0264b779 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/image_generation/__pycache__/cost_calculator.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/image_generation/__pycache__/cost_calculator.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/image_generation/__pycache__/image_generation_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/image_generation/__pycache__/image_generation_handler.cpython-310.pyc index 65218ae3..5ebd298a 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/image_generation/__pycache__/image_generation_handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/image_generation/__pycache__/image_generation_handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/multimodal_embeddings/__pycache__/embedding_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/multimodal_embeddings/__pycache__/embedding_handler.cpython-310.pyc index 90581942..f3d15595 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/multimodal_embeddings/__pycache__/embedding_handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/multimodal_embeddings/__pycache__/embedding_handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/multimodal_embeddings/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/multimodal_embeddings/__pycache__/transformation.cpython-310.pyc index 443455a1..fe599c56 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/multimodal_embeddings/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/multimodal_embeddings/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/text_to_speech/__pycache__/text_to_speech_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/text_to_speech/__pycache__/text_to_speech_handler.cpython-310.pyc index 2e05c301..b92b87be 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/text_to_speech/__pycache__/text_to_speech_handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/text_to_speech/__pycache__/text_to_speech_handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_ai_partner_models/__pycache__/main.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_ai_partner_models/__pycache__/main.cpython-310.pyc index e40bf42a..0f10685c 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_ai_partner_models/__pycache__/main.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_ai_partner_models/__pycache__/main.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_ai_partner_models/ai21/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_ai_partner_models/ai21/__pycache__/transformation.cpython-310.pyc index 49432750..b69e6abc 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_ai_partner_models/ai21/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_ai_partner_models/ai21/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_ai_partner_models/anthropic/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_ai_partner_models/anthropic/__pycache__/transformation.cpython-310.pyc index 9c22316b..47ee3979 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_ai_partner_models/anthropic/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_ai_partner_models/anthropic/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_ai_partner_models/llama3/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_ai_partner_models/llama3/__pycache__/transformation.cpython-310.pyc index 28f2f37a..c808a47d 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_ai_partner_models/llama3/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_ai_partner_models/llama3/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_embeddings/__pycache__/embedding_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_embeddings/__pycache__/embedding_handler.cpython-310.pyc index a54da465..b62696dd 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_embeddings/__pycache__/embedding_handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_embeddings/__pycache__/embedding_handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_embeddings/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_embeddings/__pycache__/transformation.cpython-310.pyc index 3c9448af..97dd42a4 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_embeddings/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_embeddings/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_embeddings/__pycache__/types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_embeddings/__pycache__/types.cpython-310.pyc index 2f6a5ab6..0dfe5781 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_embeddings/__pycache__/types.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_embeddings/__pycache__/types.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_model_garden/__pycache__/main.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_model_garden/__pycache__/main.cpython-310.pyc index e0a0ca18..de5b3dad 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_model_garden/__pycache__/main.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_model_garden/__pycache__/main.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vllm/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vllm/__pycache__/common_utils.cpython-310.pyc deleted file mode 100644 index e9bee9f3..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vllm/__pycache__/common_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vllm/completion/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vllm/completion/__pycache__/handler.cpython-310.pyc index 85361925..d3b83a9a 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vllm/completion/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vllm/completion/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/vllm/completion/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/vllm/completion/__pycache__/transformation.cpython-310.pyc index 27b80a8c..af2adf17 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vllm/completion/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/vllm/completion/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/voyage/embedding/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/voyage/embedding/__pycache__/transformation.cpython-310.pyc index 0e44df58..74a254a1 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/voyage/embedding/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/voyage/embedding/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/__pycache__/common_utils.cpython-310.pyc index 9c271119..eef2bf80 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/chat/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/chat/__pycache__/handler.cpython-310.pyc index 88d79c0e..08b6e118 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/chat/__pycache__/handler.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/chat/__pycache__/handler.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/chat/__pycache__/transformation.cpython-310.pyc index 3a129c11..97098832 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/completion/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/completion/__pycache__/handler.cpython-310.pyc deleted file mode 100644 index f6f63068..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/completion/__pycache__/handler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/completion/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/completion/__pycache__/transformation.cpython-310.pyc index a3211508..72d0306b 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/completion/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/completion/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/embed/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/embed/__pycache__/transformation.cpython-310.pyc index 4e838b4e..7c6b21a3 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/embed/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/embed/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/xai/__pycache__/common_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/xai/__pycache__/common_utils.cpython-310.pyc index 9aeb85be..d9f89c9d 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/xai/__pycache__/common_utils.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/xai/__pycache__/common_utils.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/llms/xai/chat/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/llms/xai/chat/__pycache__/transformation.cpython-310.pyc index f31143ad..76422cb6 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/xai/chat/__pycache__/transformation.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/llms/xai/chat/__pycache__/transformation.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/main.py b/.venv/lib/python3.10/site-packages/litellm/main.py index 80486fbe..ff21824f 100644 --- a/.venv/lib/python3.10/site-packages/litellm/main.py +++ b/.venv/lib/python3.10/site-packages/litellm/main.py @@ -182,6 +182,7 @@ from .types.llms.openai import ( ChatCompletionPredictionContentParam, ChatCompletionUserMessage, HttpxBinaryResponseContent, + ImageGenerationRequestQuality, ) from .types.utils import ( LITELLM_IMAGE_VARIATION_PROVIDERS, @@ -1178,6 +1179,7 @@ def completion( # type: ignore # noqa: PLR0915 user_continue_message=kwargs.get("user_continue_message"), base_model=base_model, litellm_trace_id=kwargs.get("litellm_trace_id"), + litellm_session_id=kwargs.get("litellm_session_id"), hf_model_name=hf_model_name, custom_prompt_dict=custom_prompt_dict, litellm_metadata=kwargs.get("litellm_metadata"), @@ -2688,9 +2690,9 @@ def completion( # type: ignore # noqa: PLR0915 "aws_region_name" not in optional_params or optional_params["aws_region_name"] is None ): - optional_params[ - "aws_region_name" - ] = aws_bedrock_client.meta.region_name + optional_params["aws_region_name"] = ( + aws_bedrock_client.meta.region_name + ) bedrock_route = BedrockModelInfo.get_bedrock_route(model) if bedrock_route == "converse": @@ -4412,9 +4414,9 @@ def adapter_completion( new_kwargs = translation_obj.translate_completion_input_params(kwargs=kwargs) response: Union[ModelResponse, CustomStreamWrapper] = completion(**new_kwargs) # type: ignore - translated_response: Optional[ - Union[BaseModel, AdapterCompletionStreamWrapper] - ] = None + translated_response: Optional[Union[BaseModel, AdapterCompletionStreamWrapper]] = ( + None + ) if isinstance(response, ModelResponse): translated_response = translation_obj.translate_completion_output_params( response=response @@ -4567,7 +4569,7 @@ def image_generation( # noqa: PLR0915 prompt: str, model: Optional[str] = None, n: Optional[int] = None, - quality: Optional[str] = None, + quality: Optional[Union[str, ImageGenerationRequestQuality]] = None, response_format: Optional[str] = None, size: Optional[str] = None, style: Optional[str] = None, @@ -5510,7 +5512,10 @@ def speech( # noqa: PLR0915 async def ahealth_check_wildcard_models( - model: str, custom_llm_provider: str, model_params: dict + model: str, + custom_llm_provider: str, + model_params: dict, + litellm_logging_obj: Logging, ) -> dict: # this is a wildcard model, we need to pick a random model from the provider cheapest_models = pick_cheapest_chat_models_from_llm_provider( @@ -5527,6 +5532,7 @@ async def ahealth_check_wildcard_models( else: fallback_models = None model_params["model"] = cheapest_models[0] + model_params["litellm_logging_obj"] = litellm_logging_obj model_params["fallbacks"] = fallback_models model_params["max_tokens"] = 1 await acompletion(**model_params) @@ -5593,6 +5599,7 @@ async def ahealth_check( model=model, custom_llm_provider=custom_llm_provider, model_params=model_params, + litellm_logging_obj=litellm_logging_obj, ) model_params["litellm_logging_obj"] = litellm_logging_obj @@ -5834,9 +5841,9 @@ def stream_chunk_builder( # noqa: PLR0915 ] if len(content_chunks) > 0: - response["choices"][0]["message"][ - "content" - ] = processor.get_combined_content(content_chunks) + response["choices"][0]["message"]["content"] = ( + processor.get_combined_content(content_chunks) + ) reasoning_chunks = [ chunk @@ -5847,9 +5854,9 @@ def stream_chunk_builder( # noqa: PLR0915 ] if len(reasoning_chunks) > 0: - response["choices"][0]["message"][ - "reasoning_content" - ] = processor.get_combined_reasoning_content(reasoning_chunks) + response["choices"][0]["message"]["reasoning_content"] = ( + processor.get_combined_reasoning_content(reasoning_chunks) + ) audio_chunks = [ chunk diff --git a/.venv/lib/python3.10/site-packages/litellm/model_prices_and_context_window_backup.json b/.venv/lib/python3.10/site-packages/litellm/model_prices_and_context_window_backup.json index 95543d09..24d88019 100644 --- a/.venv/lib/python3.10/site-packages/litellm/model_prices_and_context_window_backup.json +++ b/.venv/lib/python3.10/site-packages/litellm/model_prices_and_context_window_backup.json @@ -356,7 +356,8 @@ "supports_vision": true, "supports_prompt_caching": true, "supports_system_messages": true, - "supports_tool_choice": true + "supports_tool_choice": true, + "deprecation_date": "2025-07-14" }, "gpt-4o-audio-preview": { "max_tokens": 16384, @@ -1437,8 +1438,80 @@ "output_cost_per_pixel": 0.0, "litellm_provider": "openai" }, + "gpt-image-1": { + "mode": "image_generation", + "input_cost_per_pixel": 4.0054321e-8, + "output_cost_per_pixel": 0.0, + "litellm_provider": "openai", + "supported_endpoints": ["/v1/images/generations"] + }, + "low/1024-x-1024/gpt-image-1": { + "mode": "image_generation", + "input_cost_per_pixel": 1.0490417e-8, + "output_cost_per_pixel": 0.0, + "litellm_provider": "openai", + "supported_endpoints": ["/v1/images/generations"] + }, + "medium/1024-x-1024/gpt-image-1": { + "mode": "image_generation", + "input_cost_per_pixel": 4.0054321e-8, + "output_cost_per_pixel": 0.0, + "litellm_provider": "openai", + "supported_endpoints": ["/v1/images/generations"] + }, + "high/1024-x-1024/gpt-image-1": { + "mode": "image_generation", + "input_cost_per_pixel": 1.59263611e-7, + "output_cost_per_pixel": 0.0, + "litellm_provider": "openai", + "supported_endpoints": ["/v1/images/generations"] + }, + "low/1024-x-1536/gpt-image-1": { + "mode": "image_generation", + "input_cost_per_pixel": 1.0172526e-8, + "output_cost_per_pixel": 0.0, + "litellm_provider": "openai", + "supported_endpoints": ["/v1/images/generations"] + }, + "medium/1024-x-1536/gpt-image-1": { + "mode": "image_generation", + "input_cost_per_pixel": 4.0054321e-8, + "output_cost_per_pixel": 0.0, + "litellm_provider": "openai", + "supported_endpoints": ["/v1/images/generations"] + }, + "high/1024-x-1536/gpt-image-1": { + "mode": "image_generation", + "input_cost_per_pixel": 1.58945719e-7, + "output_cost_per_pixel": 0.0, + "litellm_provider": "openai", + "supported_endpoints": ["/v1/images/generations"] + }, + "low/1536-x-1024/gpt-image-1": { + "mode": "image_generation", + "input_cost_per_pixel": 1.0172526e-8, + "output_cost_per_pixel": 0.0, + "litellm_provider": "openai", + "supported_endpoints": ["/v1/images/generations"] + }, + "medium/1536-x-1024/gpt-image-1": { + "mode": "image_generation", + "input_cost_per_pixel": 4.0054321e-8, + "output_cost_per_pixel": 0.0, + "litellm_provider": "openai", + "supported_endpoints": ["/v1/images/generations"] + }, + "high/1536-x-1024/gpt-image-1": { + "mode": "image_generation", + "input_cost_per_pixel": 1.58945719e-7, + "output_cost_per_pixel": 0.0, + "litellm_provider": "openai", + "supported_endpoints": ["/v1/images/generations"] + }, "gpt-4o-transcribe": { "mode": "audio_transcription", + "max_input_tokens": 16000, + "max_output_tokens": 2000, "input_cost_per_token": 0.0000025, "input_cost_per_audio_token": 0.000006, "output_cost_per_token": 0.00001, @@ -1447,6 +1520,8 @@ }, "gpt-4o-mini-transcribe": { "mode": "audio_transcription", + "max_input_tokens": 16000, + "max_output_tokens": 2000, "input_cost_per_token": 0.00000125, "input_cost_per_audio_token": 0.000003, "output_cost_per_token": 0.000005, @@ -2049,9 +2124,9 @@ "max_tokens": 65536, "max_input_tokens": 128000, "max_output_tokens": 65536, - "input_cost_per_token": 0.00000121, - "output_cost_per_token": 0.00000484, - "cache_read_input_token_cost": 0.000000605, + "input_cost_per_token": 1.1e-6, + "output_cost_per_token": 4.4e-6, + "cache_read_input_token_cost": 0.55e-6, "litellm_provider": "azure", "mode": "chat", "supports_function_calling": true, @@ -2369,7 +2444,8 @@ "supports_response_schema": true, "supports_vision": true, "supports_prompt_caching": true, - "supports_tool_choice": true + "supports_tool_choice": true, + "deprecation_date": "2025-08-20" }, "azure/us/gpt-4o-2024-08-06": { "max_tokens": 16384, @@ -2409,13 +2485,15 @@ "max_output_tokens": 16384, "input_cost_per_token": 0.0000025, "output_cost_per_token": 0.000010, + "cache_read_input_token_cost": 0.00000125, "litellm_provider": "azure", "mode": "chat", "supports_function_calling": true, "supports_parallel_function_calling": true, "supports_response_schema": true, "supports_vision": true, - "supports_tool_choice": true + "supports_tool_choice": true, + "deprecation_date": "2025-12-20" }, "azure/global-standard/gpt-4o-mini": { "max_tokens": 16384, @@ -2788,7 +2866,77 @@ "output_cost_per_token": 0.000000, "litellm_provider": "azure", "mode": "embedding" - }, + }, + "azure/gpt-image-1": { + "mode": "image_generation", + "input_cost_per_pixel": 4.0054321e-8, + "output_cost_per_pixel": 0.0, + "litellm_provider": "azure", + "supported_endpoints": ["/v1/images/generations"] + }, + "azure/low/1024-x-1024/gpt-image-1": { + "mode": "image_generation", + "input_cost_per_pixel": 1.0490417e-8, + "output_cost_per_pixel": 0.0, + "litellm_provider": "azure", + "supported_endpoints": ["/v1/images/generations"] + }, + "azure/medium/1024-x-1024/gpt-image-1": { + "mode": "image_generation", + "input_cost_per_pixel": 4.0054321e-8, + "output_cost_per_pixel": 0.0, + "litellm_provider": "azure", + "supported_endpoints": ["/v1/images/generations"] + }, + "azure/high/1024-x-1024/gpt-image-1": { + "mode": "image_generation", + "input_cost_per_pixel": 1.59263611e-7, + "output_cost_per_pixel": 0.0, + "litellm_provider": "azure", + "supported_endpoints": ["/v1/images/generations"] + }, + "azure/low/1024-x-1536/gpt-image-1": { + "mode": "image_generation", + "input_cost_per_pixel": 1.0172526e-8, + "output_cost_per_pixel": 0.0, + "litellm_provider": "azure", + "supported_endpoints": ["/v1/images/generations"] + }, + "azure/medium/1024-x-1536/gpt-image-1": { + "mode": "image_generation", + "input_cost_per_pixel": 4.0054321e-8, + "output_cost_per_pixel": 0.0, + "litellm_provider": "azure", + "supported_endpoints": ["/v1/images/generations"] + }, + "azure/high/1024-x-1536/gpt-image-1": { + "mode": "image_generation", + "input_cost_per_pixel": 1.58945719e-7, + "output_cost_per_pixel": 0.0, + "litellm_provider": "azure", + "supported_endpoints": ["/v1/images/generations"] + }, + "azure/low/1536-x-1024/gpt-image-1": { + "mode": "image_generation", + "input_cost_per_pixel": 1.0172526e-8, + "output_cost_per_pixel": 0.0, + "litellm_provider": "azure", + "supported_endpoints": ["/v1/images/generations"] + }, + "azure/medium/1536-x-1024/gpt-image-1": { + "mode": "image_generation", + "input_cost_per_pixel": 4.0054321e-8, + "output_cost_per_pixel": 0.0, + "litellm_provider": "azure", + "supported_endpoints": ["/v1/images/generations"] + }, + "azure/high/1536-x-1024/gpt-image-1": { + "mode": "image_generation", + "input_cost_per_pixel": 1.58945719e-7, + "output_cost_per_pixel": 0.0, + "litellm_provider": "azure", + "supported_endpoints": ["/v1/images/generations"] + }, "azure/standard/1024-x-1024/dall-e-3": { "input_cost_per_pixel": 0.0000000381469, "output_cost_per_token": 0.0, @@ -5279,14 +5427,14 @@ "input_cost_per_image": 0, "input_cost_per_video_per_second": 0, "input_cost_per_audio_per_second": 0, - "input_cost_per_token": 0, + "input_cost_per_token": 0.00000015, "input_cost_per_character": 0, "input_cost_per_token_above_128k_tokens": 0, "input_cost_per_character_above_128k_tokens": 0, "input_cost_per_image_above_128k_tokens": 0, "input_cost_per_video_per_second_above_128k_tokens": 0, "input_cost_per_audio_per_second_above_128k_tokens": 0, - "output_cost_per_token": 0, + "output_cost_per_token": 0.0000006, "output_cost_per_character": 0, "output_cost_per_token_above_128k_tokens": 0, "output_cost_per_character_above_128k_tokens": 0, @@ -5325,7 +5473,8 @@ "supports_tool_choice": true, "supported_modalities": ["text", "image", "audio", "video"], "supported_output_modalities": ["text", "image"], - "source": "https://cloud.google.com/vertex-ai/generative-ai/pricing" + "source": "https://cloud.google.com/vertex-ai/generative-ai/pricing", + "deprecation_date": "2026-02-05" }, "gemini-2.0-flash-thinking-exp": { "max_tokens": 8192, @@ -5399,6 +5548,37 @@ "source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models#gemini-2.0-flash", "supports_tool_choice": true }, + "gemini/gemini-2.5-pro-exp-03-25": { + "max_tokens": 65536, + "max_input_tokens": 1048576, + "max_output_tokens": 65536, + "max_images_per_prompt": 3000, + "max_videos_per_prompt": 10, + "max_video_length": 1, + "max_audio_length_hours": 8.4, + "max_audio_per_prompt": 1, + "max_pdf_size_mb": 30, + "input_cost_per_token": 0.0, + "input_cost_per_token_above_200k_tokens": 0.0, + "output_cost_per_token": 0.0, + "output_cost_per_token_above_200k_tokens": 0.0, + "litellm_provider": "gemini", + "mode": "chat", + "rpm": 5, + "tpm": 250000, + "supports_system_messages": true, + "supports_function_calling": true, + "supports_vision": true, + "supports_audio_input": true, + "supports_video_input": true, + "supports_pdf_input": true, + "supports_response_schema": true, + "supports_tool_choice": true, + "supported_endpoints": ["/v1/chat/completions", "/v1/completions"], + "supported_modalities": ["text", "image", "audio", "video"], + "supported_output_modalities": ["text"], + "source": "https://cloud.google.com/vertex-ai/generative-ai/pricing" + }, "gemini/gemini-2.5-flash-preview-04-17": { "max_tokens": 65536, "max_input_tokens": 1048576, @@ -5529,7 +5709,8 @@ "supported_modalities": ["text", "image", "audio", "video"], "supported_output_modalities": ["text"], "source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models#gemini-2.0-flash", - "supports_tool_choice": true + "supports_tool_choice": true, + "deprecation_date": "2026-02-25" }, "gemini-2.5-pro-preview-03-25": { "max_tokens": 65536, @@ -6988,6 +7169,17 @@ "source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models#foundation_models", "supports_tool_choice": true }, + "command-a-03-2025": { + "max_tokens": 8000, + "max_input_tokens": 256000, + "max_output_tokens": 8000, + "input_cost_per_token": 0.0000025, + "output_cost_per_token": 0.00001, + "litellm_provider": "cohere_chat", + "mode": "chat", + "supports_function_calling": true, + "supports_tool_choice": true + }, "command-r": { "max_tokens": 4096, "max_input_tokens": 128000, diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/__init__.cpython-310.pyc index 9709d02a..ccbfb46b 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/__init__.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/__init__.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/_logging.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/_logging.cpython-310.pyc deleted file mode 100644 index 78d1949e..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/_logging.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/_types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/_types.cpython-310.pyc index 8b9547c0..48ffcaf2 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/_types.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/_types.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/caching_routes.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/caching_routes.cpython-310.pyc deleted file mode 100644 index 61670dd6..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/caching_routes.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/common_request_processing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/common_request_processing.cpython-310.pyc deleted file mode 100644 index cea81295..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/common_request_processing.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/custom_prompt_management.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/custom_prompt_management.cpython-310.pyc deleted file mode 100644 index e5ffe3f7..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/custom_prompt_management.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/custom_sso.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/custom_sso.cpython-310.pyc deleted file mode 100644 index 00fe1849..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/custom_sso.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/custom_validate.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/custom_validate.cpython-310.pyc deleted file mode 100644 index 07ed4027..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/custom_validate.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/health_check.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/health_check.cpython-310.pyc deleted file mode 100644 index 668d4f88..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/health_check.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/lambda.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/lambda.cpython-310.pyc deleted file mode 100644 index e9cf3771..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/lambda.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/litellm_pre_call_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/litellm_pre_call_utils.cpython-310.pyc deleted file mode 100644 index dca227a6..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/litellm_pre_call_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/mcp_tools.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/mcp_tools.cpython-310.pyc deleted file mode 100644 index 5911b8a3..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/mcp_tools.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/post_call_rules.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/post_call_rules.cpython-310.pyc deleted file mode 100644 index 8e5c32d9..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/post_call_rules.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/prisma_migration.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/prisma_migration.cpython-310.pyc deleted file mode 100644 index a854d262..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/prisma_migration.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/proxy_cli.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/proxy_cli.cpython-310.pyc index 0381ece7..31757b3c 100644 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/proxy_cli.cpython-310.pyc and b/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/proxy_cli.cpython-310.pyc differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/proxy_server.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/proxy_server.cpython-310.pyc deleted file mode 100644 index a5f3cb28..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/proxy_server.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/route_llm_request.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/route_llm_request.cpython-310.pyc deleted file mode 100644 index 755177a6..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/route_llm_request.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/utils.cpython-310.pyc deleted file mode 100644 index f9096f9f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/_experimental/__pycache__/post_call_rules.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/_experimental/__pycache__/post_call_rules.cpython-310.pyc deleted file mode 100644 index b4aa0f7a..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/_experimental/__pycache__/post_call_rules.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/_experimental/mcp_server/__pycache__/mcp_server_manager.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/_experimental/mcp_server/__pycache__/mcp_server_manager.cpython-310.pyc deleted file mode 100644 index 4d8c4d7f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/_experimental/mcp_server/__pycache__/mcp_server_manager.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/_experimental/mcp_server/__pycache__/server.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/_experimental/mcp_server/__pycache__/server.cpython-310.pyc deleted file mode 100644 index a9c98c8a..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/_experimental/mcp_server/__pycache__/server.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/_experimental/mcp_server/__pycache__/sse_transport.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/_experimental/mcp_server/__pycache__/sse_transport.cpython-310.pyc deleted file mode 100644 index 75d8490c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/_experimental/mcp_server/__pycache__/sse_transport.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/_experimental/mcp_server/__pycache__/tool_registry.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/_experimental/mcp_server/__pycache__/tool_registry.cpython-310.pyc deleted file mode 100644 index 3d7d04fe..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/_experimental/mcp_server/__pycache__/tool_registry.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/_experimental/out/_next/static/chunks/250-7d480872c0e251dc.js b/.venv/lib/python3.10/site-packages/litellm/proxy/_experimental/out/_next/static/chunks/250-7d480872c0e251dc.js deleted file mode 100644 index 3fb93afc..00000000 --- a/.venv/lib/python3.10/site-packages/litellm/proxy/_experimental/out/_next/static/chunks/250-7d480872c0e251dc.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[250],{19250:function(e,t,o){o.d(t,{$I:function(){return K},AZ:function(){return D},Au:function(){return em},BL:function(){return eU},Br:function(){return b},E9:function(){return eZ},EB:function(){return te},EG:function(){return eX},EY:function(){return eK},Eb:function(){return C},FC:function(){return ei},Gh:function(){return eO},H1:function(){return v},H2:function(){return n},Hx:function(){return eg},I1:function(){return j},It:function(){return x},J$:function(){return ea},K8:function(){return d},K_:function(){return eY},LY:function(){return eI},Lp:function(){return eG},N3:function(){return eN},N8:function(){return ee},NL:function(){return e1},NV:function(){return f},Nc:function(){return ex},O3:function(){return eV},OD:function(){return e_},OU:function(){return eh},Of:function(){return S},Og:function(){return y},Ov:function(){return E},PT:function(){return X},Qg:function(){return eS},RQ:function(){return _},Rg:function(){return Q},Sb:function(){return eJ},So:function(){return et},TF:function(){return ta},Tj:function(){return e$},UM:function(){return e7},VA:function(){return G},Vt:function(){return eD},W_:function(){return V},X:function(){return er},XO:function(){return k},Xd:function(){return eT},Xm:function(){return F},YU:function(){return eL},Yo:function(){return J},Z9:function(){return R},Zr:function(){return m},a6:function(){return O},aC:function(){return to},ao:function(){return eq},b1:function(){return ed},cq:function(){return A},cu:function(){return eP},eH:function(){return Y},eZ:function(){return eF},fE:function(){return e8},fP:function(){return W},g:function(){return eQ},gX:function(){return eb},h3:function(){return es},hT:function(){return ej},hy:function(){return u},ix:function(){return H},j2:function(){return en},jA:function(){return eH},jE:function(){return ez},kK:function(){return p},kn:function(){return q},lP:function(){return h},lU:function(){return e4},lg:function(){return eE},mC:function(){return e9},mR:function(){return eo},mY:function(){return e5},m_:function(){return U},mp:function(){return eM},n$:function(){return ey},n9:function(){return e6},nd:function(){return e3},o6:function(){return $},oC:function(){return eC},ol:function(){return z},pf:function(){return eR},qI:function(){return g},qk:function(){return e0},qm:function(){return w},r1:function(){return tt},r6:function(){return B},rs:function(){return N},s0:function(){return L},sN:function(){return ev},t$:function(){return P},t0:function(){return ek},t3:function(){return eW},tB:function(){return e2},tN:function(){return el},u5:function(){return ec},um:function(){return eB},v9:function(){return ef},vh:function(){return eA},wX:function(){return T},wd:function(){return ew},xA:function(){return eu},xX:function(){return I},zg:function(){return ep}});var a=o(20347),r=o(41021);let n=null;console.log=function(){};let c=0,s=e=>new Promise(t=>setTimeout(t,e)),i=async e=>{let t=Date.now();t-c>6e4?(e.includes("Authentication Error - Expired Key")&&(r.ZP.info("UI Session Expired. Logging out."),c=t,await s(3e3),document.cookie="token=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;",window.location.href="/"),c=t):console.log("Error suppressed to prevent spam:",e)},l="Authorization";function d(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"Authorization";console.log("setGlobalLitellmHeaderName: ".concat(e)),l=e}let h=async()=>{let e=n?"".concat(n,"/openapi.json"):"/openapi.json",t=await fetch(e);return await t.json()},w=async e=>{try{let t=n?"".concat(n,"/get/litellm_model_cost_map"):"/get/litellm_model_cost_map",o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}}),a=await o.json();return console.log("received litellm model cost data: ".concat(a)),a}catch(e){throw console.error("Failed to get model cost map:",e),e}},p=async(e,t)=>{try{let o=n?"".concat(n,"/model/new"):"/model/new",a=await fetch(o,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({...t})});if(!a.ok){let e=await a.text()||"Network response was not ok";throw r.ZP.error(e),Error(e)}let c=await a.json();return console.log("API Response:",c),r.ZP.destroy(),r.ZP.success("Model ".concat(t.model_name," created successfully"),2),c}catch(e){throw console.error("Failed to create key:",e),e}},u=async e=>{try{let t=n?"".concat(n,"/model/settings"):"/model/settings",o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error("Network response was not ok")}return await o.json()}catch(e){console.error("Failed to get model settings:",e)}},y=async(e,t)=>{console.log("model_id in model delete call: ".concat(t));try{let o=n?"".concat(n,"/model/delete"):"/model/delete",a=await fetch(o,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({id:t})});if(!a.ok){let e=await a.text();throw i(e),console.error("Error response from the server:",e),Error("Network response was not ok")}let r=await a.json();return console.log("API Response:",r),r}catch(e){throw console.error("Failed to create key:",e),e}},f=async(e,t)=>{if(console.log("budget_id in budget delete call: ".concat(t)),null!=e)try{let o=n?"".concat(n,"/budget/delete"):"/budget/delete",a=await fetch(o,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({id:t})});if(!a.ok){let e=await a.text();throw i(e),console.error("Error response from the server:",e),Error("Network response was not ok")}let r=await a.json();return console.log("API Response:",r),r}catch(e){throw console.error("Failed to create key:",e),e}},m=async(e,t)=>{try{console.log("Form Values in budgetCreateCall:",t),console.log("Form Values after check:",t);let o=n?"".concat(n,"/budget/new"):"/budget/new",a=await fetch(o,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({...t})});if(!a.ok){let e=await a.text();throw i(e),console.error("Error response from the server:",e),Error("Network response was not ok")}let r=await a.json();return console.log("API Response:",r),r}catch(e){throw console.error("Failed to create key:",e),e}},g=async(e,t)=>{try{console.log("Form Values in budgetUpdateCall:",t),console.log("Form Values after check:",t);let o=n?"".concat(n,"/budget/update"):"/budget/update",a=await fetch(o,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({...t})});if(!a.ok){let e=await a.text();throw i(e),console.error("Error response from the server:",e),Error("Network response was not ok")}let r=await a.json();return console.log("API Response:",r),r}catch(e){throw console.error("Failed to create key:",e),e}},k=async(e,t)=>{try{let o=n?"".concat(n,"/invitation/new"):"/invitation/new",a=await fetch(o,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({user_id:t})});if(!a.ok){let e=await a.text();throw i(e),console.error("Error response from the server:",e),Error("Network response was not ok")}let r=await a.json();return console.log("API Response:",r),r}catch(e){throw console.error("Failed to create key:",e),e}},_=async e=>{try{let t=n?"".concat(n,"/alerting/settings"):"/alerting/settings",o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error("Network response was not ok")}return await o.json()}catch(e){throw console.error("Failed to get callbacks:",e),e}},T=async(e,t,o)=>{try{if(console.log("Form Values in keyCreateCall:",o),o.description&&(o.metadata||(o.metadata={}),o.metadata.description=o.description,delete o.description,o.metadata=JSON.stringify(o.metadata)),o.metadata){console.log("formValues.metadata:",o.metadata);try{o.metadata=JSON.parse(o.metadata)}catch(e){throw Error("Failed to parse metadata: "+e)}}console.log("Form Values after check:",o);let a=n?"".concat(n,"/key/generate"):"/key/generate",r=await fetch(a,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({user_id:t,...o})});if(!r.ok){let e=await r.text();throw i(e),console.error("Error response from the server:",e),Error(e)}let c=await r.json();return console.log("API Response:",c),c}catch(e){throw console.error("Failed to create key:",e),e}},E=async(e,t,o)=>{try{if(console.log("Form Values in keyCreateCall:",o),o.description&&(o.metadata||(o.metadata={}),o.metadata.description=o.description,delete o.description,o.metadata=JSON.stringify(o.metadata)),o.auto_create_key=!1,o.metadata){console.log("formValues.metadata:",o.metadata);try{o.metadata=JSON.parse(o.metadata)}catch(e){throw Error("Failed to parse metadata: "+e)}}console.log("Form Values after check:",o);let a=n?"".concat(n,"/user/new"):"/user/new",r=await fetch(a,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({user_id:t,...o})});if(!r.ok){let e=await r.text();throw i(e),console.error("Error response from the server:",e),Error(e)}let c=await r.json();return console.log("API Response:",c),c}catch(e){throw console.error("Failed to create key:",e),e}},j=async(e,t)=>{try{let o=n?"".concat(n,"/key/delete"):"/key/delete";console.log("in keyDeleteCall:",t);let a=await fetch(o,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({keys:[t]})});if(!a.ok){let e=await a.text();throw i(e),Error("Network response was not ok")}let r=await a.json();return console.log(r),r}catch(e){throw console.error("Failed to create key:",e),e}},C=async(e,t)=>{try{let o=n?"".concat(n,"/user/delete"):"/user/delete";console.log("in userDeleteCall:",t);let a=await fetch(o,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({user_ids:t})});if(!a.ok){let e=await a.text();throw i(e),Error("Network response was not ok")}let r=await a.json();return console.log(r),r}catch(e){throw console.error("Failed to delete user(s):",e),e}},N=async(e,t)=>{try{let o=n?"".concat(n,"/team/delete"):"/team/delete";console.log("in teamDeleteCall:",t);let a=await fetch(o,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({team_ids:[t]})});if(!a.ok){let e=await a.text();throw i(e),Error("Network response was not ok")}let r=await a.json();return console.log(r),r}catch(e){throw console.error("Failed to delete key:",e),e}},S=async function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,r=arguments.length>4&&void 0!==arguments[4]?arguments[4]:null,c=arguments.length>5&&void 0!==arguments[5]?arguments[5]:null,s=arguments.length>6&&void 0!==arguments[6]?arguments[6]:null,d=arguments.length>7&&void 0!==arguments[7]?arguments[7]:null,h=arguments.length>8&&void 0!==arguments[8]?arguments[8]:null,w=arguments.length>9&&void 0!==arguments[9]?arguments[9]:null;try{let p=n?"".concat(n,"/user/list"):"/user/list";console.log("in userListCall");let u=new URLSearchParams;if(t&&t.length>0){let e=t.join(",");u.append("user_ids",e)}o&&u.append("page",o.toString()),a&&u.append("page_size",a.toString()),r&&u.append("user_email",r),c&&u.append("role",c),s&&u.append("team",s),d&&u.append("sso_user_ids",d),h&&u.append("sort_by",h),w&&u.append("sort_order",w);let y=u.toString();y&&(p+="?".concat(y));let f=await fetch(p,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!f.ok){let e=await f.text();throw i(e),Error("Network response was not ok")}let m=await f.json();return console.log("/user/list API Response:",m),m}catch(e){throw console.error("Failed to create key:",e),e}},b=async function(e,t,o){let a=arguments.length>3&&void 0!==arguments[3]&&arguments[3],r=arguments.length>4?arguments[4]:void 0,c=arguments.length>5?arguments[5]:void 0,s=arguments.length>6&&void 0!==arguments[6]&&arguments[6];console.log("userInfoCall: ".concat(t,", ").concat(o,", ").concat(a,", ").concat(r,", ").concat(c,", ").concat(s));try{let d;if(a){d=n?"".concat(n,"/user/list"):"/user/list";let e=new URLSearchParams;null!=r&&e.append("page",r.toString()),null!=c&&e.append("page_size",c.toString()),d+="?".concat(e.toString())}else d=n?"".concat(n,"/user/info"):"/user/info",("Admin"!==o&&"Admin Viewer"!==o||s)&&t&&(d+="?user_id=".concat(t));console.log("Requesting user data from:",d);let h=await fetch(d,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!h.ok){let e=await h.text();throw i(e),Error("Network response was not ok")}let w=await h.json();return console.log("API Response:",w),w}catch(e){throw console.error("Failed to fetch user data:",e),e}},F=async(e,t)=>{try{let o=n?"".concat(n,"/team/info"):"/team/info";t&&(o="".concat(o,"?team_id=").concat(t)),console.log("in teamInfoCall");let a=await fetch(o,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!a.ok){let e=await a.text();throw i(e),Error("Network response was not ok")}let r=await a.json();return console.log("API Response:",r),r}catch(e){throw console.error("Failed to create key:",e),e}},x=async function(e,t){let o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;try{let a=n?"".concat(n,"/team/list"):"/team/list";console.log("in teamInfoCall");let r=new URLSearchParams;o&&r.append("user_id",o.toString()),t&&r.append("organization_id",t.toString());let c=r.toString();c&&(a+="?".concat(c));let s=await fetch(a,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!s.ok){let e=await s.text();throw i(e),Error("Network response was not ok")}let d=await s.json();return console.log("/team/list API Response:",d),d}catch(e){throw console.error("Failed to create key:",e),e}},O=async e=>{try{let t=n?"".concat(n,"/team/available"):"/team/available";console.log("in availableTeamListCall");let o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error("Network response was not ok")}let a=await o.json();return console.log("/team/available_teams API Response:",a),a}catch(e){throw e}},B=async e=>{try{let t=n?"".concat(n,"/organization/list"):"/organization/list",o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error("Network response was not ok")}return await o.json()}catch(e){throw console.error("Failed to create key:",e),e}},P=async(e,t)=>{try{let o=n?"".concat(n,"/organization/info"):"/organization/info";t&&(o="".concat(o,"?organization_id=").concat(t)),console.log("in teamInfoCall");let a=await fetch(o,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!a.ok){let e=await a.text();throw i(e),Error("Network response was not ok")}let r=await a.json();return console.log("API Response:",r),r}catch(e){throw console.error("Failed to create key:",e),e}},v=async(e,t)=>{try{if(console.log("Form Values in organizationCreateCall:",t),t.metadata){console.log("formValues.metadata:",t.metadata);try{t.metadata=JSON.parse(t.metadata)}catch(e){throw console.error("Failed to parse metadata:",e),Error("Failed to parse metadata: "+e)}}let o=n?"".concat(n,"/organization/new"):"/organization/new",a=await fetch(o,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({...t})});if(!a.ok){let e=await a.text();throw i(e),console.error("Error response from the server:",e),Error("Network response was not ok")}let r=await a.json();return console.log("API Response:",r),r}catch(e){throw console.error("Failed to create key:",e),e}},G=async(e,t)=>{try{console.log("Form Values in organizationUpdateCall:",t);let o=n?"".concat(n,"/organization/update"):"/organization/update",a=await fetch(o,{method:"PATCH",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({...t})});if(!a.ok){let e=await a.text();throw i(e),console.error("Error response from the server:",e),Error("Network response was not ok")}let r=await a.json();return console.log("Update Team Response:",r),r}catch(e){throw console.error("Failed to create key:",e),e}},A=async(e,t)=>{try{let o=n?"".concat(n,"/organization/delete"):"/organization/delete",a=await fetch(o,{method:"DELETE",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({organization_ids:[t]})});if(!a.ok){let e=await a.text();throw i(e),Error("Error deleting organization: ".concat(e))}return await a.json()}catch(e){throw console.error("Failed to delete organization:",e),e}},J=async(e,t)=>{try{let o=n?"".concat(n,"/utils/transform_request"):"/utils/transform_request",a=await fetch(o,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify(t)});if(!a.ok){let e=await a.text();throw i(e),Error("Network response was not ok")}return await a.json()}catch(e){throw console.error("Failed to create key:",e),e}},I=async function(e,t,o){let a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:1;try{let r=n?"".concat(n,"/user/daily/activity"):"/user/daily/activity",c=new URLSearchParams;c.append("start_date",t.toISOString()),c.append("end_date",o.toISOString()),c.append("page_size","1000"),c.append("page",a.toString());let s=c.toString();s&&(r+="?".concat(s));let d=await fetch(r,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!d.ok){let e=await d.text();throw i(e),Error("Network response was not ok")}return await d.json()}catch(e){throw console.error("Failed to create key:",e),e}},R=async function(e,t,o){let a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:1,r=arguments.length>4&&void 0!==arguments[4]?arguments[4]:null;try{let c=n?"".concat(n,"/tag/daily/activity"):"/tag/daily/activity",s=new URLSearchParams;s.append("start_date",t.toISOString()),s.append("end_date",o.toISOString()),s.append("page_size","1000"),s.append("page",a.toString()),r&&s.append("tags",r.join(","));let d=s.toString();d&&(c+="?".concat(d));let h=await fetch(c,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!h.ok){let e=await h.text();throw i(e),Error("Network response was not ok")}return await h.json()}catch(e){throw console.error("Failed to create key:",e),e}},z=async function(e,t,o){let a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:1,r=arguments.length>4&&void 0!==arguments[4]?arguments[4]:null;try{let c=n?"".concat(n,"/team/daily/activity"):"/team/daily/activity",s=new URLSearchParams;s.append("start_date",t.toISOString()),s.append("end_date",o.toISOString()),s.append("page_size","1000"),s.append("page",a.toString()),r&&s.append("team_ids",r.join(",")),s.append("exclude_team_ids","litellm-dashboard");let d=s.toString();d&&(c+="?".concat(d));let h=await fetch(c,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!h.ok){let e=await h.text();throw i(e),Error("Network response was not ok")}return await h.json()}catch(e){throw console.error("Failed to create key:",e),e}},V=async e=>{try{let t=n?"".concat(n,"/onboarding/get_token"):"/onboarding/get_token";t+="?invite_link=".concat(e);let o=await fetch(t,{method:"GET",headers:{"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error("Network response was not ok")}return await o.json()}catch(e){throw console.error("Failed to create key:",e),e}},U=async(e,t,o,a)=>{let r=n?"".concat(n,"/onboarding/claim_token"):"/onboarding/claim_token";try{let n=await fetch(r,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({invitation_link:t,user_id:o,password:a})});if(!n.ok){let e=await n.text();throw i(e),Error("Network response was not ok")}let c=await n.json();return console.log(c),c}catch(e){throw console.error("Failed to delete key:",e),e}},L=async(e,t,o)=>{try{let a=n?"".concat(n,"/key/").concat(t,"/regenerate"):"/key/".concat(t,"/regenerate"),r=await fetch(a,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify(o)});if(!r.ok){let e=await r.text();throw i(e),Error("Network response was not ok")}let c=await r.json();return console.log("Regenerate key Response:",c),c}catch(e){throw console.error("Failed to regenerate key:",e),e}},M=!1,Z=null,D=async(e,t,o)=>{try{console.log("modelInfoCall:",e,t,o);let c=n?"".concat(n,"/v2/model/info"):"/v2/model/info";a.ZL.includes(o)||(c+="?user_models_only=true");let s=await fetch(c,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!s.ok){let e=await s.text();throw e+="error shown=".concat(M),M||(e.includes("No model list passed")&&(e="No Models Exist. Click Add Model to get started."),r.ZP.info(e,10),M=!0,Z&&clearTimeout(Z),Z=setTimeout(()=>{M=!1},1e4)),Error("Network response was not ok")}let i=await s.json();return console.log("modelInfoCall:",i),i}catch(e){throw console.error("Failed to create key:",e),e}},H=async(e,t)=>{try{let o=n?"".concat(n,"/v1/model/info"):"/v1/model/info";o+="?litellm_model_id=".concat(t);let a=await fetch(o,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!a.ok)throw await a.text(),Error("Network response was not ok");let r=await a.json();return console.log("modelInfoV1Call:",r),r}catch(e){throw console.error("Failed to create key:",e),e}},q=async e=>{try{let t=n?"".concat(n,"/model_group/info"):"/model_group/info",o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok)throw await o.text(),Error("Network response was not ok");let a=await o.json();return console.log("modelHubCall:",a),a}catch(e){throw console.error("Failed to create key:",e),e}},X=async e=>{try{let t=n?"".concat(n,"/get/allowed_ips"):"/get/allowed_ips",o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw Error("Network response was not ok: ".concat(e))}let a=await o.json();return console.log("getAllowedIPs:",a),a.data}catch(e){throw console.error("Failed to get allowed IPs:",e),e}},Y=async(e,t)=>{try{let o=n?"".concat(n,"/add/allowed_ip"):"/add/allowed_ip",a=await fetch(o,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({ip:t})});if(!a.ok){let e=await a.text();throw Error("Network response was not ok: ".concat(e))}let r=await a.json();return console.log("addAllowedIP:",r),r}catch(e){throw console.error("Failed to add allowed IP:",e),e}},K=async(e,t)=>{try{let o=n?"".concat(n,"/delete/allowed_ip"):"/delete/allowed_ip",a=await fetch(o,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({ip:t})});if(!a.ok){let e=await a.text();throw Error("Network response was not ok: ".concat(e))}let r=await a.json();return console.log("deleteAllowedIP:",r),r}catch(e){throw console.error("Failed to delete allowed IP:",e),e}},$=async(e,t,o,a,r,c,s,d)=>{try{let t=n?"".concat(n,"/model/metrics"):"/model/metrics";a&&(t="".concat(t,"?_selected_model_group=").concat(a,"&startTime=").concat(r,"&endTime=").concat(c,"&api_key=").concat(s,"&customer=").concat(d));let o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error("Network response was not ok")}return await o.json()}catch(e){throw console.error("Failed to create key:",e),e}},Q=async(e,t,o,a)=>{try{let r=n?"".concat(n,"/model/streaming_metrics"):"/model/streaming_metrics";t&&(r="".concat(r,"?_selected_model_group=").concat(t,"&startTime=").concat(o,"&endTime=").concat(a));let c=await fetch(r,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!c.ok){let e=await c.text();throw i(e),Error("Network response was not ok")}return await c.json()}catch(e){throw console.error("Failed to create key:",e),e}},W=async(e,t,o,a,r,c,s,d)=>{try{let t=n?"".concat(n,"/model/metrics/slow_responses"):"/model/metrics/slow_responses";a&&(t="".concat(t,"?_selected_model_group=").concat(a,"&startTime=").concat(r,"&endTime=").concat(c,"&api_key=").concat(s,"&customer=").concat(d));let o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error("Network response was not ok")}return await o.json()}catch(e){throw console.error("Failed to create key:",e),e}},ee=async(e,t,o,a,r,c,s,d)=>{try{let t=n?"".concat(n,"/model/metrics/exceptions"):"/model/metrics/exceptions";a&&(t="".concat(t,"?_selected_model_group=").concat(a,"&startTime=").concat(r,"&endTime=").concat(c,"&api_key=").concat(s,"&customer=").concat(d));let o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error("Network response was not ok")}return await o.json()}catch(e){throw console.error("Failed to create key:",e),e}},et=async function(e,t,o){let a=arguments.length>3&&void 0!==arguments[3]&&arguments[3],r=arguments.length>4&&void 0!==arguments[4]?arguments[4]:null;console.log("in /models calls, globalLitellmHeaderName",l);try{let t=n?"".concat(n,"/models"):"/models",o=new URLSearchParams;!0===a&&o.append("return_wildcard_routes","True"),r&&o.append("team_id",r.toString()),o.toString()&&(t+="?".concat(o.toString()));let c=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!c.ok){let e=await c.text();throw i(e),Error("Network response was not ok")}return await c.json()}catch(e){throw console.error("Failed to create key:",e),e}},eo=async e=>{try{let t=n?"".concat(n,"/global/spend/teams"):"/global/spend/teams";console.log("in teamSpendLogsCall:",t);let o=await fetch("".concat(t),{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error("Network response was not ok")}let a=await o.json();return console.log(a),a}catch(e){throw console.error("Failed to create key:",e),e}},ea=async(e,t,o,a)=>{try{let r=n?"".concat(n,"/global/spend/tags"):"/global/spend/tags";t&&o&&(r="".concat(r,"?start_date=").concat(t,"&end_date=").concat(o)),a&&(r+="".concat(r,"&tags=").concat(a.join(","))),console.log("in tagsSpendLogsCall:",r);let c=await fetch("".concat(r),{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!c.ok)throw await c.text(),Error("Network response was not ok");let s=await c.json();return console.log(s),s}catch(e){throw console.error("Failed to create key:",e),e}},er=async e=>{try{let t=n?"".concat(n,"/global/spend/all_tag_names"):"/global/spend/all_tag_names";console.log("in global/spend/all_tag_names call",t);let o=await fetch("".concat(t),{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok)throw await o.text(),Error("Network response was not ok");let a=await o.json();return console.log(a),a}catch(e){throw console.error("Failed to create key:",e),e}},en=async e=>{try{let t=n?"".concat(n,"/global/all_end_users"):"/global/all_end_users";console.log("in global/all_end_users call",t);let o=await fetch("".concat(t),{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok)throw await o.text(),Error("Network response was not ok");let a=await o.json();return console.log(a),a}catch(e){throw console.error("Failed to create key:",e),e}},ec=async(e,t)=>{try{let o=n?"".concat(n,"/user/filter/ui"):"/user/filter/ui";t.get("user_email")&&(o+="?user_email=".concat(t.get("user_email"))),t.get("user_id")&&(o+="?user_id=".concat(t.get("user_id")));let a=await fetch(o,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!a.ok){let e=await a.text();throw i(e),Error("Network response was not ok")}return await a.json()}catch(e){throw console.error("Failed to create key:",e),e}},es=async(e,t,o,a,r,c,s,d,h)=>{try{let w=n?"".concat(n,"/spend/logs/ui"):"/spend/logs/ui",p=new URLSearchParams;t&&p.append("api_key",t),o&&p.append("team_id",o),a&&p.append("request_id",a),r&&p.append("start_date",r),c&&p.append("end_date",c),s&&p.append("page",s.toString()),d&&p.append("page_size",d.toString()),h&&p.append("user_id",h);let u=p.toString();u&&(w+="?".concat(u));let y=await fetch(w,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!y.ok){let e=await y.text();throw i(e),Error("Network response was not ok")}let f=await y.json();return console.log("Spend Logs Response:",f),f}catch(e){throw console.error("Failed to fetch spend logs:",e),e}},ei=async e=>{try{let t=n?"".concat(n,"/global/spend/logs"):"/global/spend/logs",o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error("Network response was not ok")}let a=await o.json();return console.log(a),a}catch(e){throw console.error("Failed to create key:",e),e}},el=async e=>{try{let t=n?"".concat(n,"/global/spend/keys?limit=5"):"/global/spend/keys?limit=5",o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error("Network response was not ok")}let a=await o.json();return console.log(a),a}catch(e){throw console.error("Failed to create key:",e),e}},ed=async(e,t,o,a)=>{try{let r=n?"".concat(n,"/global/spend/end_users"):"/global/spend/end_users",c="";c=t?JSON.stringify({api_key:t,startTime:o,endTime:a}):JSON.stringify({startTime:o,endTime:a});let s={method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:c},d=await fetch(r,s);if(!d.ok){let e=await d.text();throw i(e),Error("Network response was not ok")}let h=await d.json();return console.log(h),h}catch(e){throw console.error("Failed to create key:",e),e}},eh=async(e,t,o,a)=>{try{let r=n?"".concat(n,"/global/spend/provider"):"/global/spend/provider";o&&a&&(r+="?start_date=".concat(o,"&end_date=").concat(a)),t&&(r+="&api_key=".concat(t));let c={method:"GET",headers:{[l]:"Bearer ".concat(e)}},s=await fetch(r,c);if(!s.ok){let e=await s.text();throw i(e),Error("Network response was not ok")}let d=await s.json();return console.log(d),d}catch(e){throw console.error("Failed to fetch spend data:",e),e}},ew=async(e,t,o)=>{try{let a=n?"".concat(n,"/global/activity"):"/global/activity";t&&o&&(a+="?start_date=".concat(t,"&end_date=").concat(o));let r={method:"GET",headers:{[l]:"Bearer ".concat(e)}},c=await fetch(a,r);if(!c.ok)throw await c.text(),Error("Network response was not ok");let s=await c.json();return console.log(s),s}catch(e){throw console.error("Failed to fetch spend data:",e),e}},ep=async(e,t,o)=>{try{let a=n?"".concat(n,"/global/activity/cache_hits"):"/global/activity/cache_hits";t&&o&&(a+="?start_date=".concat(t,"&end_date=").concat(o));let r={method:"GET",headers:{[l]:"Bearer ".concat(e)}},c=await fetch(a,r);if(!c.ok)throw await c.text(),Error("Network response was not ok");let s=await c.json();return console.log(s),s}catch(e){throw console.error("Failed to fetch spend data:",e),e}},eu=async(e,t,o)=>{try{let a=n?"".concat(n,"/global/activity/model"):"/global/activity/model";t&&o&&(a+="?start_date=".concat(t,"&end_date=").concat(o));let r={method:"GET",headers:{[l]:"Bearer ".concat(e)}},c=await fetch(a,r);if(!c.ok)throw await c.text(),Error("Network response was not ok");let s=await c.json();return console.log(s),s}catch(e){throw console.error("Failed to fetch spend data:",e),e}},ey=async(e,t,o,a)=>{try{let r=n?"".concat(n,"/global/activity/exceptions"):"/global/activity/exceptions";t&&o&&(r+="?start_date=".concat(t,"&end_date=").concat(o)),a&&(r+="&model_group=".concat(a));let c={method:"GET",headers:{[l]:"Bearer ".concat(e)}},s=await fetch(r,c);if(!s.ok)throw await s.text(),Error("Network response was not ok");let i=await s.json();return console.log(i),i}catch(e){throw console.error("Failed to fetch spend data:",e),e}},ef=async(e,t,o,a)=>{try{let r=n?"".concat(n,"/global/activity/exceptions/deployment"):"/global/activity/exceptions/deployment";t&&o&&(r+="?start_date=".concat(t,"&end_date=").concat(o)),a&&(r+="&model_group=".concat(a));let c={method:"GET",headers:{[l]:"Bearer ".concat(e)}},s=await fetch(r,c);if(!s.ok)throw await s.text(),Error("Network response was not ok");let i=await s.json();return console.log(i),i}catch(e){throw console.error("Failed to fetch spend data:",e),e}},em=async e=>{try{let t=n?"".concat(n,"/global/spend/models?limit=5"):"/global/spend/models?limit=5",o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error("Network response was not ok")}let a=await o.json();return console.log(a),a}catch(e){throw console.error("Failed to create key:",e),e}},eg=async(e,t,o)=>{try{console.log("Sending model connection test request:",JSON.stringify(t));let r=n?"".concat(n,"/health/test_connection"):"/health/test_connection",c=await fetch(r,{method:"POST",headers:{"Content-Type":"application/json",[l]:"Bearer ".concat(e)},body:JSON.stringify({litellm_params:t,mode:o})}),s=c.headers.get("content-type");if(!s||!s.includes("application/json")){let e=await c.text();throw console.error("Received non-JSON response:",e),Error("Received non-JSON response (".concat(c.status,": ").concat(c.statusText,"). Check network tab for details."))}let i=await c.json();if(!c.ok||"error"===i.status){if("error"===i.status);else{var a;return{status:"error",message:(null===(a=i.error)||void 0===a?void 0:a.message)||"Connection test failed: ".concat(c.status," ").concat(c.statusText)}}}return i}catch(e){throw console.error("Model connection test error:",e),e}},ek=async(e,t)=>{try{console.log("entering keyInfoV1Call");let o=n?"".concat(n,"/key/info"):"/key/info";o="".concat(o,"?key=").concat(t);let a=await fetch(o,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(console.log("response",a),!a.ok){let e=await a.text();i(e),r.ZP.error("Failed to fetch key info - "+e)}let c=await a.json();return console.log("data",c),c}catch(e){throw console.error("Failed to fetch key info:",e),e}},e_=async(e,t,o,a,r,c)=>{try{let s=n?"".concat(n,"/key/list"):"/key/list";console.log("in keyListCall");let d=new URLSearchParams;o&&d.append("team_id",o.toString()),t&&d.append("organization_id",t.toString()),a&&d.append("key_alias",a),r&&d.append("page",r.toString()),c&&d.append("size",c.toString()),d.append("return_full_object","true"),d.append("include_team_keys","true");let h=d.toString();h&&(s+="?".concat(h));let w=await fetch(s,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!w.ok){let e=await w.text();throw i(e),Error("Network response was not ok")}let p=await w.json();return console.log("/team/list API Response:",p),p}catch(e){throw console.error("Failed to create key:",e),e}},eT=async(e,t)=>{try{let o=n?"".concat(n,"/user/get_users?role=").concat(t):"/user/get_users?role=".concat(t);console.log("in userGetAllUsersCall:",o);let a=await fetch(o,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!a.ok){let e=await a.text();throw i(e),Error("Network response was not ok")}let r=await a.json();return console.log(r),r}catch(e){throw console.error("Failed to get requested models:",e),e}},eE=async e=>{try{let t=n?"".concat(n,"/user/available_roles"):"/user/available_roles",o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok)throw await o.text(),Error("Network response was not ok");let a=await o.json();return console.log("response from user/available_role",a),a}catch(e){throw e}},ej=async(e,t)=>{try{if(console.log("Form Values in teamCreateCall:",t),t.metadata){console.log("formValues.metadata:",t.metadata);try{t.metadata=JSON.parse(t.metadata)}catch(e){throw Error("Failed to parse metadata: "+e)}}let o=n?"".concat(n,"/team/new"):"/team/new",a=await fetch(o,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({...t})});if(!a.ok){let e=await a.text();throw i(e),console.error("Error response from the server:",e),Error("Network response was not ok")}let r=await a.json();return console.log("API Response:",r),r}catch(e){throw console.error("Failed to create key:",e),e}},eC=async(e,t)=>{try{if(console.log("Form Values in credentialCreateCall:",t),t.metadata){console.log("formValues.metadata:",t.metadata);try{t.metadata=JSON.parse(t.metadata)}catch(e){throw Error("Failed to parse metadata: "+e)}}let o=n?"".concat(n,"/credentials"):"/credentials",a=await fetch(o,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({...t})});if(!a.ok){let e=await a.text();throw i(e),console.error("Error response from the server:",e),Error("Network response was not ok")}let r=await a.json();return console.log("API Response:",r),r}catch(e){throw console.error("Failed to create key:",e),e}},eN=async e=>{try{let t=n?"".concat(n,"/credentials"):"/credentials";console.log("in credentialListCall");let o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error("Network response was not ok")}let a=await o.json();return console.log("/credentials API Response:",a),a}catch(e){throw console.error("Failed to create key:",e),e}},eS=async(e,t,o)=>{try{let a=n?"".concat(n,"/credentials"):"/credentials";t?a+="/by_name/".concat(t):o&&(a+="/by_model/".concat(o)),console.log("in credentialListCall");let r=await fetch(a,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!r.ok){let e=await r.text();throw i(e),Error("Network response was not ok")}let c=await r.json();return console.log("/credentials API Response:",c),c}catch(e){throw console.error("Failed to create key:",e),e}},eb=async(e,t)=>{try{let o=n?"".concat(n,"/credentials/").concat(t):"/credentials/".concat(t);console.log("in credentialDeleteCall:",t);let a=await fetch(o,{method:"DELETE",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!a.ok){let e=await a.text();throw i(e),Error("Network response was not ok")}let r=await a.json();return console.log(r),r}catch(e){throw console.error("Failed to delete key:",e),e}},eF=async(e,t,o)=>{try{if(console.log("Form Values in credentialUpdateCall:",o),o.metadata){console.log("formValues.metadata:",o.metadata);try{o.metadata=JSON.parse(o.metadata)}catch(e){throw Error("Failed to parse metadata: "+e)}}let a=n?"".concat(n,"/credentials/").concat(t):"/credentials/".concat(t),r=await fetch(a,{method:"PATCH",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({...o})});if(!r.ok){let e=await r.text();throw i(e),console.error("Error response from the server:",e),Error("Network response was not ok")}let c=await r.json();return console.log("API Response:",c),c}catch(e){throw console.error("Failed to create key:",e),e}},ex=async(e,t)=>{try{if(console.log("Form Values in keyUpdateCall:",t),t.model_tpm_limit){console.log("formValues.model_tpm_limit:",t.model_tpm_limit);try{t.model_tpm_limit=JSON.parse(t.model_tpm_limit)}catch(e){throw Error("Failed to parse model_tpm_limit: "+e)}}if(t.model_rpm_limit){console.log("formValues.model_rpm_limit:",t.model_rpm_limit);try{t.model_rpm_limit=JSON.parse(t.model_rpm_limit)}catch(e){throw Error("Failed to parse model_rpm_limit: "+e)}}let o=n?"".concat(n,"/key/update"):"/key/update",a=await fetch(o,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({...t})});if(!a.ok){let e=await a.text();throw i(e),console.error("Error response from the server:",e),Error("Network response was not ok")}let r=await a.json();return console.log("Update key Response:",r),r}catch(e){throw console.error("Failed to create key:",e),e}},eO=async(e,t)=>{try{console.log("Form Values in teamUpateCall:",t);let o=n?"".concat(n,"/team/update"):"/team/update",a=await fetch(o,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({...t})});if(!a.ok){let e=await a.text();throw i(e),console.error("Error response from the server:",e),Error("Network response was not ok")}let r=await a.json();return console.log("Update Team Response:",r),r}catch(e){throw console.error("Failed to create key:",e),e}},eB=async(e,t)=>{try{console.log("Form Values in modelUpateCall:",t);let o=n?"".concat(n,"/model/update"):"/model/update",a=await fetch(o,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({...t})});if(!a.ok){let e=await a.text();throw i(e),console.error("Error update from the server:",e),Error("Network response was not ok")}let r=await a.json();return console.log("Update model Response:",r),r}catch(e){throw console.error("Failed to update model:",e),e}},eP=async(e,t,o)=>{try{console.log("Form Values in teamMemberAddCall:",o);let a=n?"".concat(n,"/team/member_add"):"/team/member_add",r=await fetch(a,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({team_id:t,member:o})});if(!r.ok){let e=await r.text();throw i(e),console.error("Error response from the server:",e),Error("Network response was not ok")}let c=await r.json();return console.log("API Response:",c),c}catch(e){throw console.error("Failed to create key:",e),e}},ev=async(e,t,o)=>{try{console.log("Form Values in teamMemberAddCall:",o);let a=n?"".concat(n,"/team/member_update"):"/team/member_update",r=await fetch(a,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({team_id:t,role:o.role,user_id:o.user_id})});if(!r.ok){let e=await r.text();throw i(e),console.error("Error response from the server:",e),Error("Network response was not ok")}let c=await r.json();return console.log("API Response:",c),c}catch(e){throw console.error("Failed to create key:",e),e}},eG=async(e,t,o)=>{try{console.log("Form Values in teamMemberAddCall:",o);let a=n?"".concat(n,"/team/member_delete"):"/team/member_delete",r=await fetch(a,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({team_id:t,...void 0!==o.user_email&&{user_email:o.user_email},...void 0!==o.user_id&&{user_id:o.user_id}})});if(!r.ok){let e=await r.text();throw i(e),console.error("Error response from the server:",e),Error("Network response was not ok")}let c=await r.json();return console.log("API Response:",c),c}catch(e){throw console.error("Failed to create key:",e),e}},eA=async(e,t,o)=>{try{console.log("Form Values in teamMemberAddCall:",o);let a=n?"".concat(n,"/organization/member_add"):"/organization/member_add",r=await fetch(a,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({organization_id:t,member:o})});if(!r.ok){let e=await r.text();throw i(e),console.error("Error response from the server:",e),Error(e)}let c=await r.json();return console.log("API Response:",c),c}catch(e){throw console.error("Failed to create organization member:",e),e}},eJ=async(e,t,o)=>{try{console.log("Form Values in organizationMemberDeleteCall:",o);let a=n?"".concat(n,"/organization/member_delete"):"/organization/member_delete",r=await fetch(a,{method:"DELETE",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({organization_id:t,user_id:o})});if(!r.ok){let e=await r.text();throw i(e),console.error("Error response from the server:",e),Error("Network response was not ok")}let c=await r.json();return console.log("API Response:",c),c}catch(e){throw console.error("Failed to delete organization member:",e),e}},eI=async(e,t,o)=>{try{console.log("Form Values in organizationMemberUpdateCall:",o);let a=n?"".concat(n,"/organization/member_update"):"/organization/member_update",r=await fetch(a,{method:"PATCH",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({organization_id:t,...o})});if(!r.ok){let e=await r.text();throw i(e),console.error("Error response from the server:",e),Error("Network response was not ok")}let c=await r.json();return console.log("API Response:",c),c}catch(e){throw console.error("Failed to update organization member:",e),e}},eR=async(e,t,o)=>{try{console.log("Form Values in userUpdateUserCall:",t);let a=n?"".concat(n,"/user/update"):"/user/update",r={...t};null!==o&&(r.user_role=o),r=JSON.stringify(r);let c=await fetch(a,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:r});if(!c.ok){let e=await c.text();throw i(e),console.error("Error response from the server:",e),Error("Network response was not ok")}let s=await c.json();return console.log("API Response:",s),s}catch(e){throw console.error("Failed to create key:",e),e}},ez=async(e,t)=>{try{let o=n?"".concat(n,"/health/services?service=").concat(t):"/health/services?service=".concat(t);console.log("Checking Slack Budget Alerts service health");let a=await fetch(o,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!a.ok){let e=await a.text();throw i(e),Error(e)}let c=await a.json();return r.ZP.success("Test request to ".concat(t," made - check logs/alerts on ").concat(t," to verify")),c}catch(e){throw console.error("Failed to perform health check:",e),e}},eV=async e=>{try{let t=n?"".concat(n,"/budget/list"):"/budget/list",o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error("Network response was not ok")}return await o.json()}catch(e){throw console.error("Failed to get callbacks:",e),e}},eU=async(e,t,o)=>{try{let t=n?"".concat(n,"/get/config/callbacks"):"/get/config/callbacks",o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error("Network response was not ok")}return await o.json()}catch(e){throw console.error("Failed to get callbacks:",e),e}},eL=async e=>{try{let t=n?"".concat(n,"/config/list?config_type=general_settings"):"/config/list?config_type=general_settings",o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error("Network response was not ok")}return await o.json()}catch(e){throw console.error("Failed to get callbacks:",e),e}},eM=async e=>{try{let t=n?"".concat(n,"/config/pass_through_endpoint"):"/config/pass_through_endpoint",o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error("Network response was not ok")}return await o.json()}catch(e){throw console.error("Failed to get callbacks:",e),e}},eZ=async(e,t)=>{try{let o=n?"".concat(n,"/config/field/info?field_name=").concat(t):"/config/field/info?field_name=".concat(t),a=await fetch(o,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!a.ok)throw await a.text(),Error("Network response was not ok");return await a.json()}catch(e){throw console.error("Failed to set callbacks:",e),e}},eD=async(e,t)=>{try{let o=n?"".concat(n,"/config/pass_through_endpoint"):"/config/pass_through_endpoint",a=await fetch(o,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({...t})});if(!a.ok){let e=await a.text();throw i(e),Error("Network response was not ok")}return await a.json()}catch(e){throw console.error("Failed to set callbacks:",e),e}},eH=async(e,t,o)=>{try{let a=n?"".concat(n,"/config/field/update"):"/config/field/update",c=await fetch(a,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({field_name:t,field_value:o,config_type:"general_settings"})});if(!c.ok){let e=await c.text();throw i(e),Error("Network response was not ok")}let s=await c.json();return r.ZP.success("Successfully updated value!"),s}catch(e){throw console.error("Failed to set callbacks:",e),e}},eq=async(e,t)=>{try{let o=n?"".concat(n,"/config/field/delete"):"/config/field/delete",a=await fetch(o,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({field_name:t,config_type:"general_settings"})});if(!a.ok){let e=await a.text();throw i(e),Error("Network response was not ok")}let c=await a.json();return r.ZP.success("Field reset on proxy"),c}catch(e){throw console.error("Failed to get callbacks:",e),e}},eX=async(e,t)=>{try{let o=n?"".concat(n,"/config/pass_through_endpoint?endpoint_id=").concat(t):"/config/pass_through_endpoint".concat(t),a=await fetch(o,{method:"DELETE",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!a.ok){let e=await a.text();throw i(e),Error("Network response was not ok")}return await a.json()}catch(e){throw console.error("Failed to get callbacks:",e),e}},eY=async(e,t)=>{try{let o=n?"".concat(n,"/config/update"):"/config/update",a=await fetch(o,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({...t})});if(!a.ok){let e=await a.text();throw i(e),Error("Network response was not ok")}return await a.json()}catch(e){throw console.error("Failed to set callbacks:",e),e}},eK=async e=>{try{let t=n?"".concat(n,"/health"):"/health",o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error("Network response was not ok")}return await o.json()}catch(e){throw console.error("Failed to call /health:",e),e}},e$=async e=>{try{let t=n?"".concat(n,"/cache/ping"):"/cache/ping",o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error(e)}return await o.json()}catch(e){throw console.error("Failed to call /cache/ping:",e),e}},eQ=async e=>{try{let t=n?"".concat(n,"/sso/get/ui_settings"):"/sso/get/ui_settings",o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok)throw await o.text(),Error("Network response was not ok");return await o.json()}catch(e){throw console.error("Failed to get callbacks:",e),e}},eW=async e=>{try{let t=n?"".concat(n,"/guardrails/list"):"/guardrails/list",o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error("Network response was not ok")}let a=await o.json();return console.log("Guardrails list response:",a),a}catch(e){throw console.error("Failed to fetch guardrails list:",e),e}},e0=async(e,t,o)=>{try{let a=n?"".concat(n,"/spend/logs/ui/").concat(t,"?start_date=").concat(encodeURIComponent(o)):"/spend/logs/ui/".concat(t,"?start_date=").concat(encodeURIComponent(o));console.log("Fetching log details from:",a);let r=await fetch(a,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!r.ok){let e=await r.text();throw i(e),Error("Network response was not ok")}let c=await r.json();return console.log("Fetched log details:",c),c}catch(e){throw console.error("Failed to fetch log details:",e),e}},e1=async e=>{try{let t=n?"".concat(n,"/get/internal_user_settings"):"/get/internal_user_settings";console.log("Fetching SSO settings from:",t);let o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error("Network response was not ok")}let a=await o.json();return console.log("Fetched SSO settings:",a),a}catch(e){throw console.error("Failed to fetch SSO settings:",e),e}},e3=async(e,t)=>{try{let o=n?"".concat(n,"/update/internal_user_settings"):"/update/internal_user_settings";console.log("Updating internal user settings:",t);let a=await fetch(o,{method:"PATCH",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify(t)});if(!a.ok){let e=await a.text();throw i(e),Error("Network response was not ok")}let c=await a.json();return console.log("Updated internal user settings:",c),r.ZP.success("Internal user settings updated successfully"),c}catch(e){throw console.error("Failed to update internal user settings:",e),e}},e4=async e=>{try{let t=n?"".concat(n,"/mcp/tools/list"):"/mcp/tools/list";console.log("Fetching MCP tools from:",t);let o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error("Network response was not ok")}let a=await o.json();return console.log("Fetched MCP tools:",a),a}catch(e){throw console.error("Failed to fetch MCP tools:",e),e}},e2=async(e,t,o)=>{try{let a=n?"".concat(n,"/mcp/tools/call"):"/mcp/tools/call";console.log("Calling MCP tool:",t,"with arguments:",o);let r=await fetch(a,{method:"POST",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify({name:t,arguments:o})});if(!r.ok){let e=await r.text();throw i(e),Error("Network response was not ok")}let c=await r.json();return console.log("MCP tool call response:",c),c}catch(e){throw console.error("Failed to call MCP tool:",e),e}},e5=async(e,t)=>{try{let o=n?"".concat(n,"/tag/new"):"/tag/new",a=await fetch(o,{method:"POST",headers:{"Content-Type":"application/json",Authorization:"Bearer ".concat(e)},body:JSON.stringify(t)});if(!a.ok){let e=await a.text();await i(e);return}return await a.json()}catch(e){throw console.error("Error creating tag:",e),e}},e6=async(e,t)=>{try{let o=n?"".concat(n,"/tag/update"):"/tag/update",a=await fetch(o,{method:"POST",headers:{"Content-Type":"application/json",Authorization:"Bearer ".concat(e)},body:JSON.stringify(t)});if(!a.ok){let e=await a.text();await i(e);return}return await a.json()}catch(e){throw console.error("Error updating tag:",e),e}},e9=async(e,t)=>{try{let o=n?"".concat(n,"/tag/info"):"/tag/info",a=await fetch(o,{method:"POST",headers:{"Content-Type":"application/json",Authorization:"Bearer ".concat(e)},body:JSON.stringify({names:t})});if(!a.ok){let e=await a.text();return await i(e),{}}return await a.json()}catch(e){throw console.error("Error getting tag info:",e),e}},e7=async e=>{try{let t=n?"".concat(n,"/tag/list"):"/tag/list",o=await fetch(t,{method:"GET",headers:{Authorization:"Bearer ".concat(e)}});if(!o.ok){let e=await o.text();return await i(e),{}}return await o.json()}catch(e){throw console.error("Error listing tags:",e),e}},e8=async(e,t)=>{try{let o=n?"".concat(n,"/tag/delete"):"/tag/delete",a=await fetch(o,{method:"POST",headers:{"Content-Type":"application/json",Authorization:"Bearer ".concat(e)},body:JSON.stringify({name:t})});if(!a.ok){let e=await a.text();await i(e);return}return await a.json()}catch(e){throw console.error("Error deleting tag:",e),e}},te=async e=>{try{let t=n?"".concat(n,"/get/default_team_settings"):"/get/default_team_settings";console.log("Fetching default team settings from:",t);let o=await fetch(t,{method:"GET",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"}});if(!o.ok){let e=await o.text();throw i(e),Error("Network response was not ok")}let a=await o.json();return console.log("Fetched default team settings:",a),a}catch(e){throw console.error("Failed to fetch default team settings:",e),e}},tt=async(e,t)=>{try{let o=n?"".concat(n,"/update/default_team_settings"):"/update/default_team_settings";console.log("Updating default team settings:",t);let a=await fetch(o,{method:"PATCH",headers:{[l]:"Bearer ".concat(e),"Content-Type":"application/json"},body:JSON.stringify(t)});if(!a.ok){let e=await a.text();throw i(e),Error("Network response was not ok")}let c=await a.json();return console.log("Updated default team settings:",c),r.ZP.success("Default team settings updated successfully"),c}catch(e){throw console.error("Failed to update default team settings:",e),e}},to=async(e,t)=>{try{let o=n?"".concat(n,"/team/permissions_list?team_id=").concat(t):"/team/permissions_list?team_id=".concat(t),a=await fetch(o,{method:"GET",headers:{"Content-Type":"application/json",Authorization:"Bearer ".concat(e)}});if(!a.ok){let e=await a.text();throw i(e),Error("Network response was not ok")}let r=await a.json();return console.log("Team permissions response:",r),r}catch(e){throw console.error("Failed to get team permissions:",e),e}},ta=async(e,t,o)=>{try{let a=n?"".concat(n,"/team/permissions_update"):"/team/permissions_update",r=await fetch(a,{method:"POST",headers:{"Content-Type":"application/json",Authorization:"Bearer ".concat(e)},body:JSON.stringify({team_id:t,team_member_permissions:o})});if(!r.ok){let e=await r.text();throw i(e),Error("Network response was not ok")}let c=await r.json();return console.log("Team permissions response:",c),c}catch(e){throw console.error("Failed to update team permissions:",e),e}}},20347:function(e,t,o){o.d(t,{LQ:function(){return n},ZL:function(){return a},lo:function(){return r},tY:function(){return c}});let a=["Admin","Admin Viewer","proxy_admin","proxy_admin_viewer","org_admin"],r=["Internal User","Internal Viewer"],n=["Internal User","Admin"],c=e=>a.includes(e)}}]); \ No newline at end of file diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/_experimental/out/_next/static/chunks/261-ee7f0f1f1c8c22a0.js b/.venv/lib/python3.10/site-packages/litellm/proxy/_experimental/out/_next/static/chunks/261-ee7f0f1f1c8c22a0.js deleted file mode 100644 index 78658f0a..00000000 --- a/.venv/lib/python3.10/site-packages/litellm/proxy/_experimental/out/_next/static/chunks/261-ee7f0f1f1c8c22a0.js +++ /dev/null @@ -1 +0,0 @@ -(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[261],{23639:function(e,t,n){"use strict";n.d(t,{Z:function(){return s}});var a=n(1119),r=n(2265),i={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M832 64H296c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h496v688c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8V96c0-17.7-14.3-32-32-32zM704 192H192c-17.7 0-32 14.3-32 32v530.7c0 8.5 3.4 16.6 9.4 22.6l173.3 173.3c2.2 2.2 4.7 4 7.4 5.5v1.9h4.2c3.5 1.3 7.2 2 11 2H704c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32zM350 856.2L263.9 770H350v86.2zM664 888H414V746c0-22.1-17.9-40-40-40H232V264h432v624z"}}]},name:"copy",theme:"outlined"},o=n(55015),s=r.forwardRef(function(e,t){return r.createElement(o.Z,(0,a.Z)({},e,{ref:t,icon:i}))})},77565:function(e,t,n){"use strict";n.d(t,{Z:function(){return s}});var a=n(1119),r=n(2265),i={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"}}]},name:"right",theme:"outlined"},o=n(55015),s=r.forwardRef(function(e,t){return r.createElement(o.Z,(0,a.Z)({},e,{ref:t,icon:i}))})},12485:function(e,t,n){"use strict";n.d(t,{Z:function(){return p}});var a=n(5853),r=n(31492),i=n(26898),o=n(97324),s=n(1153),l=n(2265),c=n(35242),u=n(42698);n(64016),n(8710),n(33232);let d=(0,s.fn)("Tab"),p=l.forwardRef((e,t)=>{let{icon:n,className:p,children:g}=e,m=(0,a._T)(e,["icon","className","children"]),b=(0,l.useContext)(c.O),f=(0,l.useContext)(u.Z);return l.createElement(r.O,Object.assign({ref:t,className:(0,o.q)(d("root"),"flex whitespace-nowrap truncate max-w-xs outline-none focus:ring-0 text-tremor-default transition duration-100",f?(0,s.bM)(f,i.K.text).selectTextColor:"solid"===b?"ui-selected:text-tremor-content-emphasis dark:ui-selected:text-dark-tremor-content-emphasis":"ui-selected:text-tremor-brand dark:ui-selected:text-dark-tremor-brand",function(e,t){switch(e){case"line":return(0,o.q)("ui-selected:border-b-2 hover:border-b-2 border-transparent transition duration-100 -mb-px px-2 py-2","hover:border-tremor-content hover:text-tremor-content-emphasis text-tremor-content","dark:hover:border-dark-tremor-content-emphasis dark:hover:text-dark-tremor-content-emphasis dark:text-dark-tremor-content",t?(0,s.bM)(t,i.K.border).selectBorderColor:"ui-selected:border-tremor-brand dark:ui-selected:border-dark-tremor-brand");case"solid":return(0,o.q)("border-transparent border rounded-tremor-small px-2.5 py-1","ui-selected:border-tremor-border ui-selected:bg-tremor-background ui-selected:shadow-tremor-input hover:text-tremor-content-emphasis ui-selected:text-tremor-brand","dark:ui-selected:border-dark-tremor-border dark:ui-selected:bg-dark-tremor-background dark:ui-selected:shadow-dark-tremor-input dark:hover:text-dark-tremor-content-emphasis dark:ui-selected:text-dark-tremor-brand",t?(0,s.bM)(t,i.K.text).selectTextColor:"text-tremor-content dark:text-dark-tremor-content")}}(b,f),p)},m),n?l.createElement(n,{className:(0,o.q)(d("icon"),"flex-none h-5 w-5",g?"mr-2":"")}):null,g?l.createElement("span",null,g):null)});p.displayName="Tab"},18135:function(e,t,n){"use strict";n.d(t,{Z:function(){return c}});var a=n(5853),r=n(31492),i=n(97324),o=n(1153),s=n(2265);let l=(0,o.fn)("TabGroup"),c=s.forwardRef((e,t)=>{let{defaultIndex:n,index:o,onIndexChange:c,children:u,className:d}=e,p=(0,a._T)(e,["defaultIndex","index","onIndexChange","children","className"]);return s.createElement(r.O.Group,Object.assign({as:"div",ref:t,defaultIndex:n,selectedIndex:o,onChange:c,className:(0,i.q)(l("root"),"w-full",d)},p),u)});c.displayName="TabGroup"},35242:function(e,t,n){"use strict";n.d(t,{O:function(){return c},Z:function(){return d}});var a=n(5853),r=n(2265),i=n(42698);n(64016),n(8710),n(33232);var o=n(31492),s=n(97324);let l=(0,n(1153).fn)("TabList"),c=(0,r.createContext)("line"),u={line:(0,s.q)("flex border-b space-x-4","border-tremor-border","dark:border-dark-tremor-border"),solid:(0,s.q)("inline-flex p-0.5 rounded-tremor-default space-x-1.5","bg-tremor-background-subtle","dark:bg-dark-tremor-background-subtle")},d=r.forwardRef((e,t)=>{let{color:n,variant:d="line",children:p,className:g}=e,m=(0,a._T)(e,["color","variant","children","className"]);return r.createElement(o.O.List,Object.assign({ref:t,className:(0,s.q)(l("root"),"justify-start overflow-x-clip",u[d],g)},m),r.createElement(c.Provider,{value:d},r.createElement(i.Z.Provider,{value:n},p)))});d.displayName="TabList"},29706:function(e,t,n){"use strict";n.d(t,{Z:function(){return u}});var a=n(5853);n(42698);var r=n(64016);n(8710);var i=n(33232),o=n(97324),s=n(1153),l=n(2265);let c=(0,s.fn)("TabPanel"),u=l.forwardRef((e,t)=>{let{children:n,className:s}=e,u=(0,a._T)(e,["children","className"]),{selectedValue:d}=(0,l.useContext)(i.Z),p=d===(0,l.useContext)(r.Z);return l.createElement("div",Object.assign({ref:t,className:(0,o.q)(c("root"),"w-full mt-2",p?"":"hidden",s),"aria-selected":p?"true":"false"},u),n)});u.displayName="TabPanel"},77991:function(e,t,n){"use strict";n.d(t,{Z:function(){return d}});var a=n(5853),r=n(31492);n(42698);var i=n(64016);n(8710);var o=n(33232),s=n(97324),l=n(1153),c=n(2265);let u=(0,l.fn)("TabPanels"),d=c.forwardRef((e,t)=>{let{children:n,className:l}=e,d=(0,a._T)(e,["children","className"]);return c.createElement(r.O.Panels,Object.assign({as:"div",ref:t,className:(0,s.q)(u("root"),"w-full",l)},d),e=>{let{selectedIndex:t}=e;return c.createElement(o.Z.Provider,{value:{selectedValue:t}},c.Children.map(n,(e,t)=>c.createElement(i.Z.Provider,{value:t},e)))})});d.displayName="TabPanels"},42698:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var a=n(2265),r=n(7084);n(97324);let i=(0,a.createContext)(r.fr.Blue)},64016:function(e,t,n){"use strict";n.d(t,{Z:function(){return a}});let a=(0,n(2265).createContext)(0)},8710:function(e,t,n){"use strict";n.d(t,{Z:function(){return a}});let a=(0,n(2265).createContext)(void 0)},33232:function(e,t,n){"use strict";n.d(t,{Z:function(){return a}});let a=(0,n(2265).createContext)({selectedValue:void 0,handleValueChange:void 0})},93942:function(e,t,n){"use strict";n.d(t,{i:function(){return s}});var a=n(2265),r=n(50506),i=n(13959),o=n(71744);function s(e){return t=>a.createElement(i.ZP,{theme:{token:{motion:!1,zIndexPopupBase:0}}},a.createElement(e,Object.assign({},t)))}t.Z=(e,t,n,i)=>s(s=>{let{prefixCls:l,style:c}=s,u=a.useRef(null),[d,p]=a.useState(0),[g,m]=a.useState(0),[b,f]=(0,r.Z)(!1,{value:s.open}),{getPrefixCls:E}=a.useContext(o.E_),h=E(t||"select",l);a.useEffect(()=>{if(f(!0),"undefined"!=typeof ResizeObserver){let e=new ResizeObserver(e=>{let t=e[0].target;p(t.offsetHeight+8),m(t.offsetWidth)}),t=setInterval(()=>{var a;let r=n?".".concat(n(h)):".".concat(h,"-dropdown"),i=null===(a=u.current)||void 0===a?void 0:a.querySelector(r);i&&(clearInterval(t),e.observe(i))},10);return()=>{clearInterval(t),e.disconnect()}}},[]);let S=Object.assign(Object.assign({},s),{style:Object.assign(Object.assign({},c),{margin:0}),open:b,visible:b,getPopupContainer:()=>u.current});return i&&(S=i(S)),a.createElement("div",{ref:u,style:{paddingBottom:d,position:"relative",minWidth:g}},a.createElement(e,Object.assign({},S)))})},51369:function(e,t,n){"use strict";let a;n.d(t,{Z:function(){return eY}});var r=n(83145),i=n(2265),o=n(18404),s=n(71744),l=n(13959),c=n(8900),u=n(39725),d=n(54537),p=n(55726),g=n(36760),m=n.n(g),b=n(62236),f=n(68710),E=n(55274),h=n(29961),S=n(69819),y=n(73002),T=n(51248),A=e=>{let{type:t,children:n,prefixCls:a,buttonProps:r,close:o,autoFocus:s,emitEvent:l,isSilent:c,quitOnNullishReturnValue:u,actionFn:d}=e,p=i.useRef(!1),g=i.useRef(null),[m,b]=(0,S.Z)(!1),f=function(){null==o||o.apply(void 0,arguments)};i.useEffect(()=>{let e=null;return s&&(e=setTimeout(()=>{var e;null===(e=g.current)||void 0===e||e.focus()})),()=>{e&&clearTimeout(e)}},[]);let E=e=>{e&&e.then&&(b(!0),e.then(function(){b(!1,!0),f.apply(void 0,arguments),p.current=!1},e=>{if(b(!1,!0),p.current=!1,null==c||!c())return Promise.reject(e)}))};return i.createElement(y.ZP,Object.assign({},(0,T.nx)(t),{onClick:e=>{let t;if(!p.current){if(p.current=!0,!d){f();return}if(l){var n;if(t=d(e),u&&!((n=t)&&n.then)){p.current=!1,f(e);return}}else if(d.length)t=d(o),p.current=!1;else if(!(t=d())){f();return}E(t)}},loading:m,prefixCls:a},r,{ref:g}),n)};let R=i.createContext({}),{Provider:I}=R;var N=()=>{let{autoFocusButton:e,cancelButtonProps:t,cancelTextLocale:n,isSilent:a,mergedOkCancel:r,rootPrefixCls:o,close:s,onCancel:l,onConfirm:c}=(0,i.useContext)(R);return r?i.createElement(A,{isSilent:a,actionFn:l,close:function(){null==s||s.apply(void 0,arguments),null==c||c(!1)},autoFocus:"cancel"===e,buttonProps:t,prefixCls:"".concat(o,"-btn")},n):null},_=()=>{let{autoFocusButton:e,close:t,isSilent:n,okButtonProps:a,rootPrefixCls:r,okTextLocale:o,okType:s,onConfirm:l,onOk:c}=(0,i.useContext)(R);return i.createElement(A,{isSilent:n,type:s||"primary",actionFn:c,close:function(){null==t||t.apply(void 0,arguments),null==l||l(!0)},autoFocus:"ok"===e,buttonProps:a,prefixCls:"".concat(r,"-btn")},o)},v=n(49638),w=n(1119),k=n(26365),C=n(28036),O=i.createContext({}),x=n(31686),L=n(2161),D=n(92491),P=n(95814),M=n(18242);function F(e,t,n){var a=t;return!a&&n&&(a="".concat(e,"-").concat(n)),a}function U(e,t){var n=e["page".concat(t?"Y":"X","Offset")],a="scroll".concat(t?"Top":"Left");if("number"!=typeof n){var r=e.document;"number"!=typeof(n=r.documentElement[a])&&(n=r.body[a])}return n}var B=n(47970),G=n(28791),$=i.memo(function(e){return e.children},function(e,t){return!t.shouldUpdate}),H={width:0,height:0,overflow:"hidden",outline:"none"},z=i.forwardRef(function(e,t){var n,a,r,o=e.prefixCls,s=e.className,l=e.style,c=e.title,u=e.ariaId,d=e.footer,p=e.closable,g=e.closeIcon,b=e.onClose,f=e.children,E=e.bodyStyle,h=e.bodyProps,S=e.modalRender,y=e.onMouseDown,T=e.onMouseUp,A=e.holderRef,R=e.visible,I=e.forceRender,N=e.width,_=e.height,v=e.classNames,k=e.styles,C=i.useContext(O).panel,L=(0,G.x1)(A,C),D=(0,i.useRef)(),P=(0,i.useRef)();i.useImperativeHandle(t,function(){return{focus:function(){var e;null===(e=D.current)||void 0===e||e.focus()},changeActive:function(e){var t=document.activeElement;e&&t===P.current?D.current.focus():e||t!==D.current||P.current.focus()}}});var M={};void 0!==N&&(M.width=N),void 0!==_&&(M.height=_),d&&(n=i.createElement("div",{className:m()("".concat(o,"-footer"),null==v?void 0:v.footer),style:(0,x.Z)({},null==k?void 0:k.footer)},d)),c&&(a=i.createElement("div",{className:m()("".concat(o,"-header"),null==v?void 0:v.header),style:(0,x.Z)({},null==k?void 0:k.header)},i.createElement("div",{className:"".concat(o,"-title"),id:u},c))),p&&(r=i.createElement("button",{type:"button",onClick:b,"aria-label":"Close",className:"".concat(o,"-close")},g||i.createElement("span",{className:"".concat(o,"-close-x")})));var F=i.createElement("div",{className:m()("".concat(o,"-content"),null==v?void 0:v.content),style:null==k?void 0:k.content},r,a,i.createElement("div",(0,w.Z)({className:m()("".concat(o,"-body"),null==v?void 0:v.body),style:(0,x.Z)((0,x.Z)({},E),null==k?void 0:k.body)},h),f),n);return i.createElement("div",{key:"dialog-element",role:"dialog","aria-labelledby":c?u:null,"aria-modal":"true",ref:L,style:(0,x.Z)((0,x.Z)({},l),M),className:m()(o,s),onMouseDown:y,onMouseUp:T},i.createElement("div",{tabIndex:0,ref:D,style:H,"aria-hidden":"true"}),i.createElement($,{shouldUpdate:R||I},S?S(F):F),i.createElement("div",{tabIndex:0,ref:P,style:H,"aria-hidden":"true"}))}),j=i.forwardRef(function(e,t){var n=e.prefixCls,a=e.title,r=e.style,o=e.className,s=e.visible,l=e.forceRender,c=e.destroyOnClose,u=e.motionName,d=e.ariaId,p=e.onVisibleChanged,g=e.mousePosition,b=(0,i.useRef)(),f=i.useState(),E=(0,k.Z)(f,2),h=E[0],S=E[1],y={};function T(){var e,t,n,a,r,i=(n={left:(t=(e=b.current).getBoundingClientRect()).left,top:t.top},r=(a=e.ownerDocument).defaultView||a.parentWindow,n.left+=U(r),n.top+=U(r,!0),n);S(g?"".concat(g.x-i.left,"px ").concat(g.y-i.top,"px"):"")}return h&&(y.transformOrigin=h),i.createElement(B.ZP,{visible:s,onVisibleChanged:p,onAppearPrepare:T,onEnterPrepare:T,forceRender:l,motionName:u,removeOnLeave:c,ref:b},function(s,l){var c=s.className,u=s.style;return i.createElement(z,(0,w.Z)({},e,{ref:t,title:a,ariaId:d,prefixCls:n,holderRef:l,style:(0,x.Z)((0,x.Z)((0,x.Z)({},u),r),y),className:m()(o,c)}))})});function V(e){var t=e.prefixCls,n=e.style,a=e.visible,r=e.maskProps,o=e.motionName,s=e.className;return i.createElement(B.ZP,{key:"mask",visible:a,motionName:o,leavedClassName:"".concat(t,"-mask-hidden")},function(e,a){var o=e.className,l=e.style;return i.createElement("div",(0,w.Z)({ref:a,style:(0,x.Z)((0,x.Z)({},l),n),className:m()("".concat(t,"-mask"),o,s)},r))})}function W(e){var t=e.prefixCls,n=void 0===t?"rc-dialog":t,a=e.zIndex,r=e.visible,o=void 0!==r&&r,s=e.keyboard,l=void 0===s||s,c=e.focusTriggerAfterClose,u=void 0===c||c,d=e.wrapStyle,p=e.wrapClassName,g=e.wrapProps,b=e.onClose,f=e.afterOpenChange,E=e.afterClose,h=e.transitionName,S=e.animation,y=e.closable,T=e.mask,A=void 0===T||T,R=e.maskTransitionName,I=e.maskAnimation,N=e.maskClosable,_=e.maskStyle,v=e.maskProps,C=e.rootClassName,O=e.classNames,U=e.styles,B=(0,i.useRef)(),G=(0,i.useRef)(),$=(0,i.useRef)(),H=i.useState(o),z=(0,k.Z)(H,2),W=z[0],q=z[1],Y=(0,D.Z)();function K(e){null==b||b(e)}var Z=(0,i.useRef)(!1),X=(0,i.useRef)(),Q=null;return(void 0===N||N)&&(Q=function(e){Z.current?Z.current=!1:G.current===e.target&&K(e)}),(0,i.useEffect)(function(){o&&(q(!0),(0,L.Z)(G.current,document.activeElement)||(B.current=document.activeElement))},[o]),(0,i.useEffect)(function(){return function(){clearTimeout(X.current)}},[]),i.createElement("div",(0,w.Z)({className:m()("".concat(n,"-root"),C)},(0,M.Z)(e,{data:!0})),i.createElement(V,{prefixCls:n,visible:A&&o,motionName:F(n,R,I),style:(0,x.Z)((0,x.Z)({zIndex:a},_),null==U?void 0:U.mask),maskProps:v,className:null==O?void 0:O.mask}),i.createElement("div",(0,w.Z)({tabIndex:-1,onKeyDown:function(e){if(l&&e.keyCode===P.Z.ESC){e.stopPropagation(),K(e);return}o&&e.keyCode===P.Z.TAB&&$.current.changeActive(!e.shiftKey)},className:m()("".concat(n,"-wrap"),p,null==O?void 0:O.wrapper),ref:G,onClick:Q,style:(0,x.Z)((0,x.Z)((0,x.Z)({zIndex:a},d),null==U?void 0:U.wrapper),{},{display:W?null:"none"})},g),i.createElement(j,(0,w.Z)({},e,{onMouseDown:function(){clearTimeout(X.current),Z.current=!0},onMouseUp:function(){X.current=setTimeout(function(){Z.current=!1})},ref:$,closable:void 0===y||y,ariaId:Y,prefixCls:n,visible:o&&W,onClose:K,onVisibleChanged:function(e){if(e)!function(){if(!(0,L.Z)(G.current,document.activeElement)){var e;null===(e=$.current)||void 0===e||e.focus()}}();else{if(q(!1),A&&B.current&&u){try{B.current.focus({preventScroll:!0})}catch(e){}B.current=null}W&&(null==E||E())}null==f||f(e)},motionName:F(n,h,S)}))))}j.displayName="Content",n(32559);var q=function(e){var t=e.visible,n=e.getContainer,a=e.forceRender,r=e.destroyOnClose,o=void 0!==r&&r,s=e.afterClose,l=e.panelRef,c=i.useState(t),u=(0,k.Z)(c,2),d=u[0],p=u[1],g=i.useMemo(function(){return{panel:l}},[l]);return(i.useEffect(function(){t&&p(!0)},[t]),a||!o||d)?i.createElement(O.Provider,{value:g},i.createElement(C.Z,{open:t||a||d,autoDestroy:!1,getContainer:n,autoLock:t||d},i.createElement(W,(0,w.Z)({},e,{destroyOnClose:o,afterClose:function(){null==s||s(),p(!1)}})))):null};q.displayName="Dialog";var Y=function(e,t,n){let a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:i.createElement(v.Z,null),r=arguments.length>4&&void 0!==arguments[4]&&arguments[4];if("boolean"==typeof e?!e:void 0===t?!r:!1===t||null===t)return[!1,null];let o="boolean"==typeof t||null==t?a:t;return[!0,n?n(o):o]},K=n(94981),Z=n(95140),X=n(39109),Q=n(65658),J=n(74126);function ee(){}let et=i.createContext({add:ee,remove:ee});var en=n(86586),ea=()=>{let{cancelButtonProps:e,cancelTextLocale:t,onCancel:n}=(0,i.useContext)(R);return i.createElement(y.ZP,Object.assign({onClick:n},e),t)},er=()=>{let{confirmLoading:e,okButtonProps:t,okType:n,okTextLocale:a,onOk:r}=(0,i.useContext)(R);return i.createElement(y.ZP,Object.assign({},(0,T.nx)(n),{loading:e,onClick:r},t),a)},ei=n(92246);function eo(e,t){return i.createElement("span",{className:"".concat(e,"-close-x")},t||i.createElement(v.Z,{className:"".concat(e,"-close-icon")}))}let es=e=>{let t;let{okText:n,okType:a="primary",cancelText:o,confirmLoading:s,onOk:l,onCancel:c,okButtonProps:u,cancelButtonProps:d,footer:p}=e,[g]=(0,E.Z)("Modal",(0,ei.A)()),m={confirmLoading:s,okButtonProps:u,cancelButtonProps:d,okTextLocale:n||(null==g?void 0:g.okText),cancelTextLocale:o||(null==g?void 0:g.cancelText),okType:a,onOk:l,onCancel:c},b=i.useMemo(()=>m,(0,r.Z)(Object.values(m)));return"function"==typeof p||void 0===p?(t=i.createElement(i.Fragment,null,i.createElement(ea,null),i.createElement(er,null)),"function"==typeof p&&(t=p(t,{OkBtn:er,CancelBtn:ea})),t=i.createElement(I,{value:b},t)):t=p,i.createElement(en.n,{disabled:!1},t)};var el=n(12918),ec=n(11699),eu=n(691),ed=n(3104),ep=n(80669),eg=n(352);function em(e){return{position:e,inset:0}}let eb=e=>{let{componentCls:t,antCls:n}=e;return[{["".concat(t,"-root")]:{["".concat(t).concat(n,"-zoom-enter, ").concat(t).concat(n,"-zoom-appear")]:{transform:"none",opacity:0,animationDuration:e.motionDurationSlow,userSelect:"none"},["".concat(t).concat(n,"-zoom-leave ").concat(t,"-content")]:{pointerEvents:"none"},["".concat(t,"-mask")]:Object.assign(Object.assign({},em("fixed")),{zIndex:e.zIndexPopupBase,height:"100%",backgroundColor:e.colorBgMask,pointerEvents:"none",["".concat(t,"-hidden")]:{display:"none"}}),["".concat(t,"-wrap")]:Object.assign(Object.assign({},em("fixed")),{zIndex:e.zIndexPopupBase,overflow:"auto",outline:0,WebkitOverflowScrolling:"touch",["&:has(".concat(t).concat(n,"-zoom-enter), &:has(").concat(t).concat(n,"-zoom-appear)")]:{pointerEvents:"none"}})}},{["".concat(t,"-root")]:(0,ec.J$)(e)}]},ef=e=>{let{componentCls:t}=e;return[{["".concat(t,"-root")]:{["".concat(t,"-wrap-rtl")]:{direction:"rtl"},["".concat(t,"-centered")]:{textAlign:"center","&::before":{display:"inline-block",width:0,height:"100%",verticalAlign:"middle",content:'""'},[t]:{top:0,display:"inline-block",paddingBottom:0,textAlign:"start",verticalAlign:"middle"}},["@media (max-width: ".concat(e.screenSMMax,"px)")]:{[t]:{maxWidth:"calc(100vw - 16px)",margin:"".concat((0,eg.bf)(e.marginXS)," auto")},["".concat(t,"-centered")]:{[t]:{flex:1}}}}},{[t]:Object.assign(Object.assign({},(0,el.Wf)(e)),{pointerEvents:"none",position:"relative",top:100,width:"auto",maxWidth:"calc(100vw - ".concat((0,eg.bf)(e.calc(e.margin).mul(2).equal()),")"),margin:"0 auto",paddingBottom:e.paddingLG,["".concat(t,"-title")]:{margin:0,color:e.titleColor,fontWeight:e.fontWeightStrong,fontSize:e.titleFontSize,lineHeight:e.titleLineHeight,wordWrap:"break-word"},["".concat(t,"-content")]:{position:"relative",backgroundColor:e.contentBg,backgroundClip:"padding-box",border:0,borderRadius:e.borderRadiusLG,boxShadow:e.boxShadow,pointerEvents:"auto",padding:e.contentPadding},["".concat(t,"-close")]:Object.assign({position:"absolute",top:e.calc(e.modalHeaderHeight).sub(e.modalCloseBtnSize).div(2).equal(),insetInlineEnd:e.calc(e.modalHeaderHeight).sub(e.modalCloseBtnSize).div(2).equal(),zIndex:e.calc(e.zIndexPopupBase).add(10).equal(),padding:0,color:e.modalCloseIconColor,fontWeight:e.fontWeightStrong,lineHeight:1,textDecoration:"none",background:"transparent",borderRadius:e.borderRadiusSM,width:e.modalCloseBtnSize,height:e.modalCloseBtnSize,border:0,outline:0,cursor:"pointer",transition:"color ".concat(e.motionDurationMid,", background-color ").concat(e.motionDurationMid),"&-x":{display:"flex",fontSize:e.fontSizeLG,fontStyle:"normal",lineHeight:"".concat((0,eg.bf)(e.modalCloseBtnSize)),justifyContent:"center",textTransform:"none",textRendering:"auto"},"&:hover":{color:e.modalIconHoverColor,backgroundColor:e.closeBtnHoverBg,textDecoration:"none"},"&:active":{backgroundColor:e.closeBtnActiveBg}},(0,el.Qy)(e)),["".concat(t,"-header")]:{color:e.colorText,background:e.headerBg,borderRadius:"".concat((0,eg.bf)(e.borderRadiusLG)," ").concat((0,eg.bf)(e.borderRadiusLG)," 0 0"),marginBottom:e.headerMarginBottom,padding:e.headerPadding,borderBottom:e.headerBorderBottom},["".concat(t,"-body")]:{fontSize:e.fontSize,lineHeight:e.lineHeight,wordWrap:"break-word",padding:e.bodyPadding},["".concat(t,"-footer")]:{textAlign:"end",background:e.footerBg,marginTop:e.footerMarginTop,padding:e.footerPadding,borderTop:e.footerBorderTop,borderRadius:e.footerBorderRadius,["> ".concat(e.antCls,"-btn + ").concat(e.antCls,"-btn")]:{marginInlineStart:e.marginXS}},["".concat(t,"-open")]:{overflow:"hidden"}})},{["".concat(t,"-pure-panel")]:{top:"auto",padding:0,display:"flex",flexDirection:"column",["".concat(t,"-content,\n ").concat(t,"-body,\n ").concat(t,"-confirm-body-wrapper")]:{display:"flex",flexDirection:"column",flex:"auto"},["".concat(t,"-confirm-body")]:{marginBottom:"auto"}}}]},eE=e=>{let{componentCls:t}=e;return{["".concat(t,"-root")]:{["".concat(t,"-wrap-rtl")]:{direction:"rtl",["".concat(t,"-confirm-body")]:{direction:"rtl"}}}}},eh=e=>{let t=e.padding,n=e.fontSizeHeading5,a=e.lineHeightHeading5;return(0,ed.TS)(e,{modalHeaderHeight:e.calc(e.calc(a).mul(n).equal()).add(e.calc(t).mul(2).equal()).equal(),modalFooterBorderColorSplit:e.colorSplit,modalFooterBorderStyle:e.lineType,modalFooterBorderWidth:e.lineWidth,modalIconHoverColor:e.colorIconHover,modalCloseIconColor:e.colorIcon,modalCloseBtnSize:e.fontHeight,modalConfirmIconSize:e.fontHeight,modalTitleHeight:e.calc(e.titleFontSize).mul(e.titleLineHeight).equal()})},eS=e=>({footerBg:"transparent",headerBg:e.colorBgElevated,titleLineHeight:e.lineHeightHeading5,titleFontSize:e.fontSizeHeading5,contentBg:e.colorBgElevated,titleColor:e.colorTextHeading,closeBtnHoverBg:e.wireframe?"transparent":e.colorFillContent,closeBtnActiveBg:e.wireframe?"transparent":e.colorFillContentHover,contentPadding:e.wireframe?0:"".concat((0,eg.bf)(e.paddingMD)," ").concat((0,eg.bf)(e.paddingContentHorizontalLG)),headerPadding:e.wireframe?"".concat((0,eg.bf)(e.padding)," ").concat((0,eg.bf)(e.paddingLG)):0,headerBorderBottom:e.wireframe?"".concat((0,eg.bf)(e.lineWidth)," ").concat(e.lineType," ").concat(e.colorSplit):"none",headerMarginBottom:e.wireframe?0:e.marginXS,bodyPadding:e.wireframe?e.paddingLG:0,footerPadding:e.wireframe?"".concat((0,eg.bf)(e.paddingXS)," ").concat((0,eg.bf)(e.padding)):0,footerBorderTop:e.wireframe?"".concat((0,eg.bf)(e.lineWidth)," ").concat(e.lineType," ").concat(e.colorSplit):"none",footerBorderRadius:e.wireframe?"0 0 ".concat((0,eg.bf)(e.borderRadiusLG)," ").concat((0,eg.bf)(e.borderRadiusLG)):0,footerMarginTop:e.wireframe?0:e.marginSM,confirmBodyPadding:e.wireframe?"".concat((0,eg.bf)(2*e.padding)," ").concat((0,eg.bf)(2*e.padding)," ").concat((0,eg.bf)(e.paddingLG)):0,confirmIconMarginInlineEnd:e.wireframe?e.margin:e.marginSM,confirmBtnsMarginTop:e.wireframe?e.marginLG:e.marginSM});var ey=(0,ep.I$)("Modal",e=>{let t=eh(e);return[ef(t),eE(t),eb(t),(0,eu._y)(t,"zoom")]},eS,{unitless:{titleLineHeight:!0}}),eT=n(64024),eA=function(e,t){var n={};for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&0>t.indexOf(a)&&(n[a]=e[a]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var r=0,a=Object.getOwnPropertySymbols(e);rt.indexOf(a[r])&&Object.prototype.propertyIsEnumerable.call(e,a[r])&&(n[a[r]]=e[a[r]]);return n};(0,K.Z)()&&window.document.documentElement&&document.documentElement.addEventListener("click",e=>{a={x:e.pageX,y:e.pageY},setTimeout(()=>{a=null},100)},!0);var eR=e=>{var t;let{getPopupContainer:n,getPrefixCls:r,direction:o,modal:l}=i.useContext(s.E_),c=t=>{let{onCancel:n}=e;null==n||n(t)},{prefixCls:u,className:d,rootClassName:p,open:g,wrapClassName:E,centered:h,getContainer:S,closeIcon:y,closable:T,focusTriggerAfterClose:A=!0,style:R,visible:I,width:N=520,footer:_,classNames:w,styles:k}=e,C=eA(e,["prefixCls","className","rootClassName","open","wrapClassName","centered","getContainer","closeIcon","closable","focusTriggerAfterClose","style","visible","width","footer","classNames","styles"]),O=r("modal",u),x=r(),L=(0,eT.Z)(O),[D,P,M]=ey(O,L),F=m()(E,{["".concat(O,"-centered")]:!!h,["".concat(O,"-wrap-rtl")]:"rtl"===o}),U=null!==_&&i.createElement(es,Object.assign({},e,{onOk:t=>{let{onOk:n}=e;null==n||n(t)},onCancel:c})),[B,G]=Y(T,y,e=>eo(O,e),i.createElement(v.Z,{className:"".concat(O,"-close-icon")}),!0),$=function(e){let t=i.useContext(et),n=i.useRef();return(0,J.zX)(a=>{if(a){let r=e?a.querySelector(e):a;t.add(r),n.current=r}else t.remove(n.current)})}(".".concat(O,"-content")),[H,z]=(0,b.Cn)("Modal",C.zIndex);return D(i.createElement(Q.BR,null,i.createElement(X.Ux,{status:!0,override:!0},i.createElement(Z.Z.Provider,{value:z},i.createElement(q,Object.assign({width:N},C,{zIndex:H,getContainer:void 0===S?n:S,prefixCls:O,rootClassName:m()(P,p,M,L),footer:U,visible:null!=g?g:I,mousePosition:null!==(t=C.mousePosition)&&void 0!==t?t:a,onClose:c,closable:B,closeIcon:G,focusTriggerAfterClose:A,transitionName:(0,f.m)(x,"zoom",e.transitionName),maskTransitionName:(0,f.m)(x,"fade",e.maskTransitionName),className:m()(P,d,null==l?void 0:l.className),style:Object.assign(Object.assign({},null==l?void 0:l.style),R),classNames:Object.assign(Object.assign({wrapper:F},null==l?void 0:l.classNames),w),styles:Object.assign(Object.assign({},null==l?void 0:l.styles),k),panelRef:$}))))))};let eI=e=>{let{componentCls:t,titleFontSize:n,titleLineHeight:a,modalConfirmIconSize:r,fontSize:i,lineHeight:o,modalTitleHeight:s,fontHeight:l,confirmBodyPadding:c}=e,u="".concat(t,"-confirm");return{[u]:{"&-rtl":{direction:"rtl"},["".concat(e.antCls,"-modal-header")]:{display:"none"},["".concat(u,"-body-wrapper")]:Object.assign({},(0,el.dF)()),["&".concat(t," ").concat(t,"-body")]:{padding:c},["".concat(u,"-body")]:{display:"flex",flexWrap:"nowrap",alignItems:"start",["> ".concat(e.iconCls)]:{flex:"none",fontSize:r,marginInlineEnd:e.confirmIconMarginInlineEnd,marginTop:e.calc(e.calc(l).sub(r).equal()).div(2).equal()},["&-has-title > ".concat(e.iconCls)]:{marginTop:e.calc(e.calc(s).sub(r).equal()).div(2).equal()}},["".concat(u,"-paragraph")]:{display:"flex",flexDirection:"column",flex:"auto",rowGap:e.marginXS,maxWidth:"calc(100% - ".concat((0,eg.bf)(e.calc(e.modalConfirmIconSize).add(e.marginSM).equal()),")")},["".concat(u,"-title")]:{color:e.colorTextHeading,fontWeight:e.fontWeightStrong,fontSize:n,lineHeight:a},["".concat(u,"-content")]:{color:e.colorText,fontSize:i,lineHeight:o},["".concat(u,"-btns")]:{textAlign:"end",marginTop:e.confirmBtnsMarginTop,["".concat(e.antCls,"-btn + ").concat(e.antCls,"-btn")]:{marginBottom:0,marginInlineStart:e.marginXS}}},["".concat(u,"-error ").concat(u,"-body > ").concat(e.iconCls)]:{color:e.colorError},["".concat(u,"-warning ").concat(u,"-body > ").concat(e.iconCls,",\n ").concat(u,"-confirm ").concat(u,"-body > ").concat(e.iconCls)]:{color:e.colorWarning},["".concat(u,"-info ").concat(u,"-body > ").concat(e.iconCls)]:{color:e.colorInfo},["".concat(u,"-success ").concat(u,"-body > ").concat(e.iconCls)]:{color:e.colorSuccess}}};var eN=(0,ep.bk)(["Modal","confirm"],e=>[eI(eh(e))],eS,{order:-1e3}),e_=function(e,t){var n={};for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&0>t.indexOf(a)&&(n[a]=e[a]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var r=0,a=Object.getOwnPropertySymbols(e);rt.indexOf(a[r])&&Object.prototype.propertyIsEnumerable.call(e,a[r])&&(n[a[r]]=e[a[r]]);return n};function ev(e){let{prefixCls:t,icon:n,okText:a,cancelText:o,confirmPrefixCls:s,type:l,okCancel:g,footer:b,locale:f}=e,h=e_(e,["prefixCls","icon","okText","cancelText","confirmPrefixCls","type","okCancel","footer","locale"]),S=n;if(!n&&null!==n)switch(l){case"info":S=i.createElement(p.Z,null);break;case"success":S=i.createElement(c.Z,null);break;case"error":S=i.createElement(u.Z,null);break;default:S=i.createElement(d.Z,null)}let y=null!=g?g:"confirm"===l,T=null!==e.autoFocusButton&&(e.autoFocusButton||"ok"),[A]=(0,E.Z)("Modal"),R=f||A,v=a||(y?null==R?void 0:R.okText:null==R?void 0:R.justOkText),w=Object.assign({autoFocusButton:T,cancelTextLocale:o||(null==R?void 0:R.cancelText),okTextLocale:v,mergedOkCancel:y},h),k=i.useMemo(()=>w,(0,r.Z)(Object.values(w))),C=i.createElement(i.Fragment,null,i.createElement(N,null),i.createElement(_,null)),O=void 0!==e.title&&null!==e.title,x="".concat(s,"-body");return i.createElement("div",{className:"".concat(s,"-body-wrapper")},i.createElement("div",{className:m()(x,{["".concat(x,"-has-title")]:O})},S,i.createElement("div",{className:"".concat(s,"-paragraph")},O&&i.createElement("span",{className:"".concat(s,"-title")},e.title),i.createElement("div",{className:"".concat(s,"-content")},e.content))),void 0===b||"function"==typeof b?i.createElement(I,{value:k},i.createElement("div",{className:"".concat(s,"-btns")},"function"==typeof b?b(C,{OkBtn:_,CancelBtn:N}):C)):b,i.createElement(eN,{prefixCls:t}))}let ew=e=>{let{close:t,zIndex:n,afterClose:a,open:r,keyboard:o,centered:s,getContainer:l,maskStyle:c,direction:u,prefixCls:d,wrapClassName:p,rootPrefixCls:g,bodyStyle:E,closable:S=!1,closeIcon:y,modalRender:T,focusTriggerAfterClose:A,onConfirm:R,styles:I}=e,N="".concat(d,"-confirm"),_=e.width||416,v=e.style||{},w=void 0===e.mask||e.mask,k=void 0!==e.maskClosable&&e.maskClosable,C=m()(N,"".concat(N,"-").concat(e.type),{["".concat(N,"-rtl")]:"rtl"===u},e.className),[,O]=(0,h.ZP)(),x=i.useMemo(()=>void 0!==n?n:O.zIndexPopupBase+b.u6,[n,O]);return i.createElement(eR,{prefixCls:d,className:C,wrapClassName:m()({["".concat(N,"-centered")]:!!e.centered},p),onCancel:()=>{null==t||t({triggerCancel:!0}),null==R||R(!1)},open:r,title:"",footer:null,transitionName:(0,f.m)(g||"","zoom",e.transitionName),maskTransitionName:(0,f.m)(g||"","fade",e.maskTransitionName),mask:w,maskClosable:k,style:v,styles:Object.assign({body:E,mask:c},I),width:_,zIndex:x,afterClose:a,keyboard:o,centered:s,getContainer:l,closable:S,closeIcon:y,modalRender:T,focusTriggerAfterClose:A},i.createElement(ev,Object.assign({},e,{confirmPrefixCls:N})))};var ek=e=>{let{rootPrefixCls:t,iconPrefixCls:n,direction:a,theme:r}=e;return i.createElement(l.ZP,{prefixCls:t,iconPrefixCls:n,direction:a,theme:r},i.createElement(ew,Object.assign({},e)))},eC=[];let eO="",ex=e=>{var t,n;let{prefixCls:a,getContainer:r,direction:o}=e,l=(0,ei.A)(),c=(0,i.useContext)(s.E_),u=eO||c.getPrefixCls(),d=a||"".concat(u,"-modal"),p=r;return!1===p&&(p=void 0),i.createElement(ek,Object.assign({},e,{rootPrefixCls:u,prefixCls:d,iconPrefixCls:c.iconPrefixCls,theme:c.theme,direction:null!=o?o:c.direction,locale:null!==(n=null===(t=c.locale)||void 0===t?void 0:t.Modal)&&void 0!==n?n:l,getContainer:p}))};function eL(e){let t;let n=(0,l.w6)(),a=document.createDocumentFragment(),s=Object.assign(Object.assign({},e),{close:d,open:!0});function c(){for(var t=arguments.length,n=Array(t),i=0;ie&&e.triggerCancel);e.onCancel&&s&&e.onCancel.apply(e,[()=>{}].concat((0,r.Z)(n.slice(1))));for(let e=0;e{let t=n.getPrefixCls(void 0,eO),r=n.getIconPrefixCls(),s=n.getTheme(),c=i.createElement(ex,Object.assign({},e));(0,o.s)(i.createElement(l.ZP,{prefixCls:t,iconPrefixCls:r,theme:s},n.holderRender?n.holderRender(c):c),a)})}function d(){for(var t=arguments.length,n=Array(t),a=0;a{"function"==typeof e.afterClose&&e.afterClose(),c.apply(this,n)}})).visible&&delete s.visible,u(s)}return u(s),eC.push(d),{destroy:d,update:function(e){u(s="function"==typeof e?e(s):Object.assign(Object.assign({},s),e))}}}function eD(e){return Object.assign(Object.assign({},e),{type:"warning"})}function eP(e){return Object.assign(Object.assign({},e),{type:"info"})}function eM(e){return Object.assign(Object.assign({},e),{type:"success"})}function eF(e){return Object.assign(Object.assign({},e),{type:"error"})}function eU(e){return Object.assign(Object.assign({},e),{type:"confirm"})}var eB=n(93942),eG=function(e,t){var n={};for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&0>t.indexOf(a)&&(n[a]=e[a]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var r=0,a=Object.getOwnPropertySymbols(e);rt.indexOf(a[r])&&Object.prototype.propertyIsEnumerable.call(e,a[r])&&(n[a[r]]=e[a[r]]);return n},e$=(0,eB.i)(e=>{let{prefixCls:t,className:n,closeIcon:a,closable:r,type:o,title:l,children:c,footer:u}=e,d=eG(e,["prefixCls","className","closeIcon","closable","type","title","children","footer"]),{getPrefixCls:p}=i.useContext(s.E_),g=p(),b=t||p("modal"),f=(0,eT.Z)(g),[E,h,S]=ey(b,f),y="".concat(b,"-confirm"),T={};return T=o?{closable:null!=r&&r,title:"",footer:"",children:i.createElement(ev,Object.assign({},e,{prefixCls:b,confirmPrefixCls:y,rootPrefixCls:g,content:c}))}:{closable:null==r||r,title:l,footer:null!==u&&i.createElement(es,Object.assign({},e)),children:c},E(i.createElement(z,Object.assign({prefixCls:b,className:m()(h,"".concat(b,"-pure-panel"),o&&y,o&&"".concat(y,"-").concat(o),n,S,f)},d,{closeIcon:eo(b,a),closable:r},T)))}),eH=n(13823),ez=function(e,t){var n={};for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&0>t.indexOf(a)&&(n[a]=e[a]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var r=0,a=Object.getOwnPropertySymbols(e);rt.indexOf(a[r])&&Object.prototype.propertyIsEnumerable.call(e,a[r])&&(n[a[r]]=e[a[r]]);return n},ej=i.forwardRef((e,t)=>{var n,{afterClose:a,config:o}=e,l=ez(e,["afterClose","config"]);let[c,u]=i.useState(!0),[d,p]=i.useState(o),{direction:g,getPrefixCls:m}=i.useContext(s.E_),b=m("modal"),f=m(),h=function(){u(!1);for(var e=arguments.length,t=Array(e),n=0;ne&&e.triggerCancel);d.onCancel&&a&&d.onCancel.apply(d,[()=>{}].concat((0,r.Z)(t.slice(1))))};i.useImperativeHandle(t,()=>({destroy:h,update:e=>{p(t=>Object.assign(Object.assign({},t),e))}}));let S=null!==(n=d.okCancel)&&void 0!==n?n:"confirm"===d.type,[y]=(0,E.Z)("Modal",eH.Z.Modal);return i.createElement(ek,Object.assign({prefixCls:b,rootPrefixCls:f},d,{close:h,open:c,afterClose:()=>{var e;a(),null===(e=d.afterClose)||void 0===e||e.call(d)},okText:d.okText||(S?null==y?void 0:y.okText:null==y?void 0:y.justOkText),direction:d.direction||g,cancelText:d.cancelText||(null==y?void 0:y.cancelText)},l))});let eV=0,eW=i.memo(i.forwardRef((e,t)=>{let[n,a]=function(){let[e,t]=i.useState([]);return[e,i.useCallback(e=>(t(t=>[].concat((0,r.Z)(t),[e])),()=>{t(t=>t.filter(t=>t!==e))}),[])]}();return i.useImperativeHandle(t,()=>({patchElement:a}),[]),i.createElement(i.Fragment,null,n)}));function eq(e){return eL(eD(e))}eR.useModal=function(){let e=i.useRef(null),[t,n]=i.useState([]);i.useEffect(()=>{t.length&&((0,r.Z)(t).forEach(e=>{e()}),n([]))},[t]);let a=i.useCallback(t=>function(a){var o;let s,l;eV+=1;let c=i.createRef(),u=new Promise(e=>{s=e}),d=!1,p=i.createElement(ej,{key:"modal-".concat(eV),config:t(a),ref:c,afterClose:()=>{null==l||l()},isSilent:()=>d,onConfirm:e=>{s(e)}});return(l=null===(o=e.current)||void 0===o?void 0:o.patchElement(p))&&eC.push(l),{destroy:()=>{function e(){var e;null===(e=c.current)||void 0===e||e.destroy()}c.current?e():n(t=>[].concat((0,r.Z)(t),[e]))},update:e=>{function t(){var t;null===(t=c.current)||void 0===t||t.update(e)}c.current?t():n(e=>[].concat((0,r.Z)(e),[t]))},then:e=>(d=!0,u.then(e))}},[]);return[i.useMemo(()=>({info:a(eP),success:a(eM),error:a(eF),warning:a(eD),confirm:a(eU)}),[]),i.createElement(eW,{key:"modal-holder",ref:e})]},eR.info=function(e){return eL(eP(e))},eR.success=function(e){return eL(eM(e))},eR.error=function(e){return eL(eF(e))},eR.warning=eq,eR.warn=eq,eR.confirm=function(e){return eL(eU(e))},eR.destroyAll=function(){for(;eC.length;){let e=eC.pop();e&&e()}},eR.config=function(e){let{rootPrefixCls:t}=e;eO=t},eR._InternalPanelDoNotUseOrYouWillBeFired=e$;var eY=eR},11699:function(e,t,n){"use strict";n.d(t,{J$:function(){return s}});var a=n(352),r=n(37133);let i=new a.E4("antFadeIn",{"0%":{opacity:0},"100%":{opacity:1}}),o=new a.E4("antFadeOut",{"0%":{opacity:1},"100%":{opacity:0}}),s=function(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],{antCls:n}=e,a="".concat(n,"-fade"),s=t?"&":"";return[(0,r.R)(a,i,o,e.motionDurationMid,t),{["\n ".concat(s).concat(a,"-enter,\n ").concat(s).concat(a,"-appear\n ")]:{opacity:0,animationTimingFunction:"linear"},["".concat(s).concat(a,"-leave")]:{animationTimingFunction:"linear"}}]}},26035:function(e){"use strict";e.exports=function(e,n){for(var a,r,i,o=e||"",s=n||"div",l={},c=0;c4&&m.slice(0,4)===o&&s.test(t)&&("-"===t.charAt(4)?b=o+(n=t.slice(5).replace(l,d)).charAt(0).toUpperCase()+n.slice(1):(g=(p=t).slice(4),t=l.test(g)?p:("-"!==(g=g.replace(c,u)).charAt(0)&&(g="-"+g),o+g)),f=r),new f(b,t))};var s=/^data[-\w.:]+$/i,l=/-[a-z]/g,c=/[A-Z]/g;function u(e){return"-"+e.toLowerCase()}function d(e){return e.charAt(1).toUpperCase()}},30466:function(e,t,n){"use strict";var a=n(82855),r=n(64541),i=n(80808),o=n(44987),s=n(72731),l=n(98946);e.exports=a([i,r,o,s,l])},72731:function(e,t,n){"use strict";var a=n(20321),r=n(41757),i=a.booleanish,o=a.number,s=a.spaceSeparated;e.exports=r({transform:function(e,t){return"role"===t?t:"aria-"+t.slice(4).toLowerCase()},properties:{ariaActiveDescendant:null,ariaAtomic:i,ariaAutoComplete:null,ariaBusy:i,ariaChecked:i,ariaColCount:o,ariaColIndex:o,ariaColSpan:o,ariaControls:s,ariaCurrent:null,ariaDescribedBy:s,ariaDetails:null,ariaDisabled:i,ariaDropEffect:s,ariaErrorMessage:null,ariaExpanded:i,ariaFlowTo:s,ariaGrabbed:i,ariaHasPopup:null,ariaHidden:i,ariaInvalid:null,ariaKeyShortcuts:null,ariaLabel:null,ariaLabelledBy:s,ariaLevel:o,ariaLive:null,ariaModal:i,ariaMultiLine:i,ariaMultiSelectable:i,ariaOrientation:null,ariaOwns:s,ariaPlaceholder:null,ariaPosInSet:o,ariaPressed:i,ariaReadOnly:i,ariaRelevant:null,ariaRequired:i,ariaRoleDescription:s,ariaRowCount:o,ariaRowIndex:o,ariaRowSpan:o,ariaSelected:i,ariaSetSize:o,ariaSort:null,ariaValueMax:o,ariaValueMin:o,ariaValueNow:o,ariaValueText:null,role:null}})},98946:function(e,t,n){"use strict";var a=n(20321),r=n(41757),i=n(53296),o=a.boolean,s=a.overloadedBoolean,l=a.booleanish,c=a.number,u=a.spaceSeparated,d=a.commaSeparated;e.exports=r({space:"html",attributes:{acceptcharset:"accept-charset",classname:"class",htmlfor:"for",httpequiv:"http-equiv"},transform:i,mustUseProperty:["checked","multiple","muted","selected"],properties:{abbr:null,accept:d,acceptCharset:u,accessKey:u,action:null,allow:null,allowFullScreen:o,allowPaymentRequest:o,allowUserMedia:o,alt:null,as:null,async:o,autoCapitalize:null,autoComplete:u,autoFocus:o,autoPlay:o,capture:o,charSet:null,checked:o,cite:null,className:u,cols:c,colSpan:null,content:null,contentEditable:l,controls:o,controlsList:u,coords:c|d,crossOrigin:null,data:null,dateTime:null,decoding:null,default:o,defer:o,dir:null,dirName:null,disabled:o,download:s,draggable:l,encType:null,enterKeyHint:null,form:null,formAction:null,formEncType:null,formMethod:null,formNoValidate:o,formTarget:null,headers:u,height:c,hidden:o,high:c,href:null,hrefLang:null,htmlFor:u,httpEquiv:u,id:null,imageSizes:null,imageSrcSet:d,inputMode:null,integrity:null,is:null,isMap:o,itemId:null,itemProp:u,itemRef:u,itemScope:o,itemType:u,kind:null,label:null,lang:null,language:null,list:null,loading:null,loop:o,low:c,manifest:null,max:null,maxLength:c,media:null,method:null,min:null,minLength:c,multiple:o,muted:o,name:null,nonce:null,noModule:o,noValidate:o,onAbort:null,onAfterPrint:null,onAuxClick:null,onBeforePrint:null,onBeforeUnload:null,onBlur:null,onCancel:null,onCanPlay:null,onCanPlayThrough:null,onChange:null,onClick:null,onClose:null,onContextMenu:null,onCopy:null,onCueChange:null,onCut:null,onDblClick:null,onDrag:null,onDragEnd:null,onDragEnter:null,onDragExit:null,onDragLeave:null,onDragOver:null,onDragStart:null,onDrop:null,onDurationChange:null,onEmptied:null,onEnded:null,onError:null,onFocus:null,onFormData:null,onHashChange:null,onInput:null,onInvalid:null,onKeyDown:null,onKeyPress:null,onKeyUp:null,onLanguageChange:null,onLoad:null,onLoadedData:null,onLoadedMetadata:null,onLoadEnd:null,onLoadStart:null,onMessage:null,onMessageError:null,onMouseDown:null,onMouseEnter:null,onMouseLeave:null,onMouseMove:null,onMouseOut:null,onMouseOver:null,onMouseUp:null,onOffline:null,onOnline:null,onPageHide:null,onPageShow:null,onPaste:null,onPause:null,onPlay:null,onPlaying:null,onPopState:null,onProgress:null,onRateChange:null,onRejectionHandled:null,onReset:null,onResize:null,onScroll:null,onSecurityPolicyViolation:null,onSeeked:null,onSeeking:null,onSelect:null,onSlotChange:null,onStalled:null,onStorage:null,onSubmit:null,onSuspend:null,onTimeUpdate:null,onToggle:null,onUnhandledRejection:null,onUnload:null,onVolumeChange:null,onWaiting:null,onWheel:null,open:o,optimum:c,pattern:null,ping:u,placeholder:null,playsInline:o,poster:null,preload:null,readOnly:o,referrerPolicy:null,rel:u,required:o,reversed:o,rows:c,rowSpan:c,sandbox:u,scope:null,scoped:o,seamless:o,selected:o,shape:null,size:c,sizes:null,slot:null,span:c,spellCheck:l,src:null,srcDoc:null,srcLang:null,srcSet:d,start:c,step:null,style:null,tabIndex:c,target:null,title:null,translate:null,type:null,typeMustMatch:o,useMap:null,value:l,width:c,wrap:null,align:null,aLink:null,archive:u,axis:null,background:null,bgColor:null,border:c,borderColor:null,bottomMargin:c,cellPadding:null,cellSpacing:null,char:null,charOff:null,classId:null,clear:null,code:null,codeBase:null,codeType:null,color:null,compact:o,declare:o,event:null,face:null,frame:null,frameBorder:null,hSpace:c,leftMargin:c,link:null,longDesc:null,lowSrc:null,marginHeight:c,marginWidth:c,noResize:o,noHref:o,noShade:o,noWrap:o,object:null,profile:null,prompt:null,rev:null,rightMargin:c,rules:null,scheme:null,scrolling:l,standby:null,summary:null,text:null,topMargin:c,valueType:null,version:null,vAlign:null,vLink:null,vSpace:c,allowTransparency:null,autoCorrect:null,autoSave:null,disablePictureInPicture:o,disableRemotePlayback:o,prefix:null,property:null,results:c,security:null,unselectable:null}})},53296:function(e,t,n){"use strict";var a=n(38781);e.exports=function(e,t){return a(e,t.toLowerCase())}},38781:function(e){"use strict";e.exports=function(e,t){return t in e?e[t]:t}},41757:function(e,t,n){"use strict";var a=n(96532),r=n(61723),i=n(51351);e.exports=function(e){var t,n,o=e.space,s=e.mustUseProperty||[],l=e.attributes||{},c=e.properties,u=e.transform,d={},p={};for(t in c)n=new i(t,u(l,t),c[t],o),-1!==s.indexOf(t)&&(n.mustUseProperty=!0),d[t]=n,p[a(t)]=t,p[a(n.attribute)]=t;return new r(d,p,o)}},51351:function(e,t,n){"use strict";var a=n(24192),r=n(20321);e.exports=s,s.prototype=new a,s.prototype.defined=!0;var i=["boolean","booleanish","overloadedBoolean","number","commaSeparated","spaceSeparated","commaOrSpaceSeparated"],o=i.length;function s(e,t,n,s){var l,c,u,d=-1;for(s&&(this.space=s),a.call(this,e,t);++d