diff --git a/.cursorrules b/.cursorrules index 8fd09ec6..ec0d0b92 100644 --- a/.cursorrules +++ b/.cursorrules @@ -10,7 +10,8 @@ - Redis: Cache and session management - JWT: Secure token authentication - Bcrypt: Secure password hashing -- SendGrid: Email service for verification +- SendGrid: Email service for notifications +- Jinja2: Template engine for email rendering ## Project Structure ``` @@ -43,8 +44,11 @@ src/ │ └── audit_service.py # Audit logs logic ├── templates/ │ ├── emails/ -│ │ ├── verification_email.html -│ │ └── password_reset.html +│ │ ├── base_email.html # Base template with common structure and styles +│ │ ├── verification_email.html # Email verification template +│ │ ├── password_reset.html # Password reset template +│ │ ├── welcome_email.html # Welcome email after verification +│ │ └── account_locked.html # Security alert for locked accounts └── utils/ └── security.py # Security utilities (JWT, hash) ``` @@ -68,6 +72,15 @@ src/ - Standardized returns - Use transactions for multiple operations +### Email Templates +- All email templates extend a base template +- Templates written in English +- Use Jinja2 templating system +- Consistent styling using a common base template +- Responsive design for mobile compatibility +- Clear call-to-action buttons +- Fallback mechanisms for failed template rendering + ### Routes - Appropriate status codes (201 for creation, 204 for deletion) - Error handling with `HTTPException` @@ -91,6 +104,7 @@ src/ - Protection of administrative routes with permission verification - Email verification system via tokens - Secure password recovery with one-time tokens +- Account locking after multiple failed login attempts ### Audit - Record important administrative actions @@ -110,6 +124,7 @@ src/ - Variable and function names in English - Log and error messages in English - Documentation in English +- User-facing content (emails, responses) in English - Indentation with 4 spaces - Maximum of 79 characters per line @@ -126,6 +141,7 @@ src/ - Implement resource ownership verification - Store passwords only with secure hash (bcrypt) - Implement appropriate expiration for tokens +- Use template inheritance for consistent email layouts ## Security - JWT tokens with limited lifetime @@ -135,6 +151,7 @@ src/ - Resource-based access control - Clear separation between regular users and administrators - Strict input validation with Pydantic +- Account lockout after multiple failed login attempts ## Useful Commands - `make run`: Start the server 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 deleted file mode 100644 index 6ed34f5e..00000000 Binary files a/.venv/lib/python3.10/site-packages/__pycache__/six.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index db219224..00000000 Binary files a/.venv/lib/python3.10/site-packages/__pycache__/typing_extensions.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 deleted file mode 100644 index e8803b08..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4f2d7e98..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/_staggered.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cb687ae0..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/impl.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e36bde1b..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/types.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a3b8c800..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohappyeyeballs/__pycache__/utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6504d14c..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c79492dc..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/abc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9f3eaccd..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/base_protocol.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0a19d269..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4402d663..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client_exceptions.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9d7dd3c3..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client_proto.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a3f11e52..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client_reqrep.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e4fe22a3..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/client_ws.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4841bc55..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/compression_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index aeb73cf4..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/connector.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f26ec9ce..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/cookiejar.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 063f8d6c..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/formdata.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2c6a4c23..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/hdrs.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 99944f99..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/helpers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 88219b14..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8eaddea1..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http_exceptions.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c6cec72b..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http_parser.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c571026e..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http_websocket.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 82f53d59..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/http_writer.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 14288e0c..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/log.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3676bdb9..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/multipart.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0f92497b..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/payload.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3c8b18d7..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/payload_streamer.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 deleted file mode 100644 index ca7e7d70..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/resolver.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 45460c84..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/streams.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4f6d989e..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/tcp_helpers.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 deleted file mode 100644 index aff14c5e..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/tracing.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 97e51254..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/__pycache__/typedefs.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 deleted file mode 100644 index 2ebe6ab4..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5ebfaeb3..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/helpers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3dd162aa..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/models.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9fc25f7e..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/reader.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 deleted file mode 100644 index 3bcb9372..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiohttp/_websocket/__pycache__/writer.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ab176276..00000000 Binary files a/.venv/lib/python3.10/site-packages/aiosignal/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ba83553b..00000000 Binary files a/.venv/lib/python3.10/site-packages/annotated_types/__pycache__/__init__.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 deleted file mode 100644 index 0567321f..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d0a740b4..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/__pycache__/from_thread.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ef05dfb3..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/__pycache__/lowlevel.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 deleted file mode 100644 index f6e5b4e2..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/__pycache__/to_thread.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index da7eadc4..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/_backends/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index aeca46cd..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/_backends/__pycache__/_asyncio.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 deleted file mode 100644 index 367192d6..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/__init__.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 deleted file mode 100644 index 3bdf5dbc..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_eventloop.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 70e1bd7f..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_exceptions.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d7fe49cf..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_fileio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1adf3dd7..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_resources.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index eaa4c951..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_signals.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f76495d8..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_sockets.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3a105ec5..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_streams.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b425a74b..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_subprocesses.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1f9c6ff0..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_synchronization.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5ecf0a49..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_tasks.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 35ec1ec8..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_tempfile.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 641b8001..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_testing.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 18017d17..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/_core/__pycache__/_typedattr.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 114576b4..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b888d170..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_eventloop.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 74ae011c..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_resources.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a880b067..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_sockets.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b712f1ea..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_streams.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f0a7fbdb..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_subprocesses.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6aeff366..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_tasks.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fc932ffc..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/abc/__pycache__/_testing.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 01b6339f..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/__init__.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 deleted file mode 100644 index 7175e620..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/memory.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0471239f..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/stapled.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9f044ff5..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/text.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d3464734..00000000 Binary files a/.venv/lib/python3.10/site-packages/anyio/streams/__pycache__/tls.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 deleted file mode 100644 index 2d3ac204..00000000 Binary files a/.venv/lib/python3.10/site-packages/async_timeout/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fdc25b79..00000000 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5d971fb9..00000000 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/_cmp.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2e7224d1..00000000 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/_compat.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a9ff9d41..00000000 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/_config.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 75bce077..00000000 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/_funcs.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 96500338..00000000 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/_make.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8817ac80..00000000 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/_next_gen.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 557a59e6..00000000 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/_version_info.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 164b77f6..00000000 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/converters.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 206ea41a..00000000 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/exceptions.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 13864740..00000000 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/filters.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4a1b74a8..00000000 Binary files a/.venv/lib/python3.10/site-packages/attr/__pycache__/setters.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bc71b2ac..00000000 Binary files a/.venv/lib/python3.10/site-packages/attr/__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 deleted file mode 100644 index ced851dd..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 91cb535d..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/__pycache__/consts.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b91a9f73..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/__pycache__/deprecate.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d1ff8473..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6005c487..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/encoding.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 95f99d9a..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/errors.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4bb0e9db..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/security.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a642525a..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/common/__pycache__/urls.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6c226b94..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 177aa4f9..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/__init__.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 deleted file mode 100644 index adbcf88b..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/errors.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 926f451b..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/framework_integration.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d46004a8..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/registry.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 24d8924b..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/sync_app.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 350e043a..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/base_client/__pycache__/sync_openid.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 deleted file mode 100644 index 5575c1b3..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 176c613f..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/assertion_session.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f73d0354..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/oauth1_session.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index aa247f12..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/oauth2_session.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 114dd1e6..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/integrations/requests_client/__pycache__/utils.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 deleted file mode 100644 index 05efde3d..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 544c243a..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/__pycache__/errors.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 deleted file mode 100644 index 193ce2cd..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/__pycache__/util.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 deleted file mode 100644 index 258f145f..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7515/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e72b9167..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7515/__pycache__/jws.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9730a711..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7515/__pycache__/models.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bdc3ba1c..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7516/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d5ed170a..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7516/__pycache__/jwe.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 361e6606..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7516/__pycache__/models.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0c09aff0..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f0c4f9bb..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/_cryptography_key.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bc1038df..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/asymmetric_key.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f44741f4..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/base_key.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 88219bc6..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/jwk.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9fc98c43..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7517/__pycache__/key_set.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3d41e72c..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 98b37055..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/ec_key.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6763c4a3..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/jwe_algs.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d7eabf96..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/jwe_encs.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 00b00307..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/jwe_zips.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 814e0b8f..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/jws_algs.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9d0db856..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/oct_key.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6c815a1a..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/rsa_key.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ca63fb1d..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7518/__pycache__/util.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d7e88dc4..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7519/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bdd468b3..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7519/__pycache__/claims.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2e553b8d..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc7519/__pycache__/jwt.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index dd9e74d1..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc8037/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7ec076d0..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc8037/__pycache__/jws_eddsa.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8ff13436..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/jose/rfc8037/__pycache__/okp_key.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 33fac88e..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 492b3482..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/__pycache__/client.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 deleted file mode 100644 index 8b0082b6..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index be8054eb..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/authorization_server.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 693dd04c..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/base_server.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index de6e0e0c..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/client_auth.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1835dd9a..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/errors.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 59fd617f..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/models.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d1f954ad..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/parameters.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 44d8efc7..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/resource_protector.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 deleted file mode 100644 index b0384a3a..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/signature.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9af29504..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/util.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fa5983bd..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth1/rfc5849/__pycache__/wrapper.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 15e1c756..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4226f9f1..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/__pycache__/auth.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 40e125e7..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 518efeec..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7d283910..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e15fb427..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/authenticate_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b8863bbf..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/authorization_server.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d51791a2..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/errors.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 93eb843f..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/models.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3599af63..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/parameters.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bd262cce..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/requests.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ad8ee589..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/resource_protector.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3fc1bfa3..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/token_endpoint.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 677e2a98..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/util.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 641318db..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/__pycache__/wrappers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9aa3ce6e..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5d5a5314..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/authorization_code.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1953bddc..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ff0246f9..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/client_credentials.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a47d017e..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/implicit.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8115b9e6..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/refresh_token.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4c22801d..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6749/grants/__pycache__/resource_owner_password_credentials.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 63338f18..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a2bee8a3..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/errors.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ed44c9f1..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/parameters.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c7a53d9b..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/token.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index aed539e0..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc6750/__pycache__/validator.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9e50fa38..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7009/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index aa566a54..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7009/__pycache__/parameters.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 239e1485..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7009/__pycache__/revocation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 43819127..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7521/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 66225759..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7521/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1d584b96..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5ebc19b0..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/assertion.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8ea8e8ff..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/auth.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 43b20b79..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2e4f695f..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/jwt_bearer.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0111dcad..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/token.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 89748c13..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7523/__pycache__/validator.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 deleted file mode 100644 index b09d4de4..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7636/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 83ffe56d..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oauth2/rfc7636/__pycache__/challenge.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 deleted file mode 100644 index 6fc6a242..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8e4d4f17..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7bfeec3c..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/claims.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b841a913..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/errors.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 23ffa283..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/models.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8163d8a9..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/core/__pycache__/util.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cf9678da..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2db4dbc6..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/code.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5515fae1..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/hybrid.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a3f5e960..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/implicit.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 47efb43d..00000000 Binary files a/.venv/lib/python3.10/site-packages/authlib/oidc/core/grants/__pycache__/util.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 deleted file mode 100644 index 70a2e2c2..00000000 Binary files a/.venv/lib/python3.10/site-packages/cachetools/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 28447abd..00000000 Binary files a/.venv/lib/python3.10/site-packages/cachetools/__pycache__/_decorators.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 deleted file mode 100644 index acfd284f..00000000 Binary files a/.venv/lib/python3.10/site-packages/cachetools/__pycache__/keys.cpython-310.pyc and /dev/null differ 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 deleted file mode 100644 index 9a95e85c..00000000 Binary files a/.venv/lib/python3.10/site-packages/certifi/__pycache__/__init__.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 deleted file mode 100644 index ff2a782c..00000000 Binary files a/.venv/lib/python3.10/site-packages/certifi/__pycache__/core.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 deleted file mode 100644 index 58044b51..00000000 Binary files a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/__init__.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 deleted file mode 100644 index 493b4413..00000000 Binary files a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/api.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8b01f9b3..00000000 Binary files a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/cd.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 62057463..00000000 Binary files a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/constant.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2a6950c4..00000000 Binary files a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/legacy.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 deleted file mode 100644 index eed7d699..00000000 Binary files a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/models.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7951a30e..00000000 Binary files a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6c146b6c..00000000 Binary files a/.venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/version.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 deleted file mode 100644 index ae37ad97..00000000 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 702b1c15..00000000 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/_compat.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 deleted file mode 100644 index 44e23eb2..00000000 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/core.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cc33ede6..00000000 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/decorators.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 12b21b0b..00000000 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/exceptions.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a8015a7a..00000000 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/formatting.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5652ad78..00000000 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/globals.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8ec26d21..00000000 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/parser.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 deleted file mode 100644 index 05264c22..00000000 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/termui.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 deleted file mode 100644 index 1e379265..00000000 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/types.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d5fbf60b..00000000 Binary files a/.venv/lib/python3.10/site-packages/click/__pycache__/utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 75b55128..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/__pycache__/__about__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f26e96dd..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8b3674e6..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/__pycache__/exceptions.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 deleted file mode 100644 index fd97b0bd..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/__pycache__/utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3e682cb3..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 93daf58a..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/__pycache__/_oid.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cf19e1db..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ab37aab9..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f8c23d2f..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/__pycache__/backend.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3c9e2bf3..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a5f425f5..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 90555151..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/__pycache__/_conditional.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f47820c1..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/__pycache__/binding.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 32cc6242..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/decrepit/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 40fb8625..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/decrepit/ciphers/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 63a932f6..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/decrepit/ciphers/__pycache__/algorithms.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 735e4d8f..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5f2467fd..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/_asymmetric.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1554ac8d..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/_cipheralgorithm.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 39c7f19b..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/_serialization.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 deleted file mode 100644 index 903a756c..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/constant_time.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b4b84577..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/hashes.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a56706de..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/hmac.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b5c778f8..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/keywrap.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 856ce534..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__pycache__/padding.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 deleted file mode 100644 index bd9e5a1d..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 27a5f678..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/dh.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9b466c2c..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/dsa.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 37f81d82..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/ec.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a3cd28b8..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/ed25519.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 630693f6..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/ed448.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 89f4eb61..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/padding.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 38d6f2ea..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/rsa.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 972e6c44..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/types.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3dc221ba..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e11e128a..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/x25519.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 85262cf2..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/x448.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 33a20bdc..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/__init__.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 deleted file mode 100644 index 7d50a569..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/algorithms.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9c60d70d..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fadff9a7..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/modes.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a81fcadc..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/__init__.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 deleted file mode 100644 index 84f0f5e5..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/concatkdf.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 deleted file mode 100644 index 01096116..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5ceb7eda..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/base.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 deleted file mode 100644 index cc7a14fd..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__pycache__/ssh.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 deleted file mode 100644 index 0e345037..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a12b6db8..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0e109ff2..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/certificate_transparency.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ad914526..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/extensions.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 16067dae..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/general_name.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 18580b3a..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/name.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 deleted file mode 100644 index 4ba6b31e..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/oid.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2e5b6a77..00000000 Binary files a/.venv/lib/python3.10/site-packages/cryptography/x509/__pycache__/verification.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 39e7a210..00000000 Binary files a/.venv/lib/python3.10/site-packages/dateutil/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e833d06d..00000000 Binary files a/.venv/lib/python3.10/site-packages/dateutil/__pycache__/_common.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6bd1b7c8..00000000 Binary files a/.venv/lib/python3.10/site-packages/dateutil/__pycache__/_version.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 deleted file mode 100644 index 07a510cf..00000000 Binary files a/.venv/lib/python3.10/site-packages/dateutil/__pycache__/relativedelta.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 deleted file mode 100644 index 64264746..00000000 Binary files a/.venv/lib/python3.10/site-packages/dateutil/parser/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3e8bc53c..00000000 Binary files a/.venv/lib/python3.10/site-packages/dateutil/parser/__pycache__/_parser.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b5fbe5b4..00000000 Binary files a/.venv/lib/python3.10/site-packages/dateutil/parser/__pycache__/isoparser.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8a8df9ff..00000000 Binary files a/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 320a77e7..00000000 Binary files a/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/_common.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9667cf01..00000000 Binary files a/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/_factories.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 32a34947..00000000 Binary files a/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/tz.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index dfc3be78..00000000 Binary files a/.venv/lib/python3.10/site-packages/dateutil/tz/__pycache__/win.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 deleted file mode 100644 index 4652c1c8..00000000 Binary files a/.venv/lib/python3.10/site-packages/deprecated/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 04fe1e29..00000000 Binary files a/.venv/lib/python3.10/site-packages/deprecated/__pycache__/classic.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 deleted file mode 100644 index 09c37bd5..00000000 Binary files a/.venv/lib/python3.10/site-packages/distro/__pycache__/__init__.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 deleted file mode 100644 index 3aca0b5c..00000000 Binary files a/.venv/lib/python3.10/site-packages/distro/__pycache__/distro.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 deleted file mode 100644 index ee3c4684..00000000 Binary files a/.venv/lib/python3.10/site-packages/dotenv/__pycache__/__init__.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 deleted file mode 100644 index 0319926a..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__/parser.cpython-310.pyc b/.venv/lib/python3.10/site-packages/dotenv/__pycache__/parser.cpython-310.pyc deleted file mode 100644 index 51428968..00000000 Binary files a/.venv/lib/python3.10/site-packages/dotenv/__pycache__/parser.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index efa1dabe..00000000 Binary files a/.venv/lib/python3.10/site-packages/dotenv/__pycache__/variables.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 deleted file mode 100644 index df8f44ff..00000000 Binary files a/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1a24b60c..00000000 Binary files a/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_catch.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6e0abb5b..00000000 Binary files a/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_exceptions.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d73f2a6e..00000000 Binary files a/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_formatting.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ce820acf..00000000 Binary files a/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_suppress.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2780e64c..00000000 Binary files a/.venv/lib/python3.10/site-packages/exceptiongroup/__pycache__/_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d00bd473..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/__init__.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 deleted file mode 100644 index 600ba8c1..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/_compat.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8ecd09be..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/applications.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 14880f78..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/background.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 deleted file mode 100644 index c0097983..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/concurrency.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 63438817..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/datastructures.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 67c8ba2b..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/encoders.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f05de827..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/exception_handlers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bcf4550b..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/exceptions.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a6565cb4..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/logger.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cb7a59c8..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/param_functions.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b30fa613..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/params.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1e693195..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/requests.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a35ea57d..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/responses.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a53de39f..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/routing.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 deleted file mode 100644 index fae553ff..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/types.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 43d151c2..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 17aa7b29..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/__pycache__/websockets.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0b7ae9d0..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/dependencies/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1942ad99..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/dependencies/__pycache__/models.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index decf8ff3..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/dependencies/__pycache__/utils.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 deleted file mode 100644 index f7cb0b7e..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5ddc73f6..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/constants.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index db4f927e..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/docs.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a36c5cfe..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/models.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 17774329..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/openapi/__pycache__/utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 76b67281..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 84bb43ac..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/api_key.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4e44773d..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1c3ad1d1..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/http.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d37447fa..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/oauth2.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 185b9ea2..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/open_id_connect_url.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 989530f3..00000000 Binary files a/.venv/lib/python3.10/site-packages/fastapi/security/__pycache__/utils.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 deleted file mode 100644 index f78da488..00000000 Binary files a/.venv/lib/python3.10/site-packages/frozenlist/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 49f9192e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 74362880..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/__pycache__/runners.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index acb6d15d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/__pycache__/telemetry.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a1379d10..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/__pycache__/version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9eceb8ec..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8a0ab1b5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/active_streaming_tool.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8318ae8f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/base_agent.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8852007a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/callback_context.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e4bf68b7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/invocation_context.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 deleted file mode 100644 index da56da2b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/live_request_queue.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d8c2c320..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/llm_agent.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cc724ab8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/loop_agent.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 79af2ad9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/parallel_agent.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b51e4156..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/readonly_context.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 deleted file mode 100644 index 5bb3865d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/run_config.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2d92a75c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/sequential_agent.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9ee96248..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/agents/__pycache__/transcription_entry.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9a341167..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/artifacts/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fad77f39..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/artifacts/__pycache__/base_artifact_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 68bcb6a4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/artifacts/__pycache__/gcs_artifact_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 18b453c5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/artifacts/__pycache__/in_memory_artifact_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3c58cd11..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 60574e75..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_credential.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fd8c4af5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3f0e6b8f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_preprocessor.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 23bd2e66..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_schemes.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a52ec2eb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/auth/__pycache__/auth_tool.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 deleted file mode 100644 index ec9c33fa..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f8d606f7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/base_code_executor.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4612f42a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/code_execution_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d9e5c0a8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/code_executor_context.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1a03504b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/container_code_executor.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d3bc32ad..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/unsafe_local_code_executor.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f5f11f8f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/code_executors/__pycache__/vertex_ai_code_executor.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 deleted file mode 100644 index f0c069da..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/events/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f866d118..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/events/__pycache__/event.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d2052f70..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/events/__pycache__/event_actions.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e6de50d0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2b350a56..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/base_example_provider.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9f2628de..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/example.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 59bc7fd7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/example_util.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8210921a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/examples/__pycache__/vertex_ai_example_store.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 301c8f7c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c78f0063..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 64301a5f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/_base_llm_processor.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2c129858..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/_code_execution.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f7256ee9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/_nl_planning.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6d192f05..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/agent_transfer.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 deleted file mode 100644 index 154bb524..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/auto_flow.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fabb3840..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/base_llm_flow.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d72e1232..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/basic.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 173a975c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/contents.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a9f0e0c6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/functions.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index edea6a28..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/identity.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a3e004e4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/instructions.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 503687b6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/flows/llm_flows/__pycache__/single_flow.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 64aab746..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/memory/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 02e15aae..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/memory/__pycache__/base_memory_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 182d03f2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/memory/__pycache__/in_memory_memory_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b112257e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/memory/__pycache__/vertex_ai_rag_memory_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 57fb07b7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/__init__.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 deleted file mode 100644 index 68985a90..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/base_llm.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 32a948da..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/base_llm_connection.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 60b2eb30..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/gemini_llm_connection.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 71aa21c1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/google_llm.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8d1816d0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/lite_llm.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index edd5f026..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/llm_request.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 353dbe51..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/llm_response.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f4508b25..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/models/__pycache__/registry.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a41ffc34..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/planners/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 92bc694a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/planners/__pycache__/base_planner.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 500bc299..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/planners/__pycache__/built_in_planner.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 370247ff..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/planners/__pycache__/plan_re_act_planner.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 50a2188d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5c43cfc8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/base_session_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 99776571..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/database_session_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0b3e0dfc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/in_memory_session_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 32ab95c6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/session.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ab0b1956..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/state.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 877333d3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/sessions/__pycache__/vertex_ai_session_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 29bdbb01..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a45a6ee8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/_automatic_function_calling_util.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 deleted file mode 100644 index 34bd26fd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/base_tool.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index eb345d3d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/built_in_code_execution_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 deleted file mode 100644 index e2f20abb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/example_tool.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a16977da..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/exit_loop_tool.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 829312cb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/function_parameter_parse_util.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d4698809..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/function_tool.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 58a9d280..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/get_user_choice_tool.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a966e154..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/google_search_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 deleted file mode 100644 index ac49b414..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/load_artifacts_tool.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2038541a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/load_memory_tool.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 deleted file mode 100644 index 48fe90b6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/long_running_tool.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7fb90bc4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/preload_memory_tool.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f6a518f1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/tool_context.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 deleted file mode 100644 index f6fa0d70..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/transfer_to_agent_tool.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 84169c24..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/__pycache__/vertex_ai_search_tool.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 281a96e2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fa408b40..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/__pycache__/apihub_toolset.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index de3acc03..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/clients/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ab252cf5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/apihub_tool/clients/__pycache__/apihub_client.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 deleted file mode 100644 index 7ccf0b2b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 36dd0521..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/conversion_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a362618f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/mcp_session_manager.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fd05cd06..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/mcp_tool.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b3a71262..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/mcp_tool/__pycache__/mcp_toolset.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e4bc06a7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 75e34c0d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d256a872..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/__pycache__/auth_helpers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 51f1b3ac..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/credential_exchangers/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ddb23171..00000000 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 /dev/null 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 deleted file mode 100644 index 164636a5..00000000 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 /dev/null 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 deleted file mode 100644 index ae4cd798..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/auth/credential_exchangers/__pycache__/oauth2_exchanger.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 197d8b52..00000000 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 /dev/null 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 deleted file mode 100644 index a221ab73..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/common/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2dc028d7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/common/__pycache__/common.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b73930cc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6a8abd4b..00000000 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 /dev/null 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 deleted file mode 100644 index 00113674..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/openapi_toolset.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6adfae60..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/adk/tools/openapi_tool/openapi_spec_parser/__pycache__/operation_parser.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f51616e3..00000000 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 /dev/null 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 deleted file mode 100644 index 9c098671..00000000 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 /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 deleted file mode 100644 index 8ea39841..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/annotations_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 deleted file mode 100644 index 6a968290..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/client_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 deleted file mode 100644 index 3e22fbe0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/field_behavior_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 deleted file mode 100644 index 8e5631bc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/http_pb2.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6e7b698e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/httpbody_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 deleted file mode 100644 index 4a9da7fd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/launch_stage_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 deleted file mode 100644 index c456d617..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api/__pycache__/resource_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 deleted file mode 100644 index 48d409f4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c8a60741..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/_rest_streaming_base.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 deleted file mode 100644 index 31c27621..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/client_info.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8300c9fe..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/client_logging.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 437b420d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/client_options.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5b0187aa..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/datetime_helpers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 086bdb09..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/exceptions.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 deleted file mode 100644 index 8c04d423..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/grpc_helpers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7c33a6cb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/grpc_helpers_async.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b8e98a7e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/iam.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e601480a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/operation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 216c8c56..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/operation_async.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 59f9a022..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/page_iterator.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6a27403e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/page_iterator_async.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8bf058d3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/path_template.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7d5c1873..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/protobuf_helpers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 23612d7b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/rest_helpers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 73e81f6c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/rest_streaming.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5bd1e290..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/rest_streaming_async.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1f539e11..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/retry_async.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index eec300cb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/timeout.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 deleted file mode 100644 index d6727832..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/__pycache__/version.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 deleted file mode 100644 index 198f195a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 791e282a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/_helpers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 80fc9d85..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/async_future.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6ae76356..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fa70b717..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/future/__pycache__/polling.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7ad7d6b7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7e99d3fb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/client_info.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 40e8c1b3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/config.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0962969c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/config_async.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 963707d1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/method.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 888fd458..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/method_async.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 356b84b3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/gapic_v1/__pycache__/routing_header.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 342e27bb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index aa258bc6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/abstract_operations_base_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7ec40e68..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/abstract_operations_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a61f139b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/operations_async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ce8d9b4f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/operations_client.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 deleted file mode 100644 index 856eecec..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/operations_rest_client_async.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 35fc137f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1586bc64..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/pagers_async.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6e8eb272..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/__pycache__/pagers_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 041790d7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7d43ed85..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 64ba3a2a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7c751866..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/operations_v1/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index dd37bae5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index af6cd9ba..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7e0c2e3e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_streaming.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 30ec0e02..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_streaming_async.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 83f4db88..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_unary.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 21107c8f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/api_core/retry/__pycache__/retry_unary_async.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6e2fc72b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 87af8708..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_cloud_sdk.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 deleted file mode 100644 index 9ea3c2f2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_credentials_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 619f1f31..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_default.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 deleted file mode 100644 index ee5622ef..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_exponential_backoff.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1227263f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_helpers.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 deleted file mode 100644 index b4612b14..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_refresh_worker.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7be098c4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/_service_account_info.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2819684e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/api_key.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 deleted file mode 100644 index bec701e4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/credentials.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 deleted file mode 100644 index e4157d1d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/environment_vars.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8f29a183..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/exceptions.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 deleted file mode 100644 index 9f6a3ff3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/iam.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 deleted file mode 100644 index ccd54352..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/jwt.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5a1550c3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/metrics.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 deleted file mode 100644 index 53b944e0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/__pycache__/version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 07d11eab..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/aio/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4ff136f6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/aio/__pycache__/credentials.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b73f9c98..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/aio/transport/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bb8e8ce8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/aio/transport/__pycache__/aiohttp.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c279af80..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/aio/transport/__pycache__/sessions.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 deleted file mode 100644 index 2758525a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 29d8c464..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/_cryptography_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 deleted file mode 100644 index a613c2bf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6bb5154d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/es256.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c9899f15..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/crypt/__pycache__/rsa.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 54d3c9cd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/__init__.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 deleted file mode 100644 index 13130eba..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/_http_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7de4619d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/_mtls_helper.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 deleted file mode 100644 index 9b947373..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f35eb62d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/mtls.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 265e23a4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/auth/transport/__pycache__/requests.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 deleted file mode 100644 index 77e785c9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/__pycache__/version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 77553129..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/_helpers/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0ffa8ae1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/_http/__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 deleted file mode 100644 index 2438f5b5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 97e85b83..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/_publisher_models.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 deleted file mode 100644 index 2afd3829..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/base.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 deleted file mode 100644 index c5db52f7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/hyperparameter_tuning.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0baebbcf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/initializer.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 189787a2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/jobs.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ca2cc344..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/models.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 deleted file mode 100644 index 7d9c60b3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/pipeline_job_schedules.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 206465cc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/pipeline_jobs.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4951e8bf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/schedules.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 18be666c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/schema.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 29bdaf37..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/telemetry.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 51b9803a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/training_jobs.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d262226e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/__pycache__/version.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 deleted file mode 100644 index cc6287cf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/_pipeline_based_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ed9204e1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/_pipeline_based_service/__pycache__/pipeline_based_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 65c7ac7f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/compat/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ba336047..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/compat/services/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4a6af32c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/compat/types/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a4505bda..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e43457b6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 38e2c98f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/pipeline.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1a75f6a0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/prediction.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 29b24401..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/constants/__pycache__/schedule.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a71d0df4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 86d5a7b4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/_datasources.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2b3a5a7b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/column_names_dataset.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c9e0c85a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/dataset.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a3471bb8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/image_dataset.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f77faf6e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/tabular_dataset.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 97ba93cc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/text_dataset.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4086447a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/time_series_dataset.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1cd8949b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/datasets/__pycache__/video_dataset.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 deleted file mode 100644 index 96d0f4d2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/explain/__pycache__/__init__.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 deleted file mode 100644 index 7a0cf5ce..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 47a78257..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/_entity_type.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f5c0d01c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/entity_type.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cf0a935d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/feature.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 62103b22..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/featurestore/__pycache__/featurestore.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fa151641..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/gapic/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 694e3616..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/gapic/schema/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c1a13f3a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/helpers/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e4fcffc0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/helpers/__pycache__/container_uri_builders.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1110c440..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 67b23d59..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/__pycache__/matching_engine_index.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 98719b07..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/__pycache__/matching_engine_index_config.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 163c8e41..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/__pycache__/matching_engine_index_endpoint.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a11012cd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/_protos/__pycache__/match_service_pb2.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 336e1226..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/matching_engine/_protos/__pycache__/match_service_pb2_grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fa16dbfe..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 534679ff..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/_models.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ffd3b733..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/artifact.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9556fbf8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/constants.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 01ab539d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/context.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9435d0bc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/execution.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e4634f42..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/experiment_resources.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a73b5235..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/experiment_run_resource.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 61864fc1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/metadata.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e0f5c4c8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/metadata_store.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index da6a8b20..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/resource.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4ca5a918..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/__pycache__/utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c86c6053..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/__pycache__/base_artifact.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 deleted file mode 100644 index 20a60b76..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/__pycache__/utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 694f2e4a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/metadata/schema/google/__pycache__/artifact_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 deleted file mode 100644 index 44063db4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_evaluation/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 18d14e85..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_evaluation/__pycache__/model_evaluation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9e9590b7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_evaluation/__pycache__/model_evaluation_job.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e52759e7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 273891d5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/alert.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8aabc49f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/objective.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4141e0da..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/sampling.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2ca9f6af..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/model_monitoring/__pycache__/schedule.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 deleted file mode 100644 index d69c683b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/preview/featurestore/__pycache__/entity_type.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 deleted file mode 100644 index e8d3a0ea..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/__init__.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 deleted file mode 100644 index 3ea96ea3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/tensorboard_resource.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 deleted file mode 100644 index f7df880d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/tensorboard/__pycache__/uploader_tracker.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 deleted file mode 100644 index 593720f1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 01b14405..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/_explanation_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index be868799..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/_ipython_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8aeabdbe..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/autologging_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c59e9bc6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/column_transformations_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c5e7fe69..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/console_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3b6efd27..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/featurestore_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1c8acb6d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/gcs_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 deleted file mode 100644 index fd1a0136..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/pipeline_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 deleted file mode 100644 index 993efaf3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/resource_manager_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 56370edc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/rest_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7c254ac4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/source_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 deleted file mode 100644 index 7dc5975d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/worker_spec_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fe91b661..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/__pycache__/yaml_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ff677c4a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/enhanced_library/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 083cc937..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/enhanced_library/__pycache__/_decorators.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 260e9bdf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/utils/enhanced_library/__pycache__/value_converter.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 882c9f79..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 84ea5f45..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d10bcff5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e3bb753f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance/__pycache__/gapic_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4939ce3c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8579d729..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/__pycache__/gapic_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c0cb1d5b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/instance_v1/types/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 884df418..00000000 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 /dev/null 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 deleted file mode 100644 index 3d59cbb4..00000000 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 /dev/null 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 deleted file mode 100644 index 44c8b37c..00000000 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 /dev/null 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 deleted file mode 100644 index a86cf47a..00000000 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 /dev/null 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 deleted file mode 100644 index 5ed1d5f4..00000000 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 /dev/null 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 deleted file mode 100644 index 1b0143b9..00000000 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 /dev/null 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 deleted file mode 100644 index 37c12f0e..00000000 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 /dev/null 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 deleted file mode 100644 index ec184962..00000000 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 /dev/null 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 deleted file mode 100644 index 001e25c1..00000000 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 /dev/null 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 deleted file mode 100644 index afd92a60..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e6f45edb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params/__pycache__/gapic_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 36169a9b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 38f5705d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/__pycache__/gapic_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6d47d7a8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/params_v1/types/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ba109d42..00000000 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 /dev/null 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 deleted file mode 100644 index daa665c2..00000000 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 /dev/null 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 deleted file mode 100644 index 9e937107..00000000 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 /dev/null 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 deleted file mode 100644 index b7675e12..00000000 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 /dev/null 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 deleted file mode 100644 index 83fc6e14..00000000 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 /dev/null 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 deleted file mode 100644 index 05af89e6..00000000 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 /dev/null 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 deleted file mode 100644 index e77b22d7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a6ffc94c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction/__pycache__/gapic_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 19f5e322..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b2a79d3c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/__pycache__/gapic_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bbeebe3f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0f50bca8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/predict/prediction_v1/types/__pycache__/classification.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6f9271dd..00000000 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 /dev/null 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 deleted file mode 100644 index 93856559..00000000 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 /dev/null 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 deleted file mode 100644 index d27eb28f..00000000 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 /dev/null 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 deleted file mode 100644 index eaba1268..00000000 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 /dev/null 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 deleted file mode 100644 index 6c58fbce..00000000 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 /dev/null 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 deleted file mode 100644 index c3a8d86c..00000000 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 /dev/null 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 deleted file mode 100644 index 66197b6e..00000000 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 /dev/null 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 deleted file mode 100644 index cfdd1024..00000000 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 /dev/null 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 deleted file mode 100644 index 1725e85c..00000000 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 /dev/null 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 deleted file mode 100644 index be14f04f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f15c916c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ee81e7f8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition/__pycache__/gapic_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0536fbc9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c1fc1e4a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/__pycache__/gapic_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fbdb748e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1/schema/trainingjob/definition_v1/types/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index afcc20a4..00000000 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 /dev/null 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 deleted file mode 100644 index c65e89ae..00000000 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 /dev/null 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 deleted file mode 100644 index e016d416..00000000 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 /dev/null 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 deleted file mode 100644 index 18e9f145..00000000 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 /dev/null 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 deleted file mode 100644 index 593baa0f..00000000 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 /dev/null 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 deleted file mode 100644 index 5390fa55..00000000 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 /dev/null 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 deleted file mode 100644 index 93cd8713..00000000 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 /dev/null 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 deleted file mode 100644 index 248f5352..00000000 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 /dev/null 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 deleted file mode 100644 index aa72f596..00000000 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 /dev/null 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 deleted file mode 100644 index b8e49776..00000000 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 /dev/null 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 deleted file mode 100644 index 522f68a3..00000000 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 /dev/null 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 deleted file mode 100644 index 7b261f1c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e2061aee..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fff24669..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d7448d26..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance/__pycache__/gapic_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 39e04af1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 72166913..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/__pycache__/gapic_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3b099ed4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/instance_v1beta1/types/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 619056e4..00000000 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 /dev/null 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 deleted file mode 100644 index 7f564261..00000000 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 /dev/null 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 deleted file mode 100644 index 0bd134cc..00000000 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 /dev/null 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 deleted file mode 100644 index 1f6d501c..00000000 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 /dev/null 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 deleted file mode 100644 index cbc5a329..00000000 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 /dev/null 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 deleted file mode 100644 index 7eb3ad12..00000000 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 /dev/null 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 deleted file mode 100644 index 67b72002..00000000 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 /dev/null 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 deleted file mode 100644 index f7ec96d4..00000000 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 /dev/null 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 deleted file mode 100644 index 9976a6ca..00000000 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 /dev/null 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 deleted file mode 100644 index 0ea14197..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 08de4b5e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params/__pycache__/gapic_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 536d9291..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6a4b4129..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/__pycache__/gapic_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8653bff6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/params_v1beta1/types/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7f0dfcf1..00000000 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 /dev/null 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 deleted file mode 100644 index 60235d23..00000000 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 /dev/null 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 deleted file mode 100644 index 34774614..00000000 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 /dev/null 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 deleted file mode 100644 index 32f9f2dc..00000000 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 /dev/null 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 deleted file mode 100644 index 8a32b0a6..00000000 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 /dev/null 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 deleted file mode 100644 index 9daeae9f..00000000 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 /dev/null 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 deleted file mode 100644 index ebe9c30a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f60775c0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction/__pycache__/gapic_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 36d76e59..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f77ac0db..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/__pycache__/gapic_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ee82ecb4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5cfa24c9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/predict/prediction_v1beta1/types/__pycache__/classification.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3624033b..00000000 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 /dev/null 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 deleted file mode 100644 index d0a18059..00000000 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 /dev/null 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 deleted file mode 100644 index 68023e86..00000000 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 /dev/null 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 deleted file mode 100644 index 0950a284..00000000 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 /dev/null 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 deleted file mode 100644 index e27f170e..00000000 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 /dev/null 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 deleted file mode 100644 index 9c54b2be..00000000 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 /dev/null 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 deleted file mode 100644 index 226979f8..00000000 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 /dev/null 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 deleted file mode 100644 index 6f761577..00000000 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 /dev/null 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 deleted file mode 100644 index 0b5b1eb6..00000000 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 /dev/null 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 deleted file mode 100644 index dae7edcc..00000000 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 /dev/null 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 deleted file mode 100644 index eb1de499..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0628da68..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 276342a9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition/__pycache__/gapic_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0952df88..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b3da0edd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/__pycache__/gapic_version.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__/__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 deleted file mode 100644 index 50e35b17..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform/v1beta1/schema/trainingjob/definition_v1beta1/types/__pycache__/__init__.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 deleted file mode 100644 index 0d9085b2..00000000 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 /dev/null 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 deleted file mode 100644 index 8b1e80f0..00000000 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 /dev/null 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 deleted file mode 100644 index eff49f5d..00000000 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 /dev/null 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 deleted file mode 100644 index fd4d1941..00000000 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 /dev/null 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 deleted file mode 100644 index 87b5815d..00000000 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 /dev/null 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 deleted file mode 100644 index 0ff5bb33..00000000 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 /dev/null 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 deleted file mode 100644 index f5881803..00000000 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 /dev/null 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 deleted file mode 100644 index b47797c3..00000000 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 /dev/null 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 deleted file mode 100644 index c3d8157e..00000000 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 /dev/null 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 deleted file mode 100644 index eebfd123..00000000 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 /dev/null 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 deleted file mode 100644 index e2280a11..00000000 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 /dev/null 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 deleted file mode 100644 index e8661b52..00000000 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 /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 deleted file mode 100644 index bacfc78a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 39c9d028..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/__pycache__/gapic_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index da4678ce..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 62f5cc8c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b833126e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 53922182..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1bf960ce..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e394ef38..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a12ab5f0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2bb343cd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8c965704..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e7fd6f53..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index aa063585..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2eb9f515..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/dataset_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3f0c759c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index dfd95d2b..00000000 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 /dev/null 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 deleted file mode 100644 index 3722fe8a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e5938d18..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/deployment_resource_pool_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5e7a969c..00000000 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 /dev/null 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 deleted file mode 100644 index 6ecefd0c..00000000 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 /dev/null 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 deleted file mode 100644 index 20c0d4bd..00000000 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 /dev/null 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 deleted file mode 100644 index 1c0ea959..00000000 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 /dev/null 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 deleted file mode 100644 index ec5ad32e..00000000 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 /dev/null 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 deleted file mode 100644 index aa27e9a6..00000000 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 /dev/null 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 deleted file mode 100644 index 5db67841..00000000 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 /dev/null 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 deleted file mode 100644 index be1bde2e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 05befe22..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d4de5654..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9c0a67b3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f7a2cb81..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5399952c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d5b8ce8a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 45c6077a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ad3c68f1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 15c58793..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e72252ed..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/endpoint_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0a1f9315..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 53b00dff..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fdcd91de..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8e0de8ed..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 93e3b1f5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cfaef987..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 91225e14..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ca799395..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0a741316..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 84560ba4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/evaluation_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c34b87df..00000000 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 /dev/null 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 deleted file mode 100644 index e90480e3..00000000 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 /dev/null 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 deleted file mode 100644 index 04665e9f..00000000 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 /dev/null 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 deleted file mode 100644 index 1fe23e15..00000000 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 /dev/null 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 deleted file mode 100644 index d39e8803..00000000 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 /dev/null 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 deleted file mode 100644 index 60285c9e..00000000 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 /dev/null 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 deleted file mode 100644 index 22a76027..00000000 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 /dev/null 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 deleted file mode 100644 index e3adec07..00000000 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 /dev/null 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 deleted file mode 100644 index afee951b..00000000 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 /dev/null 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 deleted file mode 100644 index ce114cc0..00000000 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 /dev/null 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 deleted file mode 100644 index 01bf6630..00000000 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 /dev/null 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 deleted file mode 100644 index 99c87fbb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2f3e774e..00000000 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 /dev/null 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 deleted file mode 100644 index 0b442ecf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_online_store_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9225a18a..00000000 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 /dev/null 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 deleted file mode 100644 index 5c32f181..00000000 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 /dev/null 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 deleted file mode 100644 index 0a885f81..00000000 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 /dev/null 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 deleted file mode 100644 index ad0e2850..00000000 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 /dev/null 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 deleted file mode 100644 index 1c4f8fa6..00000000 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 /dev/null 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 deleted file mode 100644 index 691dc3bc..00000000 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 /dev/null 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 deleted file mode 100644 index f562d447..00000000 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 /dev/null 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 deleted file mode 100644 index df27f93c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6cd39459..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a892df71..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5b00677b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3b744a4b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e60db9e0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e6c0d7fe..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a99e7604..00000000 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 /dev/null 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 deleted file mode 100644 index 7aedb141..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/feature_registry_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 93a87ba6..00000000 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 /dev/null 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 deleted file mode 100644 index cdd235ad..00000000 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 /dev/null 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 deleted file mode 100644 index 5eaf6621..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 54735f9c..00000000 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 /dev/null 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 deleted file mode 100644 index beb4c3b7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e94b88f2..00000000 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 /dev/null 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 deleted file mode 100644 index ac49bbe9..00000000 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 /dev/null 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 deleted file mode 100644 index 9c884256..00000000 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 /dev/null 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 deleted file mode 100644 index 8b39f963..00000000 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 /dev/null 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 deleted file mode 100644 index 3d3d82f6..00000000 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 /dev/null 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 deleted file mode 100644 index b81888bd..00000000 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 /dev/null 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 deleted file mode 100644 index a0180a60..00000000 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 /dev/null 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 deleted file mode 100644 index c19179f7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4f72feb2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ccafd402..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c8651e8b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d71de4c7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6c6bf25e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 69930777..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4ba092a5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 28f314fb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9c1db280..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 77709370..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/featurestore_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5aadf820..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ff8eab43..00000000 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 /dev/null 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 deleted file mode 100644 index 11b8b5a2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index dd9332e9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_cache_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f115dc31..00000000 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 /dev/null 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 deleted file mode 100644 index 6dee7b44..00000000 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 /dev/null 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 deleted file mode 100644 index ac00453b..00000000 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 /dev/null 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 deleted file mode 100644 index 86fc5dda..00000000 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 /dev/null 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 deleted file mode 100644 index ef640d20..00000000 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 /dev/null 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 deleted file mode 100644 index 115d8a5b..00000000 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 /dev/null 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 deleted file mode 100644 index a0968294..00000000 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 /dev/null 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 deleted file mode 100644 index 25fdf841..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cfea3224..00000000 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 /dev/null 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 deleted file mode 100644 index 4840d2a2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a4bf73b9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/gen_ai_tuning_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c123cab9..00000000 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 /dev/null 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 deleted file mode 100644 index df408313..00000000 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 /dev/null 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 deleted file mode 100644 index f7d978e5..00000000 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 /dev/null 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 deleted file mode 100644 index 96520a39..00000000 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 /dev/null 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 deleted file mode 100644 index ed32ab8e..00000000 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 /dev/null 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 deleted file mode 100644 index 52951087..00000000 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 /dev/null 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 deleted file mode 100644 index 34b6b4c1..00000000 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 /dev/null 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 deleted file mode 100644 index 8cd512bc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6c339c91..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f5fcf164..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e2160918..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index df689fdd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f4f364ad..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f47a3bb6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 977a373c..00000000 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 /dev/null 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 deleted file mode 100644 index 1b873cc7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_endpoint_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d89e034c..00000000 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 /dev/null 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 deleted file mode 100644 index fd52cfe3..00000000 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 /dev/null 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 deleted file mode 100644 index 46d145a2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6f8230b0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9f78acdf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9c7d3185..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9177e270..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0070f605..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6fbed0d1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4675f3e9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 62f3962d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index dd5b75df..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f2c9cef9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/index_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 54cf497e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5c054156..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 86ad1b15..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7e8aa5c2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 16550014..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 114184cb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 53c93455..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0281f3f6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 00d7cae8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bba2d36b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b9313835..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/job_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 94570f9e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fe406c33..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 29624c7c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0f7e414d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3dfddf7a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 365306ab..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c4af0aa3..00000000 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 /dev/null 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 deleted file mode 100644 index dd8d0b34..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/llm_utility_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 823a7114..00000000 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 /dev/null 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 deleted file mode 100644 index c0c8e0b3..00000000 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 /dev/null 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 deleted file mode 100644 index 7508875b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f9c95973..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a09fa9c5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 48bd1b10..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cfdf996c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 87a92350..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d1d51b95..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bf59ebc1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a66a7aaf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 307c04d6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/match_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5f6de185..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ed4abd86..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cd02cc36..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 811f212f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fbf3b1ae..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 63227470..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bcc8ec23..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1db698b1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b9d8a4f7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 19a761fa..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b25b1e32..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/metadata_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2fa1fa63..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c7f1503d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c6d74c4a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9be1275c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 637583b4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d930ca77..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4f34c193..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d9369d4c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index eb719b02..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0bb74d14..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d54d8d0b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/migration_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 266ea157..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 73243fd6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4394be4b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 73e6d47c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4c85b727..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f8a01768..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d74c51c3..00000000 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 /dev/null 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 deleted file mode 100644 index dca10f00..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_garden_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5d432b26..00000000 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 /dev/null 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 deleted file mode 100644 index ecbe4e80..00000000 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 /dev/null 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 deleted file mode 100644 index 855588c2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d43b7b75..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d6af216e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ce459eae..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ae53e641..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d98bea26..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f619a935..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 189df8e5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f4ab0cfd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cc4cb8fb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3c8583f8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/model_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 80d93182..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 41329871..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 78022704..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1fcfb68f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 19d0107b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0483de93..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9080fbe3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d69e25aa..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4f1fb5de..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9bdf1789..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d85ab42b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/notebook_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6e76d136..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a51c837b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d67a45de..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1c6e9e77..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f89f5fbf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e08661c6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4134dc8c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 619b73e6..00000000 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 /dev/null 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 deleted file mode 100644 index 62e64e82..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/persistent_resource_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c218ef76..00000000 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 /dev/null 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 deleted file mode 100644 index 02c2a4a0..00000000 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 /dev/null 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 deleted file mode 100644 index 61fa6a83..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1c1f5a81..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 074864b1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ff0a28e9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a2c85fa6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6e01d5ac..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cc8572e1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 30e9c902..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 18ffa61c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f35b68ab..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b78dde8e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/pipeline_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9b6c6d89..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ea93a870..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a02065f9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fe11f213..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 58d8b16e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c3ec848b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7f40d394..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1e6934f7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b2ae1dba..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 33a4fc7e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/prediction_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e8a50b8c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cf830599..00000000 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 /dev/null 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 deleted file mode 100644 index b9019c9d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_execution_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0619a3e4..00000000 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 /dev/null 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 deleted file mode 100644 index e6a92c54..00000000 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 /dev/null 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 deleted file mode 100644 index b841e5dc..00000000 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 /dev/null 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 deleted file mode 100644 index 10eb3149..00000000 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 /dev/null 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 deleted file mode 100644 index 20a3218d..00000000 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 /dev/null 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 deleted file mode 100644 index 05ee9cfa..00000000 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 /dev/null 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 deleted file mode 100644 index 1b87de89..00000000 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 /dev/null 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 deleted file mode 100644 index dbb9b2e5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 08c90c39..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 228fed88..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 73e1805d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 94a1b6b4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1e89a2d7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 273f3811..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a444f5cf..00000000 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 /dev/null 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 deleted file mode 100644 index 8058ff1c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/reasoning_engine_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ccefc918..00000000 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 /dev/null 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 deleted file mode 100644 index 80710a10..00000000 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 /dev/null 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 deleted file mode 100644 index 06d88cd9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 713d70c3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fb44a6be..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6d0744df..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5762c053..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 55f64b50..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f0e97bcd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 35fc2302..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4285f63c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e49e3314..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c29cd2c5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/schedule_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8e837765..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b4521ec7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 34d699ec..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e9c6bf7b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e061ab14..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7576b0cd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0cdf03e5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c0f786f5..00000000 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 /dev/null 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 deleted file mode 100644 index d208e910..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/specialist_pool_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b149a35e..00000000 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 /dev/null 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 deleted file mode 100644 index 0a8b8204..00000000 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 /dev/null 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 deleted file mode 100644 index 74541d4b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d04be920..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4b2f0ebf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bbda5041..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 03134076..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ff8e782a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 718a9110..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index af3559c4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 283936e1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4988602a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bb5dd384..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/tensorboard_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ce568198..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 900bf008..00000000 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 /dev/null 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 deleted file mode 100644 index d4f64d55..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ddc21104..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_data_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c20680d3..00000000 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 /dev/null 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 deleted file mode 100644 index a4b2b36e..00000000 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 /dev/null 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 deleted file mode 100644 index 4725eefd..00000000 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 /dev/null 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 deleted file mode 100644 index 7672273b..00000000 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 /dev/null 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 deleted file mode 100644 index 0a9c4f94..00000000 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 /dev/null 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 deleted file mode 100644 index aaa408ea..00000000 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 /dev/null 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 deleted file mode 100644 index e8f156d5..00000000 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 /dev/null 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 deleted file mode 100644 index aa9ee19f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 53e6d1d5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4dbd90ce..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ea73a9c6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3e91082c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 128961e2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7598ce20..00000000 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 /dev/null 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 deleted file mode 100644 index f6d34007..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vertex_rag_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8d39bca1..00000000 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 /dev/null 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 deleted file mode 100644 index f351f8d8..00000000 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 /dev/null 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 deleted file mode 100644 index e81b18b5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5a1bf757..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index da157fef..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5171dea4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cce74825..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fb2fbdbb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8f85aae7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2e33dd64..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3447e6ec..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 85a6aa74..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f587e40e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/services/vizier_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d4f0a832..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e50bd921..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/accelerator_type.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3d2549b8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/annotation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 538f538b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/annotation_spec.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 396025a1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/api_auth.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index aaab279f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/artifact.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0f0db3a5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/batch_prediction_job.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bbd7b3db..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/cached_content.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9d1fae42..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/completion_stats.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8aa24978..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/content.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 83036947..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/context.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8fddea6d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/custom_job.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f66f9509..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/data_item.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c210b140..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/data_labeling_job.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index dc85d8f4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/dataset.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 96934903..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/dataset_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 692a6e5b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/dataset_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 71e808d6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/deployed_index_ref.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ba7fb6f4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/deployed_model_ref.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 918c5113..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/deployment_resource_pool.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7a07d7bd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/deployment_resource_pool_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0febcc65..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/encryption_spec.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4d84edf8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/endpoint.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 59371799..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/endpoint_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f9c23001..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/entity_type.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5b58c334..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/env_var.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ace96584..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/evaluated_annotation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 467eb3aa..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/evaluation_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e07cee1b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/event.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index efc0d29b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/execution.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3209b63d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/explanation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ba3513f9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/explanation_metadata.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d167f10b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9ca0ea20..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_group.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 34fd8ba4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_monitoring_stats.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 093b7a75..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_online_store.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 57523666..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_online_store_admin_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c193a3ed..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_online_store_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bc5e672b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_registry_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c204b79d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_selector.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6ad217e8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_view.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 950e4e9a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/feature_view_sync.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d8b22118..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/featurestore.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d2d66898..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/featurestore_monitoring.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 483d0022..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/featurestore_online_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 92328e85..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/featurestore_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a9a604b5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/gen_ai_cache_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 10e3b53a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/genai_tuning_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b1aa9080..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/hyperparameter_tuning_job.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index dab14bb2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/index.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cb5fa21a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/index_endpoint.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 23dc6df1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/index_endpoint_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 711e613b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/index_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 50616b47..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/io.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 55013064..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/job_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8d95bf3d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/job_state.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7e45cc2f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/lineage_subgraph.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 84733978..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/llm_utility_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 45646ac7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/machine_resources.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f1e15202..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/manual_batch_tuning_parameters.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index abd13aa7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/match_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7b99b079..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/metadata_schema.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 74241f5c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/metadata_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d04e91e9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/metadata_store.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f24c45c7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/migratable_resource.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index dda583a2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/migration_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fb410816..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9aaecca5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_deployment_monitoring_job.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 339e5139..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_evaluation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5fec5b48..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_evaluation_slice.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 40ee5598..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_garden_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0e844b99..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_monitoring.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ed6f1199..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/model_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 16ed6695..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/nas_job.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7c075909..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/network_spec.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 45801b26..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_euc_config.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 128bfede..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_execution_job.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4a957555..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_idle_shutdown_config.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a246c796..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_runtime.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 25021aa9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_runtime_template_ref.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 846260f0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a30a303e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/notebook_software_config.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c4d1d978..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/openapi.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 69b6af21..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/operation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8f74aec1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/persistent_resource.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e0823cc7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/persistent_resource_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5c3d6caa..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/pipeline_failure_policy.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a9dc3033..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/pipeline_job.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 505184e3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/pipeline_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 029918fc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/pipeline_state.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 29ec9648..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/prediction_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f457293d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/publisher_model.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f31726cf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/reasoning_engine.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f19aebea..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/reasoning_engine_execution_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7dbc58c9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/reasoning_engine_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0488f45e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/reservation_affinity.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f1d3a39a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/saved_query.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7a070d32..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/schedule.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 840e9a88..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/schedule_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ba393c25..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/service_networking.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c54de453..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/specialist_pool.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 760e9c68..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/specialist_pool_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 55ae2a76..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/study.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8b4dddb2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index aea203e9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_data.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f83c77de..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_experiment.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ececbd81..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_run.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 77fa9834..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 482ebcd2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tensorboard_time_series.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2c544f22..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tool.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 672f7be0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/training_pipeline.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 180b1c68..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/tuning_job.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 48a2bbdf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/types.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d2df9f03..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/unmanaged_container_model.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 51ce0ffc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/user_action_reference.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bd8629cb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/value.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c2a74cce..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/vertex_rag_data.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 372ddf46..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/vertex_rag_data_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 030c46ac..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/vertex_rag_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b624a427..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1/types/__pycache__/vizier_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 84d88a0c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5b6a88f8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/__pycache__/gapic_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ce40d8e3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f8709d00..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index dd3dcf78..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b65ffb5a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 58578f20..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b89a4d52..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index aee2ac70..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 128151fe..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9f4045b3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b107c379..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4c9c9108..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d34d6a66..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/dataset_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 43eb4e9f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 211b301b..00000000 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 /dev/null 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 deleted file mode 100644 index fce9cc47..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2ed9454c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5c02cbef..00000000 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 /dev/null 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 deleted file mode 100644 index 7441f766..00000000 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 /dev/null 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 deleted file mode 100644 index b143eb12..00000000 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 /dev/null 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 deleted file mode 100644 index 4ec729a7..00000000 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 /dev/null 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 deleted file mode 100644 index 9846f1ab..00000000 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 /dev/null 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 deleted file mode 100644 index 72cbc347..00000000 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 /dev/null 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 deleted file mode 100644 index 6a12f0a5..00000000 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 /dev/null 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 deleted file mode 100644 index b9e43b4f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 67f1162d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4895c156..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2bc6a48d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5aa7bb2b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index efb6d63b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d457387d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f193b114..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b1fdf952..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 254260ed..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d493338f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/endpoint_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ad1bfcbf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ea7bda42..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a1bfb47f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 13aab9a3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e2b7e578..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bc056a36..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7ca3d7aa..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0bfeda12..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f55209fe..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 45b4f624..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/evaluation_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 077e1270..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ecad0a6a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0dcded08..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4f3bf50d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0cd87695..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ba22c129..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5d646f31..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ecafdd06..00000000 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 /dev/null 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 deleted file mode 100644 index 5d2ca8e0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/example_store_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 60e24586..00000000 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 /dev/null 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 deleted file mode 100644 index e11a1a20..00000000 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 /dev/null 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 deleted file mode 100644 index 120d7876..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d59eb418..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4fd0ba2b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3326d7b7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 689f948b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8b372013..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 557b1c38..00000000 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 /dev/null 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 deleted file mode 100644 index cfe923c7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_execution_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7b8bfe6b..00000000 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 /dev/null 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 deleted file mode 100644 index 29dd3825..00000000 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 /dev/null 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 deleted file mode 100644 index 8ef006e9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 067cb036..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 158325f0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9b83b3e6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cd3552c4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8a87528d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5ce22453..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3d0ee22e..00000000 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 /dev/null 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 deleted file mode 100644 index 086e53e0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/extension_registry_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 11b51cdd..00000000 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 /dev/null 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 deleted file mode 100644 index 5c349f6f..00000000 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 /dev/null 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 deleted file mode 100644 index 4b5df1c8..00000000 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 /dev/null 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 deleted file mode 100644 index 830d48ac..00000000 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 /dev/null 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 deleted file mode 100644 index fb8a6d93..00000000 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 /dev/null 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 deleted file mode 100644 index f0f57efe..00000000 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 /dev/null 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 deleted file mode 100644 index 6d0e8678..00000000 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 /dev/null 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 deleted file mode 100644 index e87c634a..00000000 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 /dev/null 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 deleted file mode 100644 index 301762b1..00000000 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 /dev/null 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 deleted file mode 100644 index 30b1a6d0..00000000 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 /dev/null 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 deleted file mode 100644 index 6fadc4b0..00000000 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 /dev/null 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 deleted file mode 100644 index e5c5e327..00000000 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 /dev/null 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 deleted file mode 100644 index ff4645ee..00000000 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 /dev/null 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 deleted file mode 100644 index 8aab9888..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 918227c1..00000000 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 /dev/null 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 deleted file mode 100644 index f5b1a700..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_online_store_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4fd73966..00000000 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 /dev/null 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 deleted file mode 100644 index b2c7706f..00000000 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 /dev/null 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 deleted file mode 100644 index d83b9a63..00000000 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 /dev/null 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 deleted file mode 100644 index 607c469c..00000000 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 /dev/null 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 deleted file mode 100644 index fb9efdde..00000000 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 /dev/null 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 deleted file mode 100644 index 479edc2c..00000000 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 /dev/null 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 deleted file mode 100644 index 2bb34f78..00000000 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 /dev/null 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 deleted file mode 100644 index 1df1b34a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3e1c1b07..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5eab2d5f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 253d0735..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index da2b0ef6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0141729b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index db131d93..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 88505dd8..00000000 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 /dev/null 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 deleted file mode 100644 index 27a91f85..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/feature_registry_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 46586e2f..00000000 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 /dev/null 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 deleted file mode 100644 index 93242655..00000000 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 /dev/null 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 deleted file mode 100644 index 7aa5d949..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0f6c7fe5..00000000 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 /dev/null 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 deleted file mode 100644 index 025990cd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f5c4e657..00000000 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 /dev/null 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 deleted file mode 100644 index cf34caac..00000000 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 /dev/null 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 deleted file mode 100644 index 5fe13db4..00000000 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 /dev/null 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 deleted file mode 100644 index d9c52d4f..00000000 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 /dev/null 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 deleted file mode 100644 index 95db65ac..00000000 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 /dev/null 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 deleted file mode 100644 index 29ec8769..00000000 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 /dev/null 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 deleted file mode 100644 index 4ac8c115..00000000 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 /dev/null 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 deleted file mode 100644 index 409f996e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c6284aa7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a0e7c92d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a1fcb202..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9ef30044..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cb1964b4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b78e5aeb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2a634408..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 69f74963..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 103301fe..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index dbba70da..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/featurestore_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c677069b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2e3b22af..00000000 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 /dev/null 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 deleted file mode 100644 index 3452deb5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 883d2c89..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_cache_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c173b1f8..00000000 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 /dev/null 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 deleted file mode 100644 index be8eb720..00000000 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 /dev/null 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 deleted file mode 100644 index 44a6bc4e..00000000 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 /dev/null 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 deleted file mode 100644 index cd3f0d47..00000000 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 /dev/null 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 deleted file mode 100644 index a1e0a220..00000000 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 /dev/null 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 deleted file mode 100644 index 774d8edb..00000000 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 /dev/null 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 deleted file mode 100644 index a8742c63..00000000 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 /dev/null 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 deleted file mode 100644 index e712eb58..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4890b6c5..00000000 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 /dev/null 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 deleted file mode 100644 index b9a2d465..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ff0e8505..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/gen_ai_tuning_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1e06caa4..00000000 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 /dev/null 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 deleted file mode 100644 index c009eeb3..00000000 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 /dev/null 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 deleted file mode 100644 index 4cdc42b2..00000000 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 /dev/null 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 deleted file mode 100644 index dc11be16..00000000 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 /dev/null 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 deleted file mode 100644 index bcb4f3a1..00000000 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 /dev/null 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 deleted file mode 100644 index a437ee35..00000000 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 /dev/null 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 deleted file mode 100644 index afd777c6..00000000 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 /dev/null 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 deleted file mode 100644 index d54e3a4d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bc5e96e2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bbc882ad..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a8c0a140..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f810fd02..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 29891800..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e144d571..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7acb85b9..00000000 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 /dev/null 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 deleted file mode 100644 index 731ef50e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b1666cf7..00000000 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 /dev/null 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 deleted file mode 100644 index a002dce7..00000000 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 /dev/null 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 deleted file mode 100644 index ff0095cc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d664e39b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0533259b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 33b4c5d3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ac5c84e0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 92d5f010..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0a6c3ef5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index eb46fcb2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 80becfd0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0d1fe795..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a3b533fb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/index_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a8b6912d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a2fd6333..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e93559ef..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b326a6a9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5ee00352..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e1938a59..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 05beea6b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d3d908bf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2095b545..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0d4dd69c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 11efe258..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/job_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 82208aaa..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9bec0b19..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f39548f0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4c0bf769..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e4d5c3dc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index feb0d330..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 345ff462..00000000 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 /dev/null 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 deleted file mode 100644 index eeb5cdc6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/llm_utility_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index dd760d43..00000000 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 /dev/null 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 deleted file mode 100644 index a3d49371..00000000 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 /dev/null 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 deleted file mode 100644 index 1d6a3294..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 91c7f8f8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5ebe7123..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9aae24d0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0e4a3a78..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5de50fdb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 092497c7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ccdfe6cc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8ad00dfd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 75ad5ffa..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/match_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bf66c4d9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 170804a6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index af20ffb6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2c5b24dd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d1ad3a78..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6561de8f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4292b569..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cb89a606..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6a513e1c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9c6307e6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f47180b2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/metadata_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 805bb160..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9a552366..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 49d0a494..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a5dc6cdc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ffa263ea..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0fe4258b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8724c1e5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cbc12171..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 79dd6a5b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bd0e47b4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e746109f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/migration_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 623e9b38..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 82c917ed..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2e0cf4c8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b6a7f72d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2ca907c3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 32bdffdd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 46023848..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1efc5c8e..00000000 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 /dev/null 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 deleted file mode 100644 index 40dd4d70..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_garden_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cd399cda..00000000 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 /dev/null 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 deleted file mode 100644 index 368b1778..00000000 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 /dev/null 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 deleted file mode 100644 index 9301c35a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 168c8172..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e1f3c9fb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ac31c2cb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 423bf60a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e033e0ac..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c7e68f73..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 57d3cb81..00000000 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 /dev/null 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 deleted file mode 100644 index a786b2e6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_monitoring_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 03abb58b..00000000 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 /dev/null 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 deleted file mode 100644 index d278c66b..00000000 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 /dev/null 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 deleted file mode 100644 index 149b3505..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b6b54792..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d18fb8c6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 48b0621c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 740c98dc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1ebf5361..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 153bf5ac..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index aa7aefbd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e2b19705..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3c5512b0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2f56165d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/model_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a5feac06..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3f066ea3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9551903f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9fbbcf4a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bb469e85..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 17aa4b74..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f89cc0c3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f2fdaf34..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3b4f76b3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d7490508..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4b48fe2b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/notebook_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5dde45bf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e72e4bd0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c49ad1df..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9c04c2d6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index de9621bf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9fef6c05..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 85a05b4c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 67a75548..00000000 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 /dev/null 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 deleted file mode 100644 index 99bd04e1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/persistent_resource_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ed919f43..00000000 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 /dev/null 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 deleted file mode 100644 index a3345e73..00000000 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 /dev/null 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 deleted file mode 100644 index 8b8a492c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ef63dc30..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1d42dba2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1ca4609d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 980e7872..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 110f5165..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6f4e5b8d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3c209101..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9c094f08..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f885392f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7eb6057f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/pipeline_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a0ca891f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 85ceac25..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5ba16f45..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fd311133..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ab80edb4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 350c91dc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b5af6a07..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f221dd5e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3e175120..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 22331fe4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/prediction_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6c6eedc8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7b19ae46..00000000 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 /dev/null 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 deleted file mode 100644 index 5479bfc0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_execution_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c432ae04..00000000 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 /dev/null 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 deleted file mode 100644 index 46ec58c2..00000000 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 /dev/null 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 deleted file mode 100644 index 4eae6b01..00000000 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 /dev/null 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 deleted file mode 100644 index 4779e21a..00000000 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 /dev/null 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 deleted file mode 100644 index 667a26da..00000000 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 /dev/null 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 deleted file mode 100644 index 729dde56..00000000 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 /dev/null 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 deleted file mode 100644 index 8a200041..00000000 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 /dev/null 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 deleted file mode 100644 index 57756480..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a72bf72e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6b8ba73b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 56e92e3a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9fa8d470..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1c8871d8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0f922828..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5f5e62db..00000000 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 /dev/null 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 deleted file mode 100644 index 4f152c65..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/reasoning_engine_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 74a66cfc..00000000 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 /dev/null 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 deleted file mode 100644 index d74ba8e9..00000000 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 /dev/null 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 deleted file mode 100644 index c7ccd761..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6da219da..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 43e52a0d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 98229d99..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fd03ee04..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b4061692..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5da8f227..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4ade8851..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 12492498..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f96fa8cf..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fcf3f211..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/schedule_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 24762fa5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bee604ec..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4b2529b1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b94f2767..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 38eb5bf9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1ec55d93..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2adab31c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2b8d507c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 77898edc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6b4611eb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1e7b2bc9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/session_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9f35e716..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d5681b75..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8e3ab63f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7f00c38d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 342b2f9a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d192d016..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c9e31e99..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 544bae22..00000000 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 /dev/null 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 deleted file mode 100644 index 97b489df..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e842d2cb..00000000 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 /dev/null 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 deleted file mode 100644 index 60165423..00000000 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 /dev/null 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 deleted file mode 100644 index 1e52bbe7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1520c4a6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 066c4b95..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5088fea5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 453e179d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 32c42766..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9a564602..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index eca184b0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 49997d7d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 05705691..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7ef57572..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/tensorboard_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6083e0b1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8125a370..00000000 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 /dev/null 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 deleted file mode 100644 index 517eb9b2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a8521f89..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_data_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5568c396..00000000 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 /dev/null 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 deleted file mode 100644 index 709b917c..00000000 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 /dev/null 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 deleted file mode 100644 index 8399a50f..00000000 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 /dev/null 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 deleted file mode 100644 index 451d9bc3..00000000 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 /dev/null 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 deleted file mode 100644 index 98494b48..00000000 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 /dev/null 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 deleted file mode 100644 index 485cfa67..00000000 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 /dev/null 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 deleted file mode 100644 index 41fc3011..00000000 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 /dev/null 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 deleted file mode 100644 index f2de4103..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 73e85a32..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 69956645..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 54fb9ad7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 81d32e8a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b727549c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cec5a3cb..00000000 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 /dev/null 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 deleted file mode 100644 index b8307717..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vertex_rag_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e7472ef5..00000000 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 /dev/null 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 deleted file mode 100644 index 15238520..00000000 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 /dev/null 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 deleted file mode 100644 index ab81fed0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ce20bd88..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3dc6a16d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 120da4f8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 774e4f71..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 684e517d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fadfffe4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d5cd339f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2e4c229a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8ed0bc61..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/rest_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 02d19642..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/services/vizier_service/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index aa62cfee..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c0202c1a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/accelerator_type.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6f1e5dda..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/annotation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c3873e0d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/annotation_spec.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 60a35581..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/api_auth.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fb900e39..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/artifact.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1fe7230f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/batch_prediction_job.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 676048d4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/cached_content.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index afd0c68e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/completion_stats.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 27168a28..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/content.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7353b1fd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/context.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 43a1f003..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/custom_job.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bb451cae..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/data_item.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 288f3bf8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/data_labeling_job.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2aa2495e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/dataset.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f25dd332..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/dataset_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 45642b34..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/dataset_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1f112ae1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/deployed_index_ref.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9f7238e6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/deployed_model_ref.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 351ea3b9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/deployment_resource_pool.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 831d7fc8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/deployment_resource_pool_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 192a9a0e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/encryption_spec.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e1b2e342..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/endpoint.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bfc47755..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/endpoint_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b166849f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/entity_type.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f01fa8a8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/env_var.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ae805661..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/evaluated_annotation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0993e51e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/evaluation_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3b1af8c5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/event.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cfba7625..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/example.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 95a34579..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/example_store.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b18ffc71..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/example_store_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c70af007..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/execution.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3c0a6189..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/explanation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 934800dd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/explanation_metadata.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d3bbbe35..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/extension.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9eccebe1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/extension_execution_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 56e16e50..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/extension_registry_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e0b568f8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 74d9d96c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_group.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 48ef1bf7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_monitor.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2ca67a24..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_monitor_job.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 11e65fb3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_monitoring_stats.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index da67fefd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_online_store.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 707cfe9c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_online_store_admin_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ca6fed62..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_online_store_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f598b806..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_registry_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index dea1e770..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_selector.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b0b8b6e9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_view.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7039fba7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/feature_view_sync.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d8314b92..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/featurestore.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 99db4115..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/featurestore_monitoring.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1160d006..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/featurestore_online_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 67076548..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/featurestore_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9e65af98..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/gen_ai_cache_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b6a07e6b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/genai_tuning_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1ff01446..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/hyperparameter_tuning_job.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 48102b8c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/index.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 967a6851..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/index_endpoint.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cf264ab2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/index_endpoint_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8e032088..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/index_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d8aba328..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/io.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8f4d1445..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/job_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e5c0b1d3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/job_state.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d38869b9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/lineage_subgraph.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1eeae0a8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/llm_utility_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9e2b3e57..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/machine_resources.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1fe37d98..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/manual_batch_tuning_parameters.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1dca69f5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/match_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c3a2f73e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/metadata_schema.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 741f0ef1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/metadata_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 78be1d6a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/metadata_store.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 571b93cb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/migratable_resource.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 60997cca..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/migration_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e17ef1d6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fef59cf1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_deployment_monitoring_job.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cc100280..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_evaluation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b1550926..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_evaluation_slice.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c47c6fb5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_garden_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4fcc01da..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitor.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6033f116..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 72d0833d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_alert.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b1481a8a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_job.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4d84d06a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b7b99df7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_spec.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 779b589b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_monitoring_stats.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 62738752..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/model_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6e047ef0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/nas_job.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 36e52a83..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/network_spec.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7909b2c3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_euc_config.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fbedc70a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_execution_job.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fc49aada..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_idle_shutdown_config.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4b1c04bb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_runtime.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d3c33474..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_runtime_template_ref.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1bd7f54d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d421d9d1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/notebook_software_config.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 557f3b1a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/openapi.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2c0072c7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/operation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f2d77017..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/persistent_resource.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c517e0be..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/persistent_resource_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 960da441..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/pipeline_failure_policy.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5fd994e6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/pipeline_job.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2d8e8d48..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/pipeline_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c368ae48..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/pipeline_state.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 77fe4c71..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/prediction_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ed6613a3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/publisher_model.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 658bbce9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/reasoning_engine.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0cf231dd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/reasoning_engine_execution_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 369bb22a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/reasoning_engine_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7fc60ff6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/reservation_affinity.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c638fbcc..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/saved_query.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 699dd91a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/schedule.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index de209517..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/schedule_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 56d9fa57..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/service_networking.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index aee2ae26..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/session.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 346878c8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/session_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c572c707..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/specialist_pool.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6b95c830..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/specialist_pool_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 705c2718..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/study.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3c9c220d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d7487c02..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_data.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ff74b5f9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_experiment.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9a8e5995..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_run.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 383ca754..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2e100096..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tensorboard_time_series.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3818c627..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tool.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a6d9ca6e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/training_pipeline.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ef1023e4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/tuning_job.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b592d16c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/types.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 52fe4043..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/ui_pipeline_spec.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7d6adb26..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/unmanaged_container_model.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c32d4080..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/user_action_reference.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 87af9883..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/value.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3076f826..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/vertex_rag_data.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d183b392..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/vertex_rag_data_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f1a9fc8f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/vertex_rag_service.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3cd0aa53..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/aiplatform_v1beta1/types/__pycache__/vizier_service.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 deleted file mode 100644 index 4e336d7b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/client/__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 deleted file mode 100644 index 557cde18..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/exceptions/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 27b5584c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/location/__pycache__/locations_pb2.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 deleted file mode 100644 index 454a24b1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9bf40e52..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager/__pycache__/gapic_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 15bd84b1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 17a7f830..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/__pycache__/gapic_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3c6f42f9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 451b71a1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 484bf2c8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a78284ef..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 64205459..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7d8909a9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index da8278f9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6b9eb7b3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5c76975c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7339ce24..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 84739678..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/folders/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 74d2abb3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 44304cd2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index db53969b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 795706bb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8da6c2f0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a6721287..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3603be7a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 36da218e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 294367e6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3ee2eff7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/organizations/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 438be595..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5d56a26d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6aa11fe3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 36036c99..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 74d1f51e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 784386ed..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 61c254ac..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 697e4891..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index dddfa69d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 11578c24..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/projects/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f7488403..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5f2555c3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fe0b6cc1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 783f913e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1e5df817..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3a9fb0ac..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 035d7b14..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 264495d7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5ae880f5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 287e97ab..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_bindings/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 31e79179..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c84918b9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a16237bb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 35200eae..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4874ba27..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ac3c40fd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f0120a57..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6c2777c1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5f6520d2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9765b4e9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_holds/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3acbf9fe..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b526fb39..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d0952e2c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b079668f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7b1f6415..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e70d2e24..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e21dc33e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 47f6b369..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7a9247b7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 72a06f04..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_keys/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 95ef8db1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4f1fb550..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/__pycache__/async_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1b7ef5c7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7a7c599b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ca099635..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a6ca04e9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index daadc696..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/grpc.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a269e169..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/grpc_asyncio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 21247b2b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/rest.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 05387e30..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/services/tag_values/transports/__pycache__/rest_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5f154b8d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c01dc52e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/folders.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0fb84c53..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/organizations.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fcefe3af..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/projects.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 944db649..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/tag_bindings.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 309f0249..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/tag_holds.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 64f77b49..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/tag_keys.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5c680b1c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/resourcemanager_v3/types/__pycache__/tag_values.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 deleted file mode 100644 index 5822b661..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 975ec6de..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/_helpers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2ad9ea76..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/_http.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 86299cdb..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/_opentelemetry_tracing.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index abced557..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/_signing.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d04da52c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/acl.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index dc70f166..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/batch.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b7354392..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/blob.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 275ce006..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/bucket.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 509e2f46..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 333e2dc3..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/constants.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ffdf9ac2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/fileio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fe5dd438..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/hmac_key.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 deleted file mode 100644 index bc8b1883..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/notification.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f88a6ce9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/retry.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 deleted file mode 100644 index 07719a8e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/cloud/storage/__pycache__/version.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 deleted file mode 100644 index 7f9f16b1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9ec4329a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_api_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6d23a766..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_api_module.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 deleted file mode 100644 index fb1fe903..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_common.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 37db227e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_extra_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c3718544..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_live_converters.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7a9870b4..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_replay_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 deleted file mode 100644 index 0cfefac1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/_transformers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 475d0393..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/batches.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7cdbb07b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/caches.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 49f881a2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/chats.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9217ef5d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a16be951..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/errors.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 703df28b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/files.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4c5ce33e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/live.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4119efc0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/models.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3063d757..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/operations.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2a4e7824..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/pagers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d2d5bd9a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/tunings.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e7667ed2..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/types.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a5098be0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/genai/__pycache__/version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0eb4d910..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1ea8a102..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/iam_policy_pb2.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 deleted file mode 100644 index 254e0863..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/options_pb2.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 deleted file mode 100644 index c43661ab..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/iam/v1/__pycache__/policy_pb2.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 deleted file mode 100644 index 8f8f8599..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_grpc_pb2.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 672f83d8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_pb2.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 36bbab9b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_pb2_grpc.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 deleted file mode 100644 index b62d04e9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/longrunning/__pycache__/operations_proto_pb2.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9c251a13..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 82790811..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/_client.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 deleted file mode 100644 index bb62d451..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/challenges.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 482c6fc1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/credentials.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 deleted file mode 100644 index 9636f84d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/reauth.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c2a1b5cd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/service_account.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 deleted file mode 100644 index 3145d83a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/webauthn_handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7d040226..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/webauthn_handler_factory.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a974f8c5..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/oauth2/__pycache__/webauthn_types.cpython-310.pyc and /dev/null differ 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 deleted file mode 100644 index 75bbdc2a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/__init__.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 deleted file mode 100644 index 852f0331..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/any_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 deleted file mode 100644 index 045c0c5b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/descriptor.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 387ab732..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/descriptor_database.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 36928da1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/descriptor_pb2.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7bc954c8..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/descriptor_pool.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 deleted file mode 100644 index 01a7241b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/duration_pb2.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2870b5ec..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/empty_pb2.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6e2cdafe..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/field_mask_pb2.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cff263b0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/json_format.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2471c525..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/message.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0fad649b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/message_factory.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 deleted file mode 100644 index 1e96641e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/reflection.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4de27be1..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/runtime_version.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 deleted file mode 100644 index 4d6c6688..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/struct_pb2.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3da18e82..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/symbol_database.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index faa70eff..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/text_encoding.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 595203ac..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/text_format.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 deleted file mode 100644 index 0e2121f9..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/timestamp_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 deleted file mode 100644 index 97ad438c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/unknown_fields.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5b26fc72..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/__pycache__/wrappers_pb2.cpython-310.pyc and /dev/null differ 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 deleted file mode 100644 index c1d4cde7..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9194277f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/api_implementation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f62d59d0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/builder.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b64f0316..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/containers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 76dde97c..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/decoder.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 40669013..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/encoder.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c6325c0b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/enum_type_wrapper.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 26b065ae..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/extension_dict.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d8578226..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/field_mask.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1aca3d7b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/message_listener.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c92cdb49..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/python_edition_defaults.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ecfac199..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/python_message.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 deleted file mode 100644 index ead71bd0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/type_checkers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8ddce34d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/well_known_types.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6fa10cbe..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/internal/__pycache__/wire_format.cpython-310.pyc and /dev/null differ 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 deleted file mode 100644 index 50ae5cc0..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/pyext/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c165b6c6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/protobuf/pyext/__pycache__/cpp_message.cpython-310.pyc and /dev/null differ 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 deleted file mode 100644 index 3c8cda5a..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 05d74d45..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/_download.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 42ec6820..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/_helpers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a448a74d..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/_upload.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 42fc2e02..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/resumable_media/__pycache__/common.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c8b9fb8f..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/resumable_media/requests/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2dcaba03..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/resumable_media/requests/__pycache__/_request_helpers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c832c7c6..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/resumable_media/requests/__pycache__/download.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 85072fae..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/resumable_media/requests/__pycache__/upload.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4b7c44fd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/rpc/__pycache__/code_pb2.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fff2d124..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/rpc/__pycache__/error_details_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 deleted file mode 100644 index d83ec59b..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/rpc/__pycache__/status_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 deleted file mode 100644 index 95e520fd..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/type/__pycache__/date_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 deleted file mode 100644 index f88f0a7e..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/type/__pycache__/expr_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 deleted file mode 100644 index 02908e87..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/type/__pycache__/interval_pb2.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a45cc489..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/type/__pycache__/latlng_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 deleted file mode 100644 index 54cba6df..00000000 Binary files a/.venv/lib/python3.10/site-packages/google/type/__pycache__/money_pb2.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 deleted file mode 100644 index f719ac46..00000000 Binary files a/.venv/lib/python3.10/site-packages/greenlet/__pycache__/__init__.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 deleted file mode 100644 index eb94e0f0..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/__init__.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 deleted file mode 100644 index 2dc63ea0..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_channel.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a9d4afc7..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_common.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e9abeb33..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_compression.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0cc410ea..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_grpcio_metadata.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 deleted file mode 100644 index cb7ac5fa..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_observability.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 deleted file mode 100644 index 89a551bc..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_runtime_protos.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 deleted file mode 100644 index 62e44cee..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_simple_stubs.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 895f3eae..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/__pycache__/_typing.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 deleted file mode 100644 index 33d5bf19..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/_cython/__pycache__/__init__.cpython-310.pyc and /dev/null differ 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 deleted file mode 100644 index b4b43aa9..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c48fccc3..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_base_call.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5125ef39..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_base_channel.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1797a4b2..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_base_server.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d5310a92..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_call.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c88a61f0..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_channel.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a1162061..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_interceptor.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 956faeb0..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_metadata.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ecb47cdf..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_server.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index dfc84696..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_typing.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index df3de290..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/aio/__pycache__/_utils.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 deleted file mode 100644 index d45506c5..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/experimental/__pycache__/__init__.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 deleted file mode 100644 index 7d1fe6d3..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc/experimental/aio/__pycache__/__init__.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 deleted file mode 100644 index a7416782..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc_status/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a0bbcbab..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc_status/__pycache__/_async.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 83ce3061..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc_status/__pycache__/_common.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1e3425ef..00000000 Binary files a/.venv/lib/python3.10/site-packages/grpc_status/__pycache__/rpc_status.cpython-310.pyc and /dev/null differ 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 deleted file mode 100644 index f66a16b8..00000000 Binary files a/.venv/lib/python3.10/site-packages/h11/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6e07e517..00000000 Binary files a/.venv/lib/python3.10/site-packages/h11/__pycache__/_abnf.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index aa1c174b..00000000 Binary files a/.venv/lib/python3.10/site-packages/h11/__pycache__/_connection.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 45826fec..00000000 Binary files a/.venv/lib/python3.10/site-packages/h11/__pycache__/_events.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7304b564..00000000 Binary files a/.venv/lib/python3.10/site-packages/h11/__pycache__/_headers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 56ca63c9..00000000 Binary files a/.venv/lib/python3.10/site-packages/h11/__pycache__/_readers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 983cf41f..00000000 Binary files a/.venv/lib/python3.10/site-packages/h11/__pycache__/_receivebuffer.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f56acc1e..00000000 Binary files a/.venv/lib/python3.10/site-packages/h11/__pycache__/_state.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 363ad728..00000000 Binary files a/.venv/lib/python3.10/site-packages/h11/__pycache__/_util.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 556e3b99..00000000 Binary files a/.venv/lib/python3.10/site-packages/h11/__pycache__/_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 43f2bf31..00000000 Binary files a/.venv/lib/python3.10/site-packages/h11/__pycache__/_writers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1e2cdca2..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3fe9f6df..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_api.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5d315af0..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_exceptions.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d6e0821a..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_models.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 712db0ac..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_ssl.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 79ec580e..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_synchronization.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a3047e67..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_trace.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2dfbe5cc..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/__pycache__/_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fa9a4747..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index be69c7e4..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/connection.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1cb8bcdd..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/connection_pool.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8be8a479..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/http11.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5fad642a..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/http2.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7948d562..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/http_proxy.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7fc7440b..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/interfaces.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a423e878..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_async/__pycache__/socks_proxy.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ab1d9b0e..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d57a0c5b..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/anyio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 08869918..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/auto.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5f45eb9d..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c7e4dfdc..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/mock.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a0b15236..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/sync.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 07832232..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_backends/__pycache__/trio.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e341bd3f..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index de2a5805..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/connection.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3421166b..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/connection_pool.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 74fe946d..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/http11.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0a28392a..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/http2.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b7da4031..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/http_proxy.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 83a5dbf4..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/interfaces.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b2d8ff3c..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpcore/_sync/__pycache__/socks_proxy.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 deleted file mode 100644 index 23f7e66f..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e86c05e5..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/__version__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 99e4417e..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_api.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 998bef49..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_auth.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b0e565e5..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_client.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 334a2949..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_config.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6daef892..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_content.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e1336779..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_decoders.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4a21f381..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_exceptions.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6871bc49..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_main.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9ea842ae..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_models.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9cb74e53..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_multipart.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3353b404..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_status_codes.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9c7e8792..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_types.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0283041a..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_urlparse.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8ed07e22..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_urls.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2d7b0170..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/__pycache__/_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 47023ed8..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c36f1a5b..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/asgi.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4ffd3adc..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0723a4c2..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/default.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d7839113..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/mock.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 61d14ff9..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx/_transports/__pycache__/wsgi.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 11813b29..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 46f0767d..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/_api.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ae2fc9de..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/_decoders.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 603a8b00..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/_exceptions.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d64a7c89..00000000 Binary files a/.venv/lib/python3.10/site-packages/httpx_sse/__pycache__/_models.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 deleted file mode 100644 index b89bf627..00000000 Binary files a/.venv/lib/python3.10/site-packages/idna/__pycache__/__init__.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 deleted file mode 100644 index 0c1aae85..00000000 Binary files a/.venv/lib/python3.10/site-packages/idna/__pycache__/core.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4c80ebdb..00000000 Binary files a/.venv/lib/python3.10/site-packages/idna/__pycache__/idnadata.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9337a34f..00000000 Binary files a/.venv/lib/python3.10/site-packages/idna/__pycache__/intranges.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5a6cc482..00000000 Binary files a/.venv/lib/python3.10/site-packages/idna/__pycache__/package_data.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 deleted file mode 100644 index ab1b4ac7..00000000 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5b2afa04..00000000 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_adapters.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a2b7686e..00000000 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_collections.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d2bbeb73..00000000 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_compat.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cbb386e5..00000000 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_functools.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8695a31e..00000000 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_itertools.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1e05ae9a..00000000 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_meta.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 342a330c..00000000 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/__pycache__/_text.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 deleted file mode 100644 index 3b6acc6f..00000000 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/compat/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bac6c643..00000000 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/compat/__pycache__/py311.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 96ec1735..00000000 Binary files a/.venv/lib/python3.10/site-packages/importlib_metadata/compat/__pycache__/py39.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d811c53d..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4347fcbf..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/_identifier.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6b341b62..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/async_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 039c3070..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/bccache.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9bb66562..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/compiler.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 deleted file mode 100644 index fdcc8d38..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/defaults.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9c5d34bd..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/environment.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 64f6d3ca..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/exceptions.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 deleted file mode 100644 index dbf045f8..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/filters.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e453408e..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/idtracking.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 99fb0719..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/lexer.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ab8355a6..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/loaders.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 deleted file mode 100644 index 1c81dd9b..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/nodes.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5ecc4091..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/optimizer.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 61d5df32..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/parser.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 16b16f86..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/runtime.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5746b029..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/sandbox.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a55c6541..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/tests.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6528aa5c..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9912a659..00000000 Binary files a/.venv/lib/python3.10/site-packages/jinja2/__pycache__/visitor.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 97ad70d8..00000000 Binary files a/.venv/lib/python3.10/site-packages/jiter/__pycache__/__init__.cpython-310.pyc and /dev/null differ 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 deleted file mode 100644 index 082983e5..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7903b0b5..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/_logging.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 deleted file mode 100644 index 47a7fa57..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/_service_logger.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6279a03c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/_version.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7baf972f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/budget_manager.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 848ccb5a..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/constants.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c21e05fa..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/cost_calculator.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4ab51568..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/exceptions.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5658891a..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/main.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9df9fb7c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/router.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0da11cb0..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/scheduler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 84d7b560..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/timeout.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 631974f8..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/__pycache__/utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 62017b0e..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/anthropic_interface/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d2306914..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/anthropic_interface/messages/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6fcc6b07..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/assistants/__pycache__/main.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index deb3df92..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/assistants/__pycache__/utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index dcd7ab1d..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/batch_completion/__pycache__/main.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d1f8623d..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/batches/__pycache__/batch_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8dd2ab9f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/batches/__pycache__/main.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 95356e8d..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 65db5116..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/_internal_lru_cache.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 837ff73b..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/base_cache.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 897fe3ff..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/caching.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7b79c081..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/caching_handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 496b12b7..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/disk_cache.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ad9edd06..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/dual_cache.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d4487bb6..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/in_memory_cache.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9ecdf4c9..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/llm_caching_handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e5d76633..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/qdrant_semantic_cache.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 366dfbae..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/redis_cache.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b9e808ea..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/redis_cluster_cache.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 40957fcb..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/redis_semantic_cache.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b802927a..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/caching/__pycache__/s3_cache.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 deleted file mode 100644 index d1af8a61..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/files/__pycache__/main.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fe9635a9..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/fine_tuning/__pycache__/main.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 936b08a2..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/SlackAlerting/__pycache__/batching_handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3c6ccd61..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/SlackAlerting/__pycache__/slack_alerting.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 19aab14b..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/SlackAlerting/__pycache__/utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b83fa785..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c8576b8a..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/additional_logging_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9b711699..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/anthropic_cache_control_hook.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index afdf2fea..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/argilla.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 77013678..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/athina.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 04d0dd6f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/braintrust_logging.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ca605fb5..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/custom_batch_logger.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index da73e41c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/custom_guardrail.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e9a8a296..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/custom_logger.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 748825c4..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/custom_prompt_management.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ea412290..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/dynamodb.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 deleted file mode 100644 index 263f7252..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/galileo.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index dd28db60..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/greenscale.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 123922b7..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/helicone.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 99bc77dc..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/humanloop.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8c9a18db..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/lago.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e95d8572..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/langsmith.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 deleted file mode 100644 index 1b6ffd48..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/literal_ai.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5c92a37f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/logfire_logger.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1d99c8af..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/lunary.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index eab3ff3c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/mlflow.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0f5d04bf..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/openmeter.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0bfdf6f2..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/opentelemetry.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6e64b06b..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/prometheus.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0ce73d3f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/prometheus_services.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0c1e4b88..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/prompt_layer.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bb7e2be2..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/prompt_management_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3257bb90..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/s3.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3b06d316..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/supabase.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 deleted file mode 100644 index 6f85ed2b..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/traceloop.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a2d642b8..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/__pycache__/weights_biases.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 deleted file mode 100644 index 59891dce..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/agentops/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bd078d23..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/agentops/__pycache__/agentops.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8677f1fd..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/arize/__pycache__/_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ae73a7cb..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/arize/__pycache__/arize.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 46836df2..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/arize/__pycache__/arize_phoenix.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 18853d98..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/azure_storage/__pycache__/azure_storage.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 26996cea..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/datadog/__pycache__/datadog.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 62a36d77..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/datadog/__pycache__/datadog_llm_obs.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 98552038..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/email_templates/__pycache__/templates.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 09b35b94..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/gcs_bucket/__pycache__/gcs_bucket.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 00692394..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/gcs_bucket/__pycache__/gcs_bucket_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d7c1d746..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/gcs_pubsub/__pycache__/pub_sub.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0d4e46db..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/langfuse/__pycache__/langfuse.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cd5d5bc0..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/langfuse/__pycache__/langfuse_handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4eeb3486..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/langfuse/__pycache__/langfuse_prompt_management.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ad2ad233..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/opik/__pycache__/opik.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2d2cea31..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/opik/__pycache__/utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e80f8da9..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/integrations/pagerduty/__pycache__/pagerduty.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 deleted file mode 100644 index 6a5edc06..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/asyncify.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b65fc8ff..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/core_helpers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b7accb53..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/credential_accessor.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3bb8ec10..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/dd_tracing.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4fc6fa0a..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/default_encoding.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 deleted file mode 100644 index 6890f919..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/duration_parser.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1a5e3e1d..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/exception_mapping_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9dae0944..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/fallback_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9d306dc6..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/get_litellm_params.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5b393b18..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/get_llm_provider_logic.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 92b7e1f4..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/get_model_cost_map.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d0919c7d..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/get_supported_openai_params.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3717f6cf..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/health_check_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ea07f676..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/initialize_dynamic_callback_params.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ed5bdcb5..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/json_validation_rule.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index feeff8e7..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/litellm_logging.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0de1a649..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/llm_request_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 932f530e..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/logging_callback_manager.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 90887ce8..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/logging_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4d9c04f6..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/mock_functions.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 325ac009..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/model_param_helper.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ccc29605..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/realtime_streaming.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a19a832f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/redact_messages.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 deleted file mode 100644 index e47303d7..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/rules.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 21cd729c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/safe_json_dumps.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 deleted file mode 100644 index 035f8f8e..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/streaming_chunk_builder_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a637bc06..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/streaming_handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a63aa74f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/thread_pool_executor.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2cf397c0..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/__pycache__/token_counter.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f3fb1f0c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/audio_utils/__pycache__/utils.cpython-310.pyc and /dev/null differ 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 deleted file mode 100644 index 124480f6..00000000 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 /dev/null 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 deleted file mode 100644 index 49e8d841..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_cost_calc/__pycache__/utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1e4fafac..00000000 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 /dev/null 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 deleted file mode 100644 index a38a5074..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/get_api_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 20e2ae9b..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/get_formatted_prompt.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8d123be1..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/get_headers.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 61bdd34e..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/llm_response_utils/__pycache__/response_metadata.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c0dc739c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/prompt_templates/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ee8f8ec1..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/prompt_templates/__pycache__/factory.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 795bc42d..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/prompt_templates/__pycache__/image_handling.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5e4c25ec..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/specialty_caches/__pycache__/dynamic_logging_cache.cpython-310.pyc and /dev/null differ 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 deleted file mode 100644 index 0525d856..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/litellm_core_utils/tokenizers/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f76bb703..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7e765b41..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 705efc7b..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/baseten.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cccfa0ac..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/custom_llm.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index be544e88..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/maritalk.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cc37b3bd..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/ollama_chat.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c86e39ff..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/__pycache__/volcengine.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6e658c4d..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/ai21/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c144f588..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/aiohttp_openai/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f65e4026..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e021a386..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/__pycache__/cost_calculation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e10da4db..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/chat/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a354ce5f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/chat/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a3332793..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/chat/__pycache__/transformation.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 deleted file mode 100644 index f18f7dae..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/completion/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e5ff1946..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/experimental_pass_through/messages/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 64344c00..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/anthropic/experimental_pass_through/messages/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 433648eb..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/assistants.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2b64f042..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/audio_transcriptions.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4696cef1..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/azure.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0ecd286a..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 511c7325..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/__pycache__/cost_calculation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b4162b42..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/batches/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d7f83240..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/chat/__pycache__/gpt_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6f729462..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/chat/__pycache__/o_series_handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0b35d042..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/chat/__pycache__/o_series_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a8cdba31..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/completion/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cc0770df..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/completion/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 860f62d7..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/files/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 09d4cfea..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/fine_tuning/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0cb79821..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/realtime/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 98023dc7..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure/responses/__pycache__/transformation.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 deleted file mode 100644 index 2d516187..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ae4550f1..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/embed/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 90a83ea3..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/embed/__pycache__/cohere_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ec2399d4..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/embed/__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 deleted file mode 100644 index 6cfbda41..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/azure_ai/rerank/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 597410b7..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/__pycache__/base_model_iterator.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fbfe4b6b..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/__pycache__/base_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0a5a184a..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/anthropic_messages/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 212b45c6..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/audio_transcription/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5a0f201a..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cff54a8c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/completion/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a7aea2b7..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/embedding/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2ccb3687..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/files/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7dcc3ce0..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/image_variations/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a1e6b70a..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/rerank/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6f9f4bad..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/base_llm/responses/__pycache__/transformation.cpython-310.pyc and /dev/null differ 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 deleted file mode 100644 index 0660312c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/__pycache__/base_aws_llm.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d5a860a8..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 962095f4..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/__pycache__/__init__.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e51f6a4d..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/__pycache__/converse_handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fa0e12df..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/__pycache__/converse_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4d491e7b..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/__pycache__/invoke_handler.cpython-310.pyc and /dev/null differ 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 deleted file mode 100644 index a329707f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_ai21_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b395d855..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_cohere_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3e374a3b..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_deepseek_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c96f12a7..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_llama_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 01dca92c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_mistral_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 583077de..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_nova_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 91e3c743..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/amazon_titan_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 47411029..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/anthropic_claude2_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c69579f9..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/anthropic_claude3_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index eca71f77..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/chat/invoke_transformations/__pycache__/base_invoke_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 187898bb..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/amazon_titan_g1_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ab78cb18..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/amazon_titan_multimodal_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8955b0f3..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/amazon_titan_v2_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3284d519..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/cohere_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 13758a76..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/embed/__pycache__/embedding.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 57bf57ac..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/amazon_nova_canvas_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d14d6b5d..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/amazon_stability1_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index af321cda..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/amazon_stability3_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b5894792..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/cost_calculator.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a92341d3..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/image/__pycache__/image_handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a69d5899..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/rerank/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c9d731db..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/bedrock/rerank/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f6d93615..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/cerebras/__pycache__/chat.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cc1823fb..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/clarifai/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cf0d6057..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/clarifai/chat/__pycache__/transformation.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 deleted file mode 100644 index 827f3f75..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/cloudflare/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fd402289..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/codestral/completion/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 011dd20f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/codestral/completion/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 67df9478..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c183d19b..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/chat/__pycache__/transformation.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 deleted file mode 100644 index 778c383a..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/completion/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3395e78f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/embed/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6244f7ab..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/embed/__pycache__/transformation.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 deleted file mode 100644 index dc493361..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/rerank/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 27787ad7..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/cohere/rerank_v2/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c7ac007a..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/custom_httpx/__pycache__/aiohttp_handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fdc3be43..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/custom_httpx/__pycache__/http_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 deleted file mode 100644 index 87116a58..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/custom_httpx/__pycache__/llm_http_handler.cpython-310.pyc and /dev/null differ 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 deleted file mode 100644 index c387a3f7..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/databricks/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 998fc9de..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/databricks/__pycache__/cost_calculator.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fe34bc02..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/databricks/__pycache__/streaming_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3704e0ae..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/databricks/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5d23068b..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/databricks/embed/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8d0c2ef7..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/databricks/embed/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c12e641d..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/deepgram/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2ae21db5..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/deepgram/audio_transcription/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b1cfe541..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/deepinfra/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0d2f1e59..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/deepseek/__pycache__/cost_calculator.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6d825897..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/deepseek/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index aa2cc701..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/deprecated_providers/__pycache__/aleph_alpha.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f466f1d9..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/deprecated_providers/__pycache__/palm.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c3d82340..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/empower/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 82b652fb..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a8786fdc..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/__pycache__/cost_calculator.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 94f9cffd..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/audio_transcription/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 2813eba7..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 17e2f6c4..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/completion/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c59bd86f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/fireworks_ai/embed/__pycache__/fireworks_ai_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5b7d32a6..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/friendliai/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 868bcd6c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/galadriel/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e9d10577..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/gemini/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7df7f936..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/gemini/__pycache__/cost_calculator.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 416d18ac..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/gemini/chat/__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 deleted file mode 100644 index 59e610dc..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/github/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 76ca65b0..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/groq/chat/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c7457157..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/groq/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d1d83b18..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/groq/stt/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4177cca2..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/hosted_vllm/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d70b3cb2..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/huggingface/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 87b8c51f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/huggingface/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d36b6e98..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/huggingface/embedding/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 253aeffb..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/huggingface/embedding/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6e4d307f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/infinity/__pycache__/common_utils.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 deleted file mode 100644 index 0175b3de..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/infinity/embedding/__pycache__/transformation.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 deleted file mode 100644 index 00993df4..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/infinity/rerank/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ead35ca9..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/jina_ai/embedding/__pycache__/transformation.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 deleted file mode 100644 index fb7572f8..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/jina_ai/rerank/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 45e6b0e3..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/litellm_proxy/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cd4c568b..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/lm_studio/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d987c945..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/lm_studio/embed/__pycache__/transformation.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 deleted file mode 100644 index 2ab84c32..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/mistral/__pycache__/mistral_chat_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 deleted file mode 100644 index 64da7e87..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/nlp_cloud/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 53839902..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/nlp_cloud/chat/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 56360902..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/nlp_cloud/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 373f08d3..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/nvidia_nim/__pycache__/chat.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b44d8259..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/nvidia_nim/__pycache__/embed.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 134faee0..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/ollama/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index e29d552a..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/ollama/completion/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a0e8858d..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/ollama/completion/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c380442a..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/oobabooga/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0fd9929d..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/oobabooga/chat/__pycache__/oobabooga.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1f1449f9..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/oobabooga/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index cc714271..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1dd59c01..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/__pycache__/cost_calculation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 206ecdc6..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/__pycache__/openai.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 47b6124d..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/chat/__pycache__/gpt_audio_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f9988131..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/chat/__pycache__/gpt_transformation.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 deleted file mode 100644 index 34249f7d..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/chat/__pycache__/o_series_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index daec06bb..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/completion/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7469b5b1..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/completion/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1d9c4862..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/completion/__pycache__/utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 03e0bf09..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/fine_tuning/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7d524c6c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/image_variations/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4a10ce80..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/image_variations/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index db1c7fbf..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/realtime/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 57e601c6..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/responses/__pycache__/transformation.cpython-310.pyc and /dev/null differ 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 deleted file mode 100644 index d4f7b005..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/transcriptions/__pycache__/gpt_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d8ae310f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/transcriptions/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7c2a4964..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai/transcriptions/__pycache__/whisper_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bbf07902..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai_like/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index beafeee1..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai_like/chat/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8bb1d5cf..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai_like/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index ca492f4f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openai_like/embedding/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4d1fce0c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openrouter/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 3c4a257f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/openrouter/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index babc9cfe..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/perplexity/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index af2753b0..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/petals/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b168e1d1..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/petals/completion/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 59772a13..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/petals/completion/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 1636319b..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/predibase/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 95c09bd7..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/predibase/chat/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 6906a8c8..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/predibase/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index a4709a1c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/replicate/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 43044291..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/replicate/chat/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 30b343e5..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/replicate/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5896d58c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 9dead2b8..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/chat/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4228b8f9..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 4c4b0afe..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/completion/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 888370f5..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/sagemaker/completion/__pycache__/transformation.cpython-310.pyc and /dev/null differ 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 deleted file mode 100644 index 0bba44bc..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/sambanova/__pycache__/chat.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 deleted file mode 100644 index 3c6aa884..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/snowflake/chat/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 19b7669c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/__pycache__/chat.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fa5d0a82..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/__pycache__/cost_calculator.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 deleted file mode 100644 index 7718bc47..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/completion/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d5c8901c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/rerank/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f1378767..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/together_ai/rerank/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index bbc558a3..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/topaz/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 8c21adce..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/topaz/image_variations/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 993a9b26..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/triton/__pycache__/common_utils.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 deleted file mode 100644 index badf4a14..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/triton/completion/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 35df5ef3..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/triton/embedding/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 539aa954..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 39f636bd..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/__pycache__/cost_calculator.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 04ed5747..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/__pycache__/vertex_ai_non_gemini.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f9926002..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/__pycache__/vertex_llm_base.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c1761efd..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/batches/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index eaafe8ac..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/batches/__pycache__/transformation.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 deleted file mode 100644 index 863e2766..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/files/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b21fc17d..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/files/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f4886ac5..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/fine_tuning/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fb19e9da..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/gemini/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0ed0e17f..00000000 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 /dev/null 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 deleted file mode 100644 index d71034d9..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/gemini_embeddings/__pycache__/batch_embed_content_handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index be814077..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/gemini_embeddings/__pycache__/batch_embed_content_transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0264b779..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/image_generation/__pycache__/cost_calculator.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 5ebd298a..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/image_generation/__pycache__/image_generation_handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index f3d15595..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/multimodal_embeddings/__pycache__/embedding_handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index fe599c56..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/multimodal_embeddings/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b92b87be..00000000 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 /dev/null 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 deleted file mode 100644 index 0f10685c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_ai_partner_models/__pycache__/main.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b69e6abc..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_ai_partner_models/ai21/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 47ee3979..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_ai_partner_models/anthropic/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index c808a47d..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_ai_partner_models/llama3/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index b62696dd..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_embeddings/__pycache__/embedding_handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 97dd42a4..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_embeddings/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 0dfe5781..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_embeddings/__pycache__/types.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index de5b3dad..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vertex_ai/vertex_model_garden/__pycache__/main.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 deleted file mode 100644 index d3b83a9a..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vllm/completion/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index af2adf17..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/vllm/completion/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 74a254a1..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/voyage/embedding/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index eef2bf80..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 08b6e118..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/chat/__pycache__/handler.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 97098832..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/chat/__pycache__/transformation.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 deleted file mode 100644 index 72d0306b..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/completion/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 7c6b21a3..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/watsonx/embed/__pycache__/transformation.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index d9f89c9d..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/xai/__pycache__/common_utils.cpython-310.pyc and /dev/null 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 deleted file mode 100644 index 76422cb6..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/llms/xai/chat/__pycache__/transformation.cpython-310.pyc and /dev/null differ 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 deleted file mode 100644 index ccbfb46b..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/__init__.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 deleted file mode 100644 index 48ffcaf2..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/_types.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 deleted file mode 100644 index 31757b3c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/__pycache__/proxy_cli.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/proxy/types_utils/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/proxy/types_utils/__pycache__/utils.cpython-310.pyc deleted file mode 100644 index 3300e155..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/proxy/types_utils/__pycache__/utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/realtime_api/__pycache__/main.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/realtime_api/__pycache__/main.cpython-310.pyc deleted file mode 100644 index 866a5bb6..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/realtime_api/__pycache__/main.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/rerank_api/__pycache__/main.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/rerank_api/__pycache__/main.cpython-310.pyc deleted file mode 100644 index e64c38d5..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/rerank_api/__pycache__/main.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/rerank_api/__pycache__/rerank_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/rerank_api/__pycache__/rerank_utils.cpython-310.pyc deleted file mode 100644 index 9b7b2b1c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/rerank_api/__pycache__/rerank_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/responses/__pycache__/main.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/responses/__pycache__/main.cpython-310.pyc deleted file mode 100644 index 3c2dd4e5..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/responses/__pycache__/main.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/responses/__pycache__/streaming_iterator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/responses/__pycache__/streaming_iterator.cpython-310.pyc deleted file mode 100644 index f2ff6da0..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/responses/__pycache__/streaming_iterator.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/responses/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/responses/__pycache__/utils.cpython-310.pyc deleted file mode 100644 index 9e2f2b61..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/responses/__pycache__/utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/responses/litellm_completion_transformation/__pycache__/handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/responses/litellm_completion_transformation/__pycache__/handler.cpython-310.pyc deleted file mode 100644 index c4e5c408..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/responses/litellm_completion_transformation/__pycache__/handler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/responses/litellm_completion_transformation/__pycache__/streaming_iterator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/responses/litellm_completion_transformation/__pycache__/streaming_iterator.cpython-310.pyc deleted file mode 100644 index cc8855c9..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/responses/litellm_completion_transformation/__pycache__/streaming_iterator.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/responses/litellm_completion_transformation/__pycache__/transformation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/responses/litellm_completion_transformation/__pycache__/transformation.cpython-310.pyc deleted file mode 100644 index f5a99ff6..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/responses/litellm_completion_transformation/__pycache__/transformation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/base_routing_strategy.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/base_routing_strategy.cpython-310.pyc deleted file mode 100644 index 7f3b6f9b..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/base_routing_strategy.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/budget_limiter.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/budget_limiter.cpython-310.pyc deleted file mode 100644 index 1d351527..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/budget_limiter.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/least_busy.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/least_busy.cpython-310.pyc deleted file mode 100644 index 8d89a442..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/least_busy.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/lowest_cost.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/lowest_cost.cpython-310.pyc deleted file mode 100644 index d4dae53b..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/lowest_cost.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/lowest_latency.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/lowest_latency.cpython-310.pyc deleted file mode 100644 index 9e33e6ce..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/lowest_latency.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/lowest_tpm_rpm.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/lowest_tpm_rpm.cpython-310.pyc deleted file mode 100644 index 7537e53e..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/lowest_tpm_rpm.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/lowest_tpm_rpm_v2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/lowest_tpm_rpm_v2.cpython-310.pyc deleted file mode 100644 index 093a0031..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/lowest_tpm_rpm_v2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/simple_shuffle.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/simple_shuffle.cpython-310.pyc deleted file mode 100644 index 7fdc2a81..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/simple_shuffle.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/tag_based_routing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/tag_based_routing.cpython-310.pyc deleted file mode 100644 index 88c1dc16..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_strategy/__pycache__/tag_based_routing.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/add_retry_fallback_headers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/add_retry_fallback_headers.cpython-310.pyc deleted file mode 100644 index e7048b06..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/add_retry_fallback_headers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/batch_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/batch_utils.cpython-310.pyc deleted file mode 100644 index 670acd4c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/batch_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/client_initalization_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/client_initalization_utils.cpython-310.pyc deleted file mode 100644 index 786d7f1e..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/client_initalization_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/clientside_credential_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/clientside_credential_handler.cpython-310.pyc deleted file mode 100644 index 4a9d7d3b..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/clientside_credential_handler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/cooldown_cache.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/cooldown_cache.cpython-310.pyc deleted file mode 100644 index e72aa88c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/cooldown_cache.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/cooldown_callbacks.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/cooldown_callbacks.cpython-310.pyc deleted file mode 100644 index f6fb8e0c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/cooldown_callbacks.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/cooldown_handlers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/cooldown_handlers.cpython-310.pyc deleted file mode 100644 index a5a75202..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/cooldown_handlers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/fallback_event_handlers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/fallback_event_handlers.cpython-310.pyc deleted file mode 100644 index fb2b019f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/fallback_event_handlers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/get_retry_from_policy.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/get_retry_from_policy.cpython-310.pyc deleted file mode 100644 index dbcf220b..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/get_retry_from_policy.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/handle_error.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/handle_error.cpython-310.pyc deleted file mode 100644 index 514a8529..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/handle_error.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/pattern_match_deployments.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/pattern_match_deployments.cpython-310.pyc deleted file mode 100644 index 3af6e426..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/pattern_match_deployments.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/prompt_caching_cache.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/prompt_caching_cache.cpython-310.pyc deleted file mode 100644 index 1e5238e6..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_utils/__pycache__/prompt_caching_cache.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_utils/pre_call_checks/__pycache__/prompt_caching_deployment_check.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_utils/pre_call_checks/__pycache__/prompt_caching_deployment_check.cpython-310.pyc deleted file mode 100644 index 1d8bba26..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_utils/pre_call_checks/__pycache__/prompt_caching_deployment_check.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_utils/pre_call_checks/__pycache__/responses_api_deployment_check.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_utils/pre_call_checks/__pycache__/responses_api_deployment_check.cpython-310.pyc deleted file mode 100644 index b61e7b58..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_utils/pre_call_checks/__pycache__/responses_api_deployment_check.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/router_utils/router_callbacks/__pycache__/track_deployment_metrics.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/router_utils/router_callbacks/__pycache__/track_deployment_metrics.cpython-310.pyc deleted file mode 100644 index d1d28644..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/router_utils/router_callbacks/__pycache__/track_deployment_metrics.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/secret_managers/__pycache__/get_azure_ad_token_provider.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/secret_managers/__pycache__/get_azure_ad_token_provider.cpython-310.pyc deleted file mode 100644 index 9a53b28f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/secret_managers/__pycache__/get_azure_ad_token_provider.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/secret_managers/__pycache__/main.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/secret_managers/__pycache__/main.cpython-310.pyc deleted file mode 100644 index 8a7afcac..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/secret_managers/__pycache__/main.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/adapter.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/adapter.cpython-310.pyc deleted file mode 100644 index e8735244..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/adapter.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/caching.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/caching.cpython-310.pyc deleted file mode 100644 index bfe0a1fa..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/caching.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/completion.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/completion.cpython-310.pyc deleted file mode 100644 index 74e545fa..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/completion.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/embedding.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/embedding.cpython-310.pyc deleted file mode 100644 index 120be5ea..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/embedding.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/files.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/files.cpython-310.pyc deleted file mode 100644 index ee8682af..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/files.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/fine_tuning.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/fine_tuning.cpython-310.pyc deleted file mode 100644 index 272aae15..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/fine_tuning.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/guardrails.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/guardrails.cpython-310.pyc deleted file mode 100644 index 2003942a..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/guardrails.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/rerank.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/rerank.cpython-310.pyc deleted file mode 100644 index db69d8b5..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/rerank.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/router.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/router.cpython-310.pyc deleted file mode 100644 index ceb2abbf..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/router.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/services.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/services.cpython-310.pyc deleted file mode 100644 index f0eef750..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/services.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/utils.cpython-310.pyc deleted file mode 100644 index a73be26e..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/__pycache__/utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/anthropic_cache_control_hook.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/anthropic_cache_control_hook.cpython-310.pyc deleted file mode 100644 index 11dcd46a..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/anthropic_cache_control_hook.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/argilla.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/argilla.cpython-310.pyc deleted file mode 100644 index a3a090c6..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/argilla.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/arize.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/arize.cpython-310.pyc deleted file mode 100644 index a0542597..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/arize.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/arize_phoenix.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/arize_phoenix.cpython-310.pyc deleted file mode 100644 index 57f7cead..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/arize_phoenix.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/base_health_check.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/base_health_check.cpython-310.pyc deleted file mode 100644 index 75faf713..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/base_health_check.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/datadog.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/datadog.cpython-310.pyc deleted file mode 100644 index 4b70c95d..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/datadog.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/datadog_llm_obs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/datadog_llm_obs.cpython-310.pyc deleted file mode 100644 index b5b2e871..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/datadog_llm_obs.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/gcs_bucket.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/gcs_bucket.cpython-310.pyc deleted file mode 100644 index c7341976..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/gcs_bucket.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/langfuse.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/langfuse.cpython-310.pyc deleted file mode 100644 index 6fbdf3d4..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/langfuse.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/langsmith.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/langsmith.cpython-310.pyc deleted file mode 100644 index a03f7e91..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/langsmith.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/pagerduty.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/pagerduty.cpython-310.pyc deleted file mode 100644 index d90ada59..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/pagerduty.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/prometheus.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/prometheus.cpython-310.pyc deleted file mode 100644 index 8c0c3dbd..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/prometheus.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/slack_alerting.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/slack_alerting.cpython-310.pyc deleted file mode 100644 index aa12d6c0..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/integrations/__pycache__/slack_alerting.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/anthropic.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/anthropic.cpython-310.pyc deleted file mode 100644 index 6f6e481f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/anthropic.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/azure.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/azure.cpython-310.pyc deleted file mode 100644 index ce99fced..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/azure.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/azure_ai.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/azure_ai.cpython-310.pyc deleted file mode 100644 index 0d088270..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/azure_ai.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/base.cpython-310.pyc deleted file mode 100644 index b1c47b64..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/bedrock.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/bedrock.cpython-310.pyc deleted file mode 100644 index 384f87b1..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/bedrock.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/cohere.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/cohere.cpython-310.pyc deleted file mode 100644 index 40873b8f..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/cohere.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/custom_http.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/custom_http.cpython-310.pyc deleted file mode 100644 index ee9e5149..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/custom_http.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/custom_llm.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/custom_llm.cpython-310.pyc deleted file mode 100644 index ddc51bef..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/custom_llm.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/databricks.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/databricks.cpython-310.pyc deleted file mode 100644 index c4073399..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/databricks.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/mistral.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/mistral.cpython-310.pyc deleted file mode 100644 index c8cc9356..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/mistral.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/ollama.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/ollama.cpython-310.pyc deleted file mode 100644 index dd7fe161..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/ollama.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/openai.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/openai.cpython-310.pyc deleted file mode 100644 index 4feb953b..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/openai.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/openrouter.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/openrouter.cpython-310.pyc deleted file mode 100644 index 4fc55761..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/openrouter.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/vertex_ai.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/vertex_ai.cpython-310.pyc deleted file mode 100644 index 7848fb98..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/vertex_ai.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/watsonx.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/watsonx.cpython-310.pyc deleted file mode 100644 index e0936db2..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/llms/__pycache__/watsonx.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/llms/anthropic_messages/__pycache__/anthropic_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/llms/anthropic_messages/__pycache__/anthropic_response.cpython-310.pyc deleted file mode 100644 index 72e670f1..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/llms/anthropic_messages/__pycache__/anthropic_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/proxy/management_endpoints/__pycache__/ui_sso.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/proxy/management_endpoints/__pycache__/ui_sso.cpython-310.pyc deleted file mode 100644 index f02e8d27..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/proxy/management_endpoints/__pycache__/ui_sso.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/litellm/types/responses/__pycache__/main.cpython-310.pyc b/.venv/lib/python3.10/site-packages/litellm/types/responses/__pycache__/main.cpython-310.pyc deleted file mode 100644 index ea65606c..00000000 Binary files a/.venv/lib/python3.10/site-packages/litellm/types/responses/__pycache__/main.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/markupsafe/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/markupsafe/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 3af1ebb6..00000000 Binary files a/.venv/lib/python3.10/site-packages/markupsafe/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index c2e626c8..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/__pycache__/types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/__pycache__/types.cpython-310.pyc deleted file mode 100644 index 8777cf24..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/__pycache__/types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/client/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/client/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 97b835f6..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/client/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/client/__pycache__/session.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/client/__pycache__/session.cpython-310.pyc deleted file mode 100644 index 26282273..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/client/__pycache__/session.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/client/__pycache__/sse.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/client/__pycache__/sse.cpython-310.pyc deleted file mode 100644 index 40784abd..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/client/__pycache__/sse.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/client/stdio/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/client/stdio/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 4bcf7a81..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/client/stdio/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/client/stdio/__pycache__/win32.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/client/stdio/__pycache__/win32.cpython-310.pyc deleted file mode 100644 index a9f95da9..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/client/stdio/__pycache__/win32.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index db674087..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/__pycache__/models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/__pycache__/models.cpython-310.pyc deleted file mode 100644 index e6f81e57..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/__pycache__/models.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/__pycache__/session.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/__pycache__/session.cpython-310.pyc deleted file mode 100644 index 3aedf5ae..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/__pycache__/session.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/__pycache__/sse.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/__pycache__/sse.cpython-310.pyc deleted file mode 100644 index 4bcd47b0..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/__pycache__/sse.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/__pycache__/stdio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/__pycache__/stdio.cpython-310.pyc deleted file mode 100644 index 8e5451cc..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/__pycache__/stdio.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 3b94b395..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/__pycache__/exceptions.cpython-310.pyc deleted file mode 100644 index 709d3fac..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/__pycache__/exceptions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/__pycache__/server.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/__pycache__/server.cpython-310.pyc deleted file mode 100644 index ba94d772..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/__pycache__/server.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/prompts/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/prompts/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 5b780d53..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/prompts/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/prompts/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/prompts/__pycache__/base.cpython-310.pyc deleted file mode 100644 index ef8c8265..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/prompts/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/prompts/__pycache__/manager.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/prompts/__pycache__/manager.cpython-310.pyc deleted file mode 100644 index 0556c3a1..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/prompts/__pycache__/manager.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/resources/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/resources/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index a4743910..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/resources/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/resources/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/resources/__pycache__/base.cpython-310.pyc deleted file mode 100644 index 6272c502..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/resources/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/resources/__pycache__/resource_manager.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/resources/__pycache__/resource_manager.cpython-310.pyc deleted file mode 100644 index 9e85b141..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/resources/__pycache__/resource_manager.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/resources/__pycache__/templates.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/resources/__pycache__/templates.cpython-310.pyc deleted file mode 100644 index b8db6f9e..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/resources/__pycache__/templates.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/resources/__pycache__/types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/resources/__pycache__/types.cpython-310.pyc deleted file mode 100644 index 8b138965..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/resources/__pycache__/types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/tools/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/tools/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 64c06d01..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/tools/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/tools/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/tools/__pycache__/base.cpython-310.pyc deleted file mode 100644 index 530aa7b5..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/tools/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/tools/__pycache__/tool_manager.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/tools/__pycache__/tool_manager.cpython-310.pyc deleted file mode 100644 index 35561019..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/tools/__pycache__/tool_manager.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/utilities/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/utilities/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 6bbacdf3..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/utilities/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/utilities/__pycache__/func_metadata.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/utilities/__pycache__/func_metadata.cpython-310.pyc deleted file mode 100644 index e7c95d96..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/utilities/__pycache__/func_metadata.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/utilities/__pycache__/logging.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/utilities/__pycache__/logging.cpython-310.pyc deleted file mode 100644 index 9fc79320..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/utilities/__pycache__/logging.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/utilities/__pycache__/types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/utilities/__pycache__/types.cpython-310.pyc deleted file mode 100644 index e401fec1..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/fastmcp/utilities/__pycache__/types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/lowlevel/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/lowlevel/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index ff529dc1..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/lowlevel/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/lowlevel/__pycache__/helper_types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/lowlevel/__pycache__/helper_types.cpython-310.pyc deleted file mode 100644 index 2923fca3..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/lowlevel/__pycache__/helper_types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/server/lowlevel/__pycache__/server.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/server/lowlevel/__pycache__/server.cpython-310.pyc deleted file mode 100644 index 9e43b6d2..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/server/lowlevel/__pycache__/server.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/shared/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/shared/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 4a1bed21..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/shared/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/shared/__pycache__/context.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/shared/__pycache__/context.cpython-310.pyc deleted file mode 100644 index eb48659c..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/shared/__pycache__/context.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/shared/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/shared/__pycache__/exceptions.cpython-310.pyc deleted file mode 100644 index 63329747..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/shared/__pycache__/exceptions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/shared/__pycache__/session.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/shared/__pycache__/session.cpython-310.pyc deleted file mode 100644 index 9c517e44..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/shared/__pycache__/session.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/mcp/shared/__pycache__/version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/mcp/shared/__pycache__/version.cpython-310.pyc deleted file mode 100644 index e91b1a6f..00000000 Binary files a/.venv/lib/python3.10/site-packages/mcp/shared/__pycache__/version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/multidict/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/multidict/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 1032b229..00000000 Binary files a/.venv/lib/python3.10/site-packages/multidict/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/multidict/__pycache__/_abc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/multidict/__pycache__/_abc.cpython-310.pyc deleted file mode 100644 index e256dd50..00000000 Binary files a/.venv/lib/python3.10/site-packages/multidict/__pycache__/_abc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/multidict/__pycache__/_compat.cpython-310.pyc b/.venv/lib/python3.10/site-packages/multidict/__pycache__/_compat.cpython-310.pyc deleted file mode 100644 index 837a9ff4..00000000 Binary files a/.venv/lib/python3.10/site-packages/multidict/__pycache__/_compat.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 939c6b74..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/__pycache__/_base_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/__pycache__/_base_client.cpython-310.pyc deleted file mode 100644 index d321a48b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/__pycache__/_base_client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/__pycache__/_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/__pycache__/_client.cpython-310.pyc deleted file mode 100644 index 0c9f706b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/__pycache__/_client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/__pycache__/_compat.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/__pycache__/_compat.cpython-310.pyc deleted file mode 100644 index 93c150bb..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/__pycache__/_compat.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/__pycache__/_constants.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/__pycache__/_constants.cpython-310.pyc deleted file mode 100644 index dae7ef3d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/__pycache__/_constants.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/__pycache__/_exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/__pycache__/_exceptions.cpython-310.pyc deleted file mode 100644 index fe520c5c..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/__pycache__/_exceptions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/__pycache__/_files.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/__pycache__/_files.cpython-310.pyc deleted file mode 100644 index 90e950dc..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/__pycache__/_files.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/__pycache__/_legacy_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/__pycache__/_legacy_response.cpython-310.pyc deleted file mode 100644 index cc011d65..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/__pycache__/_legacy_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/__pycache__/_models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/__pycache__/_models.cpython-310.pyc deleted file mode 100644 index dc59717e..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/__pycache__/_models.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/__pycache__/_module_client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/__pycache__/_module_client.cpython-310.pyc deleted file mode 100644 index 599c6cff..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/__pycache__/_module_client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/__pycache__/_qs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/__pycache__/_qs.cpython-310.pyc deleted file mode 100644 index b8656eb4..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/__pycache__/_qs.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/__pycache__/_resource.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/__pycache__/_resource.cpython-310.pyc deleted file mode 100644 index 2e274a7a..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/__pycache__/_resource.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/__pycache__/_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/__pycache__/_response.cpython-310.pyc deleted file mode 100644 index 9048cb3e..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/__pycache__/_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/__pycache__/_streaming.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/__pycache__/_streaming.cpython-310.pyc deleted file mode 100644 index ffd1ee93..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/__pycache__/_streaming.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/__pycache__/_types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/__pycache__/_types.cpython-310.pyc deleted file mode 100644 index 53b71084..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/__pycache__/_types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/__pycache__/_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/__pycache__/_version.cpython-310.pyc deleted file mode 100644 index 954c273d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/__pycache__/_version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/__pycache__/pagination.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/__pycache__/pagination.cpython-310.pyc deleted file mode 100644 index 18c1accc..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/__pycache__/pagination.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/__pycache__/version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/__pycache__/version.cpython-310.pyc deleted file mode 100644 index 15561d63..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/__pycache__/version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/_extras/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/_extras/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index b632e600..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/_extras/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/_extras/__pycache__/_common.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/_extras/__pycache__/_common.cpython-310.pyc deleted file mode 100644 index 976c627a..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/_extras/__pycache__/_common.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/_extras/__pycache__/numpy_proxy.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/_extras/__pycache__/numpy_proxy.cpython-310.pyc deleted file mode 100644 index 720c60ea..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/_extras/__pycache__/numpy_proxy.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/_extras/__pycache__/pandas_proxy.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/_extras/__pycache__/pandas_proxy.cpython-310.pyc deleted file mode 100644 index caa5cc37..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/_extras/__pycache__/pandas_proxy.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/_extras/__pycache__/sounddevice_proxy.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/_extras/__pycache__/sounddevice_proxy.cpython-310.pyc deleted file mode 100644 index 2568c943..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/_extras/__pycache__/sounddevice_proxy.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 69a81454..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_logs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_logs.cpython-310.pyc deleted file mode 100644 index aff4ddc1..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_logs.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_proxy.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_proxy.cpython-310.pyc deleted file mode 100644 index 0f4dd8be..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_proxy.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_reflection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_reflection.cpython-310.pyc deleted file mode 100644 index 23e9f810..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_reflection.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_streams.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_streams.cpython-310.pyc deleted file mode 100644 index 26714870..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_streams.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_sync.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_sync.cpython-310.pyc deleted file mode 100644 index dc85cf94..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_sync.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_transform.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_transform.cpython-310.pyc deleted file mode 100644 index 9e15b229..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_transform.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_typing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_typing.cpython-310.pyc deleted file mode 100644 index 974b1281..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_typing.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_utils.cpython-310.pyc deleted file mode 100644 index 38f90524..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/_utils/__pycache__/_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/lib/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/lib/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 87904290..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/lib/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/lib/__pycache__/_old_api.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/lib/__pycache__/_old_api.cpython-310.pyc deleted file mode 100644 index d61368e4..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/lib/__pycache__/_old_api.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/lib/__pycache__/_pydantic.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/lib/__pycache__/_pydantic.cpython-310.pyc deleted file mode 100644 index 8657d1ba..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/lib/__pycache__/_pydantic.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/lib/__pycache__/_tools.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/lib/__pycache__/_tools.cpython-310.pyc deleted file mode 100644 index c31547ed..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/lib/__pycache__/_tools.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/lib/__pycache__/azure.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/lib/__pycache__/azure.cpython-310.pyc deleted file mode 100644 index ed663d6a..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/lib/__pycache__/azure.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/lib/_parsing/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/lib/_parsing/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 4aa7bf52..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/lib/_parsing/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/lib/_parsing/__pycache__/_completions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/lib/_parsing/__pycache__/_completions.cpython-310.pyc deleted file mode 100644 index 57b673f6..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/lib/_parsing/__pycache__/_completions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/lib/_parsing/__pycache__/_responses.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/lib/_parsing/__pycache__/_responses.cpython-310.pyc deleted file mode 100644 index a8cd31ef..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/lib/_parsing/__pycache__/_responses.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/lib/streaming/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/lib/streaming/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 68cfabc6..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/lib/streaming/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/lib/streaming/__pycache__/_assistants.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/lib/streaming/__pycache__/_assistants.cpython-310.pyc deleted file mode 100644 index 01e8e029..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/lib/streaming/__pycache__/_assistants.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/lib/streaming/__pycache__/_deltas.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/lib/streaming/__pycache__/_deltas.cpython-310.pyc deleted file mode 100644 index d5495ebc..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/lib/streaming/__pycache__/_deltas.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/lib/streaming/chat/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/lib/streaming/chat/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 8a581ba0..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/lib/streaming/chat/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/lib/streaming/chat/__pycache__/_completions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/lib/streaming/chat/__pycache__/_completions.cpython-310.pyc deleted file mode 100644 index 333ba43d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/lib/streaming/chat/__pycache__/_completions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/lib/streaming/chat/__pycache__/_events.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/lib/streaming/chat/__pycache__/_events.cpython-310.pyc deleted file mode 100644 index abbb80c9..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/lib/streaming/chat/__pycache__/_events.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/lib/streaming/chat/__pycache__/_types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/lib/streaming/chat/__pycache__/_types.cpython-310.pyc deleted file mode 100644 index 8740f74d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/lib/streaming/chat/__pycache__/_types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/lib/streaming/responses/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/lib/streaming/responses/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 37ee0363..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/lib/streaming/responses/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/lib/streaming/responses/__pycache__/_events.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/lib/streaming/responses/__pycache__/_events.cpython-310.pyc deleted file mode 100644 index 5c0a5b08..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/lib/streaming/responses/__pycache__/_events.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/lib/streaming/responses/__pycache__/_responses.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/lib/streaming/responses/__pycache__/_responses.cpython-310.pyc deleted file mode 100644 index 77ecb756..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/lib/streaming/responses/__pycache__/_responses.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/lib/streaming/responses/__pycache__/_types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/lib/streaming/responses/__pycache__/_types.cpython-310.pyc deleted file mode 100644 index 30e021e8..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/lib/streaming/responses/__pycache__/_types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 535bd9c0..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/batches.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/batches.cpython-310.pyc deleted file mode 100644 index 1570c799..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/batches.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/completions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/completions.cpython-310.pyc deleted file mode 100644 index 8e2ebae3..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/completions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/embeddings.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/embeddings.cpython-310.pyc deleted file mode 100644 index 2ebf5d97..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/embeddings.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/files.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/files.cpython-310.pyc deleted file mode 100644 index 7e9e2b64..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/files.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/images.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/images.cpython-310.pyc deleted file mode 100644 index 10252c6c..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/images.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/models.cpython-310.pyc deleted file mode 100644 index 67c44947..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/models.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/moderations.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/moderations.cpython-310.pyc deleted file mode 100644 index 7382e70a..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/__pycache__/moderations.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/audio/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/audio/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index dc759297..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/audio/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/audio/__pycache__/audio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/audio/__pycache__/audio.cpython-310.pyc deleted file mode 100644 index 55b1268e..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/audio/__pycache__/audio.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/audio/__pycache__/speech.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/audio/__pycache__/speech.cpython-310.pyc deleted file mode 100644 index dae0ff81..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/audio/__pycache__/speech.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/audio/__pycache__/transcriptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/audio/__pycache__/transcriptions.cpython-310.pyc deleted file mode 100644 index 2f30a08b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/audio/__pycache__/transcriptions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/audio/__pycache__/translations.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/audio/__pycache__/translations.cpython-310.pyc deleted file mode 100644 index 3547d8bb..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/audio/__pycache__/translations.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/beta/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/beta/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 13cb0471..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/beta/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/beta/__pycache__/assistants.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/beta/__pycache__/assistants.cpython-310.pyc deleted file mode 100644 index 5a4ebf37..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/beta/__pycache__/assistants.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/beta/__pycache__/beta.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/beta/__pycache__/beta.cpython-310.pyc deleted file mode 100644 index f43943de..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/beta/__pycache__/beta.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/beta/chat/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/beta/chat/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 13fa30f1..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/beta/chat/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/beta/chat/__pycache__/chat.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/beta/chat/__pycache__/chat.cpython-310.pyc deleted file mode 100644 index 876cadf0..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/beta/chat/__pycache__/chat.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/beta/chat/__pycache__/completions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/beta/chat/__pycache__/completions.cpython-310.pyc deleted file mode 100644 index a1ec0a37..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/beta/chat/__pycache__/completions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/beta/realtime/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/beta/realtime/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 39e22211..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/beta/realtime/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/beta/realtime/__pycache__/realtime.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/beta/realtime/__pycache__/realtime.cpython-310.pyc deleted file mode 100644 index 804a9bed..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/beta/realtime/__pycache__/realtime.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/beta/realtime/__pycache__/sessions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/beta/realtime/__pycache__/sessions.cpython-310.pyc deleted file mode 100644 index 3f45db8d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/beta/realtime/__pycache__/sessions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/beta/realtime/__pycache__/transcription_sessions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/beta/realtime/__pycache__/transcription_sessions.cpython-310.pyc deleted file mode 100644 index 7afee450..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/beta/realtime/__pycache__/transcription_sessions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/beta/threads/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/beta/threads/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index b1ea834f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/beta/threads/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/beta/threads/__pycache__/messages.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/beta/threads/__pycache__/messages.cpython-310.pyc deleted file mode 100644 index 3ddb868f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/beta/threads/__pycache__/messages.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/beta/threads/__pycache__/threads.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/beta/threads/__pycache__/threads.cpython-310.pyc deleted file mode 100644 index 0ed5334f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/beta/threads/__pycache__/threads.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/beta/threads/runs/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/beta/threads/runs/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 7d6710d1..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/beta/threads/runs/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/beta/threads/runs/__pycache__/runs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/beta/threads/runs/__pycache__/runs.cpython-310.pyc deleted file mode 100644 index f34fdf66..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/beta/threads/runs/__pycache__/runs.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/beta/threads/runs/__pycache__/steps.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/beta/threads/runs/__pycache__/steps.cpython-310.pyc deleted file mode 100644 index 14abc283..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/beta/threads/runs/__pycache__/steps.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/chat/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/chat/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 56e9e600..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/chat/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/chat/__pycache__/chat.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/chat/__pycache__/chat.cpython-310.pyc deleted file mode 100644 index c90f16ed..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/chat/__pycache__/chat.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/chat/completions/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/chat/completions/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index b3f386d4..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/chat/completions/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/chat/completions/__pycache__/completions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/chat/completions/__pycache__/completions.cpython-310.pyc deleted file mode 100644 index 7e102730..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/chat/completions/__pycache__/completions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/chat/completions/__pycache__/messages.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/chat/completions/__pycache__/messages.cpython-310.pyc deleted file mode 100644 index a226803b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/chat/completions/__pycache__/messages.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/evals/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/evals/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index bdbf62b7..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/evals/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/evals/__pycache__/evals.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/evals/__pycache__/evals.cpython-310.pyc deleted file mode 100644 index 914a0c59..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/evals/__pycache__/evals.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/evals/runs/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/evals/runs/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 879ff633..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/evals/runs/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/evals/runs/__pycache__/output_items.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/evals/runs/__pycache__/output_items.cpython-310.pyc deleted file mode 100644 index 8d28dd1c..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/evals/runs/__pycache__/output_items.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/evals/runs/__pycache__/runs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/evals/runs/__pycache__/runs.cpython-310.pyc deleted file mode 100644 index ce2ae094..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/evals/runs/__pycache__/runs.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 6ed5d9a6..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/__pycache__/fine_tuning.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/__pycache__/fine_tuning.cpython-310.pyc deleted file mode 100644 index 8a9eb726..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/__pycache__/fine_tuning.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/checkpoints/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/checkpoints/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 6bce179a..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/checkpoints/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/checkpoints/__pycache__/checkpoints.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/checkpoints/__pycache__/checkpoints.cpython-310.pyc deleted file mode 100644 index 439d0d44..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/checkpoints/__pycache__/checkpoints.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/checkpoints/__pycache__/permissions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/checkpoints/__pycache__/permissions.cpython-310.pyc deleted file mode 100644 index 21916a51..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/checkpoints/__pycache__/permissions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/jobs/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/jobs/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 413ca01b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/jobs/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/jobs/__pycache__/checkpoints.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/jobs/__pycache__/checkpoints.cpython-310.pyc deleted file mode 100644 index f72e2de4..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/jobs/__pycache__/checkpoints.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/jobs/__pycache__/jobs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/jobs/__pycache__/jobs.cpython-310.pyc deleted file mode 100644 index 4c18d8bc..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/fine_tuning/jobs/__pycache__/jobs.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/responses/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/responses/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index e0fe1663..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/responses/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/responses/__pycache__/input_items.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/responses/__pycache__/input_items.cpython-310.pyc deleted file mode 100644 index ec2b9de0..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/responses/__pycache__/input_items.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/responses/__pycache__/responses.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/responses/__pycache__/responses.cpython-310.pyc deleted file mode 100644 index 14a90696..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/responses/__pycache__/responses.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/uploads/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/uploads/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index d3142578..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/uploads/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/uploads/__pycache__/parts.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/uploads/__pycache__/parts.cpython-310.pyc deleted file mode 100644 index ac366f4a..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/uploads/__pycache__/parts.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/uploads/__pycache__/uploads.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/uploads/__pycache__/uploads.cpython-310.pyc deleted file mode 100644 index b98463ec..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/uploads/__pycache__/uploads.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/vector_stores/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/vector_stores/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index de3af5d5..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/vector_stores/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/vector_stores/__pycache__/file_batches.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/vector_stores/__pycache__/file_batches.cpython-310.pyc deleted file mode 100644 index 7422634b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/vector_stores/__pycache__/file_batches.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/vector_stores/__pycache__/files.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/vector_stores/__pycache__/files.cpython-310.pyc deleted file mode 100644 index c36eaa28..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/vector_stores/__pycache__/files.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/resources/vector_stores/__pycache__/vector_stores.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/resources/vector_stores/__pycache__/vector_stores.cpython-310.pyc deleted file mode 100644 index f200e37b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/resources/vector_stores/__pycache__/vector_stores.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 7032e0d2..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/audio_model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/audio_model.cpython-310.pyc deleted file mode 100644 index f97edc49..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/audio_model.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/audio_response_format.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/audio_response_format.cpython-310.pyc deleted file mode 100644 index c32607cf..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/audio_response_format.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/auto_file_chunking_strategy_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/auto_file_chunking_strategy_param.cpython-310.pyc deleted file mode 100644 index a8aa4978..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/auto_file_chunking_strategy_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/batch.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/batch.cpython-310.pyc deleted file mode 100644 index 54f6c48e..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/batch.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/batch_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/batch_create_params.cpython-310.pyc deleted file mode 100644 index 57b6c5e8..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/batch_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/batch_error.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/batch_error.cpython-310.pyc deleted file mode 100644 index 5184ca89..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/batch_error.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/batch_list_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/batch_list_params.cpython-310.pyc deleted file mode 100644 index 21663908..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/batch_list_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/batch_request_counts.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/batch_request_counts.cpython-310.pyc deleted file mode 100644 index 915a4444..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/batch_request_counts.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/chat_model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/chat_model.cpython-310.pyc deleted file mode 100644 index 4176c24d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/chat_model.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/completion.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/completion.cpython-310.pyc deleted file mode 100644 index 99077f3b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/completion.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/completion_choice.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/completion_choice.cpython-310.pyc deleted file mode 100644 index 454b1a60..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/completion_choice.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/completion_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/completion_create_params.cpython-310.pyc deleted file mode 100644 index 9e41d854..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/completion_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/completion_usage.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/completion_usage.cpython-310.pyc deleted file mode 100644 index e39ee372..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/completion_usage.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/create_embedding_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/create_embedding_response.cpython-310.pyc deleted file mode 100644 index 6cf5ed09..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/create_embedding_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/embedding.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/embedding.cpython-310.pyc deleted file mode 100644 index 583cd86b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/embedding.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/embedding_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/embedding_create_params.cpython-310.pyc deleted file mode 100644 index fe111924..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/embedding_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/embedding_model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/embedding_model.cpython-310.pyc deleted file mode 100644 index eab5d91c..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/embedding_model.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_create_params.cpython-310.pyc deleted file mode 100644 index 2e93978d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_create_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_create_response.cpython-310.pyc deleted file mode 100644 index 2356850b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_create_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_custom_data_source_config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_custom_data_source_config.cpython-310.pyc deleted file mode 100644 index c86e49b5..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_custom_data_source_config.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_delete_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_delete_response.cpython-310.pyc deleted file mode 100644 index 4d204452..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_delete_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_label_model_grader.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_label_model_grader.cpython-310.pyc deleted file mode 100644 index be0f8cb9..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_label_model_grader.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_list_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_list_params.cpython-310.pyc deleted file mode 100644 index 0a8e9fd7..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_list_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_list_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_list_response.cpython-310.pyc deleted file mode 100644 index 7b347d54..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_list_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_retrieve_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_retrieve_response.cpython-310.pyc deleted file mode 100644 index 374a8fbc..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_retrieve_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_stored_completions_data_source_config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_stored_completions_data_source_config.cpython-310.pyc deleted file mode 100644 index 9c1a995b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_stored_completions_data_source_config.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_string_check_grader.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_string_check_grader.cpython-310.pyc deleted file mode 100644 index dde4e6c7..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_string_check_grader.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_string_check_grader_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_string_check_grader_param.cpython-310.pyc deleted file mode 100644 index 48c35cd5..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_string_check_grader_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_text_similarity_grader.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_text_similarity_grader.cpython-310.pyc deleted file mode 100644 index 7cdfdbee..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_text_similarity_grader.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_text_similarity_grader_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_text_similarity_grader_param.cpython-310.pyc deleted file mode 100644 index 23706ffb..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_text_similarity_grader_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_update_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_update_params.cpython-310.pyc deleted file mode 100644 index 810bde9f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_update_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_update_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_update_response.cpython-310.pyc deleted file mode 100644 index 7aee2b62..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/eval_update_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_chunking_strategy.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_chunking_strategy.cpython-310.pyc deleted file mode 100644 index 677345bb..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_chunking_strategy.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_chunking_strategy_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_chunking_strategy_param.cpython-310.pyc deleted file mode 100644 index 39b2a86d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_chunking_strategy_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_content.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_content.cpython-310.pyc deleted file mode 100644 index e89a795f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_content.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_create_params.cpython-310.pyc deleted file mode 100644 index bd251389..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_deleted.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_deleted.cpython-310.pyc deleted file mode 100644 index 1f73990f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_deleted.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_list_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_list_params.cpython-310.pyc deleted file mode 100644 index 49587d8b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_list_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_object.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_object.cpython-310.pyc deleted file mode 100644 index 76db556d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_object.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_purpose.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_purpose.cpython-310.pyc deleted file mode 100644 index 16bdcb05..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/file_purpose.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/image.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/image.cpython-310.pyc deleted file mode 100644 index 25c49f3e..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/image.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/image_create_variation_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/image_create_variation_params.cpython-310.pyc deleted file mode 100644 index 8409a9c2..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/image_create_variation_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/image_edit_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/image_edit_params.cpython-310.pyc deleted file mode 100644 index 86e84ebd..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/image_edit_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/image_generate_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/image_generate_params.cpython-310.pyc deleted file mode 100644 index 3517d134..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/image_generate_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/image_model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/image_model.cpython-310.pyc deleted file mode 100644 index b7343a46..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/image_model.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/images_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/images_response.cpython-310.pyc deleted file mode 100644 index 641004d1..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/images_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/model.cpython-310.pyc deleted file mode 100644 index c3fa8175..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/model.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/model_deleted.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/model_deleted.cpython-310.pyc deleted file mode 100644 index b4a23398..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/model_deleted.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/moderation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/moderation.cpython-310.pyc deleted file mode 100644 index 0a3e15a5..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/moderation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/moderation_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/moderation_create_params.cpython-310.pyc deleted file mode 100644 index 2aa0e693..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/moderation_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/moderation_create_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/moderation_create_response.cpython-310.pyc deleted file mode 100644 index 7dc5e41f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/moderation_create_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/moderation_image_url_input_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/moderation_image_url_input_param.cpython-310.pyc deleted file mode 100644 index 72c6842d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/moderation_image_url_input_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/moderation_model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/moderation_model.cpython-310.pyc deleted file mode 100644 index 5dfd7d36..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/moderation_model.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/moderation_multi_modal_input_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/moderation_multi_modal_input_param.cpython-310.pyc deleted file mode 100644 index 4993836e..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/moderation_multi_modal_input_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/moderation_text_input_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/moderation_text_input_param.cpython-310.pyc deleted file mode 100644 index 8ec4d8a5..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/moderation_text_input_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/other_file_chunking_strategy_object.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/other_file_chunking_strategy_object.cpython-310.pyc deleted file mode 100644 index f31aae21..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/other_file_chunking_strategy_object.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/static_file_chunking_strategy.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/static_file_chunking_strategy.cpython-310.pyc deleted file mode 100644 index a70799e4..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/static_file_chunking_strategy.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/static_file_chunking_strategy_object.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/static_file_chunking_strategy_object.cpython-310.pyc deleted file mode 100644 index 3ab0dec6..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/static_file_chunking_strategy_object.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/static_file_chunking_strategy_object_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/static_file_chunking_strategy_object_param.cpython-310.pyc deleted file mode 100644 index 7943f72f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/static_file_chunking_strategy_object_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/static_file_chunking_strategy_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/static_file_chunking_strategy_param.cpython-310.pyc deleted file mode 100644 index 1a5ede49..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/static_file_chunking_strategy_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/upload.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/upload.cpython-310.pyc deleted file mode 100644 index 8038e5d8..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/upload.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/upload_complete_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/upload_complete_params.cpython-310.pyc deleted file mode 100644 index 78158491..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/upload_complete_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/upload_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/upload_create_params.cpython-310.pyc deleted file mode 100644 index 438b90cc..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/upload_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/vector_store.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/vector_store.cpython-310.pyc deleted file mode 100644 index 5993e990..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/vector_store.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/vector_store_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/vector_store_create_params.cpython-310.pyc deleted file mode 100644 index 26fc59df..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/vector_store_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/vector_store_deleted.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/vector_store_deleted.cpython-310.pyc deleted file mode 100644 index cd9f4479..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/vector_store_deleted.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/vector_store_list_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/vector_store_list_params.cpython-310.pyc deleted file mode 100644 index 65cfdd29..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/vector_store_list_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/vector_store_search_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/vector_store_search_params.cpython-310.pyc deleted file mode 100644 index ba62cc0c..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/vector_store_search_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/vector_store_search_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/vector_store_search_response.cpython-310.pyc deleted file mode 100644 index d4464518..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/vector_store_search_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/vector_store_update_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/vector_store_update_params.cpython-310.pyc deleted file mode 100644 index ff5c1632..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/vector_store_update_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/websocket_connection_options.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/__pycache__/websocket_connection_options.cpython-310.pyc deleted file mode 100644 index 28035d6f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/__pycache__/websocket_connection_options.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index f005da76..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/speech_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/speech_create_params.cpython-310.pyc deleted file mode 100644 index f217525f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/speech_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/speech_model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/speech_model.cpython-310.pyc deleted file mode 100644 index b7b6659d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/speech_model.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription.cpython-310.pyc deleted file mode 100644 index f6dcab29..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_create_params.cpython-310.pyc deleted file mode 100644 index bdd843d1..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_create_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_create_response.cpython-310.pyc deleted file mode 100644 index 1d5b85b5..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_create_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_include.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_include.cpython-310.pyc deleted file mode 100644 index afd085e7..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_include.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_segment.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_segment.cpython-310.pyc deleted file mode 100644 index eed72e32..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_segment.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_stream_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_stream_event.cpython-310.pyc deleted file mode 100644 index 4dc6ec21..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_stream_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_text_delta_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_text_delta_event.cpython-310.pyc deleted file mode 100644 index d0542253..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_text_delta_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_text_done_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_text_done_event.cpython-310.pyc deleted file mode 100644 index fb87d7fd..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_text_done_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_verbose.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_verbose.cpython-310.pyc deleted file mode 100644 index c50c1af4..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_verbose.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_word.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_word.cpython-310.pyc deleted file mode 100644 index e612f1db..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/transcription_word.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/translation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/translation.cpython-310.pyc deleted file mode 100644 index 7ec3e0ac..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/translation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/translation_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/translation_create_params.cpython-310.pyc deleted file mode 100644 index 33d91378..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/translation_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/translation_create_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/translation_create_response.cpython-310.pyc deleted file mode 100644 index aeb64d8c..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/translation_create_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/translation_verbose.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/translation_verbose.cpython-310.pyc deleted file mode 100644 index c9b55d2d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/audio/__pycache__/translation_verbose.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 007c2ddd..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant.cpython-310.pyc deleted file mode 100644 index 5a6c1c70..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_create_params.cpython-310.pyc deleted file mode 100644 index 3e65c156..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_deleted.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_deleted.cpython-310.pyc deleted file mode 100644 index f7b50806..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_deleted.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_list_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_list_params.cpython-310.pyc deleted file mode 100644 index 4c0a755f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_list_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_response_format_option.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_response_format_option.cpython-310.pyc deleted file mode 100644 index 5f248be0..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_response_format_option.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_response_format_option_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_response_format_option_param.cpython-310.pyc deleted file mode 100644 index 20eb88a7..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_response_format_option_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_stream_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_stream_event.cpython-310.pyc deleted file mode 100644 index 1023353a..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_stream_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool.cpython-310.pyc deleted file mode 100644 index 2fa2d3f3..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool_choice.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool_choice.cpython-310.pyc deleted file mode 100644 index e1115d23..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool_choice.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool_choice_function.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool_choice_function.cpython-310.pyc deleted file mode 100644 index 774b61e3..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool_choice_function.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool_choice_function_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool_choice_function_param.cpython-310.pyc deleted file mode 100644 index 35b58f3d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool_choice_function_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool_choice_option.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool_choice_option.cpython-310.pyc deleted file mode 100644 index cabf605b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool_choice_option.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool_choice_option_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool_choice_option_param.cpython-310.pyc deleted file mode 100644 index cc7cc8d0..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool_choice_option_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool_choice_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool_choice_param.cpython-310.pyc deleted file mode 100644 index 469e6f41..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool_choice_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool_param.cpython-310.pyc deleted file mode 100644 index 0bdf999d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_tool_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_update_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_update_params.cpython-310.pyc deleted file mode 100644 index 0a8a46aa..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/assistant_update_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/code_interpreter_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/code_interpreter_tool.cpython-310.pyc deleted file mode 100644 index 0c1f99ff..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/code_interpreter_tool.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/code_interpreter_tool_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/code_interpreter_tool_param.cpython-310.pyc deleted file mode 100644 index 1501ef96..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/code_interpreter_tool_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/file_search_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/file_search_tool.cpython-310.pyc deleted file mode 100644 index db0b49b3..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/file_search_tool.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/file_search_tool_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/file_search_tool_param.cpython-310.pyc deleted file mode 100644 index 535f024e..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/file_search_tool_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/function_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/function_tool.cpython-310.pyc deleted file mode 100644 index a9e223d5..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/function_tool.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/function_tool_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/function_tool_param.cpython-310.pyc deleted file mode 100644 index 19e7a73f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/function_tool_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/thread.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/thread.cpython-310.pyc deleted file mode 100644 index 21e651a7..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/thread.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/thread_create_and_run_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/thread_create_and_run_params.cpython-310.pyc deleted file mode 100644 index 3183128f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/thread_create_and_run_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/thread_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/thread_create_params.cpython-310.pyc deleted file mode 100644 index aa663889..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/thread_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/thread_deleted.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/thread_deleted.cpython-310.pyc deleted file mode 100644 index 28f854b8..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/thread_deleted.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/thread_update_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/thread_update_params.cpython-310.pyc deleted file mode 100644 index 3bedfce6..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/__pycache__/thread_update_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 4979b26a..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_created_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_created_event.cpython-310.pyc deleted file mode 100644 index be267141..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_created_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item.cpython-310.pyc deleted file mode 100644 index 4ec4149e..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_content.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_content.cpython-310.pyc deleted file mode 100644 index 3b319263..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_content.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_content_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_content_param.cpython-310.pyc deleted file mode 100644 index cf47b43d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_content_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_create_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_create_event.cpython-310.pyc deleted file mode 100644 index 30777a0e..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_create_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_create_event_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_create_event_param.cpython-310.pyc deleted file mode 100644 index 2bc0ea8f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_create_event_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_created_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_created_event.cpython-310.pyc deleted file mode 100644 index 8a135d20..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_created_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_delete_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_delete_event.cpython-310.pyc deleted file mode 100644 index c548e90d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_delete_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_delete_event_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_delete_event_param.cpython-310.pyc deleted file mode 100644 index 38082628..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_delete_event_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_deleted_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_deleted_event.cpython-310.pyc deleted file mode 100644 index a7f9465c..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_deleted_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_input_audio_transcription_completed_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_input_audio_transcription_completed_event.cpython-310.pyc deleted file mode 100644 index 1b9ab2f6..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_input_audio_transcription_completed_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_input_audio_transcription_delta_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_input_audio_transcription_delta_event.cpython-310.pyc deleted file mode 100644 index a5373390..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_input_audio_transcription_delta_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_input_audio_transcription_failed_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_input_audio_transcription_failed_event.cpython-310.pyc deleted file mode 100644 index 02fe8cd4..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_input_audio_transcription_failed_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_param.cpython-310.pyc deleted file mode 100644 index a2d010ce..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_retrieve_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_retrieve_event.cpython-310.pyc deleted file mode 100644 index 4d6a0f15..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_retrieve_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_retrieve_event_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_retrieve_event_param.cpython-310.pyc deleted file mode 100644 index 993bf02e..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_retrieve_event_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_truncate_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_truncate_event.cpython-310.pyc deleted file mode 100644 index ee803d2e..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_truncate_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_truncate_event_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_truncate_event_param.cpython-310.pyc deleted file mode 100644 index 2f09f8f3..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_truncate_event_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_truncated_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_truncated_event.cpython-310.pyc deleted file mode 100644 index 580da089..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_truncated_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_with_reference.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_with_reference.cpython-310.pyc deleted file mode 100644 index 9892c908..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_with_reference.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_with_reference_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_with_reference_param.cpython-310.pyc deleted file mode 100644 index 8247b050..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/conversation_item_with_reference_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/error_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/error_event.cpython-310.pyc deleted file mode 100644 index bb19c866..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/error_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_append_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_append_event.cpython-310.pyc deleted file mode 100644 index 243bc726..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_append_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_append_event_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_append_event_param.cpython-310.pyc deleted file mode 100644 index ccbf6f9d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_append_event_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_clear_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_clear_event.cpython-310.pyc deleted file mode 100644 index c1b6a18e..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_clear_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_clear_event_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_clear_event_param.cpython-310.pyc deleted file mode 100644 index 99037706..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_clear_event_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_cleared_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_cleared_event.cpython-310.pyc deleted file mode 100644 index b188de5a..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_cleared_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_commit_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_commit_event.cpython-310.pyc deleted file mode 100644 index 79325e0d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_commit_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_commit_event_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_commit_event_param.cpython-310.pyc deleted file mode 100644 index dab12faa..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_commit_event_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_committed_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_committed_event.cpython-310.pyc deleted file mode 100644 index b09d3789..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_committed_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_speech_started_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_speech_started_event.cpython-310.pyc deleted file mode 100644 index 62e5f52b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_speech_started_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_speech_stopped_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_speech_stopped_event.cpython-310.pyc deleted file mode 100644 index c98baabc..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/input_audio_buffer_speech_stopped_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/rate_limits_updated_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/rate_limits_updated_event.cpython-310.pyc deleted file mode 100644 index 20818be2..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/rate_limits_updated_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/realtime_client_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/realtime_client_event.cpython-310.pyc deleted file mode 100644 index ae3b52ec..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/realtime_client_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/realtime_client_event_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/realtime_client_event_param.cpython-310.pyc deleted file mode 100644 index 40af6a02..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/realtime_client_event_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/realtime_connect_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/realtime_connect_params.cpython-310.pyc deleted file mode 100644 index 698d9d5c..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/realtime_connect_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/realtime_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/realtime_response.cpython-310.pyc deleted file mode 100644 index 3da27462..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/realtime_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/realtime_response_status.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/realtime_response_status.cpython-310.pyc deleted file mode 100644 index b8c516af..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/realtime_response_status.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/realtime_response_usage.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/realtime_response_usage.cpython-310.pyc deleted file mode 100644 index 176927a5..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/realtime_response_usage.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/realtime_server_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/realtime_server_event.cpython-310.pyc deleted file mode 100644 index 1805be3c..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/realtime_server_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_audio_delta_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_audio_delta_event.cpython-310.pyc deleted file mode 100644 index 667aa216..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_audio_delta_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_audio_done_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_audio_done_event.cpython-310.pyc deleted file mode 100644 index 9b31df6b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_audio_done_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_audio_transcript_delta_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_audio_transcript_delta_event.cpython-310.pyc deleted file mode 100644 index 0738a796..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_audio_transcript_delta_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_audio_transcript_done_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_audio_transcript_done_event.cpython-310.pyc deleted file mode 100644 index e804c86a..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_audio_transcript_done_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_cancel_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_cancel_event.cpython-310.pyc deleted file mode 100644 index 67d4bb77..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_cancel_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_cancel_event_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_cancel_event_param.cpython-310.pyc deleted file mode 100644 index f7d5bbfa..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_cancel_event_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_content_part_added_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_content_part_added_event.cpython-310.pyc deleted file mode 100644 index dd60c405..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_content_part_added_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_content_part_done_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_content_part_done_event.cpython-310.pyc deleted file mode 100644 index 45911cdb..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_content_part_done_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_create_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_create_event.cpython-310.pyc deleted file mode 100644 index 15ebe9f4..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_create_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_create_event_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_create_event_param.cpython-310.pyc deleted file mode 100644 index 922d4d58..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_create_event_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_created_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_created_event.cpython-310.pyc deleted file mode 100644 index d60ff8b0..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_created_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_done_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_done_event.cpython-310.pyc deleted file mode 100644 index 51534501..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_done_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_function_call_arguments_delta_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_function_call_arguments_delta_event.cpython-310.pyc deleted file mode 100644 index b29e0272..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_function_call_arguments_delta_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_function_call_arguments_done_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_function_call_arguments_done_event.cpython-310.pyc deleted file mode 100644 index 042fd55a..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_function_call_arguments_done_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_output_item_added_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_output_item_added_event.cpython-310.pyc deleted file mode 100644 index ab09e90f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_output_item_added_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_output_item_done_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_output_item_done_event.cpython-310.pyc deleted file mode 100644 index ceb1499e..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_output_item_done_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_text_delta_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_text_delta_event.cpython-310.pyc deleted file mode 100644 index bd1d6d29..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_text_delta_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_text_done_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_text_done_event.cpython-310.pyc deleted file mode 100644 index 23eeac3b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/response_text_done_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/session.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/session.cpython-310.pyc deleted file mode 100644 index e8929093..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/session.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/session_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/session_create_params.cpython-310.pyc deleted file mode 100644 index 4aa897d6..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/session_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/session_create_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/session_create_response.cpython-310.pyc deleted file mode 100644 index 612f0e6a..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/session_create_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/session_created_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/session_created_event.cpython-310.pyc deleted file mode 100644 index 81f7dd84..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/session_created_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/session_update_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/session_update_event.cpython-310.pyc deleted file mode 100644 index f5698954..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/session_update_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/session_update_event_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/session_update_event_param.cpython-310.pyc deleted file mode 100644 index 31de64c9..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/session_update_event_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/session_updated_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/session_updated_event.cpython-310.pyc deleted file mode 100644 index c27cec11..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/session_updated_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/transcription_session.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/transcription_session.cpython-310.pyc deleted file mode 100644 index ff268727..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/transcription_session.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/transcription_session_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/transcription_session_create_params.cpython-310.pyc deleted file mode 100644 index a73591a6..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/transcription_session_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/transcription_session_update.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/transcription_session_update.cpython-310.pyc deleted file mode 100644 index 7361b38a..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/transcription_session_update.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/transcription_session_update_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/transcription_session_update_param.cpython-310.pyc deleted file mode 100644 index a8d9bfd5..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/transcription_session_update_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/transcription_session_updated_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/transcription_session_updated_event.cpython-310.pyc deleted file mode 100644 index 2dc4c8c6..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/realtime/__pycache__/transcription_session_updated_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index d6916be7..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/annotation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/annotation.cpython-310.pyc deleted file mode 100644 index 5edb9f06..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/annotation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/annotation_delta.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/annotation_delta.cpython-310.pyc deleted file mode 100644 index b38b6ae8..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/annotation_delta.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/file_citation_annotation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/file_citation_annotation.cpython-310.pyc deleted file mode 100644 index 65046a57..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/file_citation_annotation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/file_citation_delta_annotation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/file_citation_delta_annotation.cpython-310.pyc deleted file mode 100644 index 5512e978..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/file_citation_delta_annotation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/file_path_annotation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/file_path_annotation.cpython-310.pyc deleted file mode 100644 index cfbba3b1..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/file_path_annotation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/file_path_delta_annotation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/file_path_delta_annotation.cpython-310.pyc deleted file mode 100644 index 5926312c..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/file_path_delta_annotation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_file.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_file.cpython-310.pyc deleted file mode 100644 index 2e4693a4..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_file.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_file_content_block.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_file_content_block.cpython-310.pyc deleted file mode 100644 index 8f0f547a..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_file_content_block.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_file_content_block_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_file_content_block_param.cpython-310.pyc deleted file mode 100644 index 94407013..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_file_content_block_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_file_delta.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_file_delta.cpython-310.pyc deleted file mode 100644 index 47b25942..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_file_delta.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_file_delta_block.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_file_delta_block.cpython-310.pyc deleted file mode 100644 index f2c16c31..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_file_delta_block.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_file_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_file_param.cpython-310.pyc deleted file mode 100644 index 3e8b1f62..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_file_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_url.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_url.cpython-310.pyc deleted file mode 100644 index cecebc61..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_url.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_url_content_block.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_url_content_block.cpython-310.pyc deleted file mode 100644 index 4b78150c..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_url_content_block.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_url_content_block_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_url_content_block_param.cpython-310.pyc deleted file mode 100644 index 935df74e..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_url_content_block_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_url_delta.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_url_delta.cpython-310.pyc deleted file mode 100644 index 4b17cde8..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_url_delta.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_url_delta_block.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_url_delta_block.cpython-310.pyc deleted file mode 100644 index daf44ff2..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_url_delta_block.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_url_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_url_param.cpython-310.pyc deleted file mode 100644 index 657109cd..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/image_url_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message.cpython-310.pyc deleted file mode 100644 index 7f4004c9..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_content.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_content.cpython-310.pyc deleted file mode 100644 index 813e9e40..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_content.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_content_delta.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_content_delta.cpython-310.pyc deleted file mode 100644 index 608b5835..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_content_delta.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_content_part_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_content_part_param.cpython-310.pyc deleted file mode 100644 index 2ef228c4..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_content_part_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_create_params.cpython-310.pyc deleted file mode 100644 index 5ce7e040..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_deleted.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_deleted.cpython-310.pyc deleted file mode 100644 index b983a675..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_deleted.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_delta.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_delta.cpython-310.pyc deleted file mode 100644 index 66aec831..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_delta.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_delta_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_delta_event.cpython-310.pyc deleted file mode 100644 index 4b835b8b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_delta_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_list_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_list_params.cpython-310.pyc deleted file mode 100644 index 1cbb75b9..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_list_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_update_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_update_params.cpython-310.pyc deleted file mode 100644 index 2e42fe10..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/message_update_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/refusal_content_block.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/refusal_content_block.cpython-310.pyc deleted file mode 100644 index b2b33a62..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/refusal_content_block.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/refusal_delta_block.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/refusal_delta_block.cpython-310.pyc deleted file mode 100644 index 87a60c7c..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/refusal_delta_block.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/required_action_function_tool_call.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/required_action_function_tool_call.cpython-310.pyc deleted file mode 100644 index 0f3aa5a3..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/required_action_function_tool_call.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/run.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/run.cpython-310.pyc deleted file mode 100644 index f7fa70ff..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/run.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/run_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/run_create_params.cpython-310.pyc deleted file mode 100644 index d58b64a5..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/run_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/run_list_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/run_list_params.cpython-310.pyc deleted file mode 100644 index 0db2541f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/run_list_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/run_status.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/run_status.cpython-310.pyc deleted file mode 100644 index 9d6a2f5e..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/run_status.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/run_submit_tool_outputs_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/run_submit_tool_outputs_params.cpython-310.pyc deleted file mode 100644 index febbdb71..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/run_submit_tool_outputs_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/run_update_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/run_update_params.cpython-310.pyc deleted file mode 100644 index 807d1f20..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/run_update_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/text.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/text.cpython-310.pyc deleted file mode 100644 index a865a96c..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/text.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/text_content_block.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/text_content_block.cpython-310.pyc deleted file mode 100644 index 44b257db..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/text_content_block.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/text_content_block_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/text_content_block_param.cpython-310.pyc deleted file mode 100644 index d1ea83c1..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/text_content_block_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/text_delta.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/text_delta.cpython-310.pyc deleted file mode 100644 index 61dc375e..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/text_delta.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/text_delta_block.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/text_delta_block.cpython-310.pyc deleted file mode 100644 index 26c54687..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/__pycache__/text_delta_block.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 2b145592..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/code_interpreter_logs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/code_interpreter_logs.cpython-310.pyc deleted file mode 100644 index c053e5af..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/code_interpreter_logs.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/code_interpreter_output_image.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/code_interpreter_output_image.cpython-310.pyc deleted file mode 100644 index 4d7c39a0..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/code_interpreter_output_image.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/code_interpreter_tool_call.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/code_interpreter_tool_call.cpython-310.pyc deleted file mode 100644 index 0c3f7e61..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/code_interpreter_tool_call.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/code_interpreter_tool_call_delta.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/code_interpreter_tool_call_delta.cpython-310.pyc deleted file mode 100644 index 033ee53a..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/code_interpreter_tool_call_delta.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/file_search_tool_call.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/file_search_tool_call.cpython-310.pyc deleted file mode 100644 index a55622ba..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/file_search_tool_call.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/file_search_tool_call_delta.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/file_search_tool_call_delta.cpython-310.pyc deleted file mode 100644 index dfa29991..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/file_search_tool_call_delta.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/function_tool_call.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/function_tool_call.cpython-310.pyc deleted file mode 100644 index afe13093..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/function_tool_call.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/function_tool_call_delta.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/function_tool_call_delta.cpython-310.pyc deleted file mode 100644 index a85593b9..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/function_tool_call_delta.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/message_creation_step_details.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/message_creation_step_details.cpython-310.pyc deleted file mode 100644 index 1a62bdcc..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/message_creation_step_details.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/run_step.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/run_step.cpython-310.pyc deleted file mode 100644 index 90cd8900..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/run_step.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/run_step_delta.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/run_step_delta.cpython-310.pyc deleted file mode 100644 index da8ce38f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/run_step_delta.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/run_step_delta_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/run_step_delta_event.cpython-310.pyc deleted file mode 100644 index 827b8fb0..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/run_step_delta_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/run_step_delta_message_delta.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/run_step_delta_message_delta.cpython-310.pyc deleted file mode 100644 index a9ef7173..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/run_step_delta_message_delta.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/run_step_include.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/run_step_include.cpython-310.pyc deleted file mode 100644 index d2736ca4..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/run_step_include.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/step_list_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/step_list_params.cpython-310.pyc deleted file mode 100644 index 2b19219f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/step_list_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/step_retrieve_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/step_retrieve_params.cpython-310.pyc deleted file mode 100644 index 556dc7d3..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/step_retrieve_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/tool_call.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/tool_call.cpython-310.pyc deleted file mode 100644 index d7ed1407..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/tool_call.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/tool_call_delta.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/tool_call_delta.cpython-310.pyc deleted file mode 100644 index 8664c111..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/tool_call_delta.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/tool_call_delta_object.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/tool_call_delta_object.cpython-310.pyc deleted file mode 100644 index 570337a7..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/tool_call_delta_object.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/tool_calls_step_details.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/tool_calls_step_details.cpython-310.pyc deleted file mode 100644 index 22c94e27..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/beta/threads/runs/__pycache__/tool_calls_step_details.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index a6384d1c..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion.cpython-310.pyc deleted file mode 100644 index 8999a874..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_assistant_message_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_assistant_message_param.cpython-310.pyc deleted file mode 100644 index de6424ce..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_assistant_message_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_audio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_audio.cpython-310.pyc deleted file mode 100644 index 622d8067..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_audio.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_audio_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_audio_param.cpython-310.pyc deleted file mode 100644 index a10b7029..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_audio_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_chunk.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_chunk.cpython-310.pyc deleted file mode 100644 index d8ffcaab..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_chunk.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_content_part_image_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_content_part_image_param.cpython-310.pyc deleted file mode 100644 index 9762b6f6..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_content_part_image_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_content_part_input_audio_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_content_part_input_audio_param.cpython-310.pyc deleted file mode 100644 index fbcfe788..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_content_part_input_audio_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_content_part_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_content_part_param.cpython-310.pyc deleted file mode 100644 index 7558a0e5..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_content_part_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_content_part_refusal_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_content_part_refusal_param.cpython-310.pyc deleted file mode 100644 index 7e764e81..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_content_part_refusal_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_content_part_text_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_content_part_text_param.cpython-310.pyc deleted file mode 100644 index 7d86846b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_content_part_text_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_deleted.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_deleted.cpython-310.pyc deleted file mode 100644 index 695566ae..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_deleted.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_developer_message_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_developer_message_param.cpython-310.pyc deleted file mode 100644 index cbf60fc2..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_developer_message_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_function_call_option_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_function_call_option_param.cpython-310.pyc deleted file mode 100644 index f0e3e3af..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_function_call_option_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_function_message_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_function_message_param.cpython-310.pyc deleted file mode 100644 index 2e044cab..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_function_message_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_message.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_message.cpython-310.pyc deleted file mode 100644 index b04de4a5..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_message.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_message_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_message_param.cpython-310.pyc deleted file mode 100644 index 97af97dd..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_message_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_message_tool_call.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_message_tool_call.cpython-310.pyc deleted file mode 100644 index 857dcc15..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_message_tool_call.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_message_tool_call_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_message_tool_call_param.cpython-310.pyc deleted file mode 100644 index b8943845..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_message_tool_call_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_modality.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_modality.cpython-310.pyc deleted file mode 100644 index 29196880..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_modality.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_named_tool_choice_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_named_tool_choice_param.cpython-310.pyc deleted file mode 100644 index 1623c340..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_named_tool_choice_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_prediction_content_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_prediction_content_param.cpython-310.pyc deleted file mode 100644 index 3e2aa3a5..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_prediction_content_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_reasoning_effort.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_reasoning_effort.cpython-310.pyc deleted file mode 100644 index 220390f1..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_reasoning_effort.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_role.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_role.cpython-310.pyc deleted file mode 100644 index da314370..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_role.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_store_message.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_store_message.cpython-310.pyc deleted file mode 100644 index e7adff96..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_store_message.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_stream_options_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_stream_options_param.cpython-310.pyc deleted file mode 100644 index 36b36585..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_stream_options_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_system_message_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_system_message_param.cpython-310.pyc deleted file mode 100644 index 6ce98d34..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_system_message_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_token_logprob.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_token_logprob.cpython-310.pyc deleted file mode 100644 index a5aebad7..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_token_logprob.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_tool_choice_option_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_tool_choice_option_param.cpython-310.pyc deleted file mode 100644 index 8bf0a350..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_tool_choice_option_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_tool_message_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_tool_message_param.cpython-310.pyc deleted file mode 100644 index f9ee7f6c..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_tool_message_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_tool_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_tool_param.cpython-310.pyc deleted file mode 100644 index ad706894..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_tool_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_user_message_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_user_message_param.cpython-310.pyc deleted file mode 100644 index aaf99438..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/chat_completion_user_message_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/completion_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/completion_create_params.cpython-310.pyc deleted file mode 100644 index a6186a34..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/completion_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/completion_list_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/completion_list_params.cpython-310.pyc deleted file mode 100644 index 147aef9f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/completion_list_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/completion_update_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/completion_update_params.cpython-310.pyc deleted file mode 100644 index 0a4e26fb..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/completion_update_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/parsed_chat_completion.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/parsed_chat_completion.cpython-310.pyc deleted file mode 100644 index 8d151aa0..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/parsed_chat_completion.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/parsed_function_tool_call.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/parsed_function_tool_call.cpython-310.pyc deleted file mode 100644 index 7edb9b1b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/__pycache__/parsed_function_tool_call.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/completions/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/completions/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 05956735..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/completions/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/chat/completions/__pycache__/message_list_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/chat/completions/__pycache__/message_list_params.cpython-310.pyc deleted file mode 100644 index 42c050c2..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/chat/completions/__pycache__/message_list_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 1dbb86f5..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/create_eval_completions_run_data_source.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/create_eval_completions_run_data_source.cpython-310.pyc deleted file mode 100644 index b1339d84..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/create_eval_completions_run_data_source.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/create_eval_completions_run_data_source_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/create_eval_completions_run_data_source_param.cpython-310.pyc deleted file mode 100644 index 3404e98b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/create_eval_completions_run_data_source_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/create_eval_jsonl_run_data_source.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/create_eval_jsonl_run_data_source.cpython-310.pyc deleted file mode 100644 index 5f7f8cee..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/create_eval_jsonl_run_data_source.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/create_eval_jsonl_run_data_source_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/create_eval_jsonl_run_data_source_param.cpython-310.pyc deleted file mode 100644 index b291daf5..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/create_eval_jsonl_run_data_source_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/eval_api_error.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/eval_api_error.cpython-310.pyc deleted file mode 100644 index d2036cc7..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/eval_api_error.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/run_cancel_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/run_cancel_response.cpython-310.pyc deleted file mode 100644 index d903bcfa..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/run_cancel_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/run_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/run_create_params.cpython-310.pyc deleted file mode 100644 index 6c5681b3..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/run_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/run_create_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/run_create_response.cpython-310.pyc deleted file mode 100644 index 1fe51faa..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/run_create_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/run_delete_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/run_delete_response.cpython-310.pyc deleted file mode 100644 index aa47faa0..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/run_delete_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/run_list_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/run_list_params.cpython-310.pyc deleted file mode 100644 index d4068419..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/run_list_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/run_list_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/run_list_response.cpython-310.pyc deleted file mode 100644 index d0238805..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/run_list_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/run_retrieve_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/run_retrieve_response.cpython-310.pyc deleted file mode 100644 index 72fbfb39..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/evals/__pycache__/run_retrieve_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/evals/runs/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/evals/runs/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index b2be0785..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/evals/runs/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/evals/runs/__pycache__/output_item_list_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/evals/runs/__pycache__/output_item_list_params.cpython-310.pyc deleted file mode 100644 index a8118355..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/evals/runs/__pycache__/output_item_list_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/evals/runs/__pycache__/output_item_list_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/evals/runs/__pycache__/output_item_list_response.cpython-310.pyc deleted file mode 100644 index 7f7f32d3..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/evals/runs/__pycache__/output_item_list_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/evals/runs/__pycache__/output_item_retrieve_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/evals/runs/__pycache__/output_item_retrieve_response.cpython-310.pyc deleted file mode 100644 index 4391c64e..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/evals/runs/__pycache__/output_item_retrieve_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 49e49257..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/fine_tuning_job.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/fine_tuning_job.cpython-310.pyc deleted file mode 100644 index 37c6842a..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/fine_tuning_job.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/fine_tuning_job_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/fine_tuning_job_event.cpython-310.pyc deleted file mode 100644 index 08b7aff8..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/fine_tuning_job_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/fine_tuning_job_integration.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/fine_tuning_job_integration.cpython-310.pyc deleted file mode 100644 index a84bc1ac..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/fine_tuning_job_integration.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/fine_tuning_job_wandb_integration.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/fine_tuning_job_wandb_integration.cpython-310.pyc deleted file mode 100644 index f2de56ff..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/fine_tuning_job_wandb_integration.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/fine_tuning_job_wandb_integration_object.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/fine_tuning_job_wandb_integration_object.cpython-310.pyc deleted file mode 100644 index 52151144..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/fine_tuning_job_wandb_integration_object.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/job_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/job_create_params.cpython-310.pyc deleted file mode 100644 index cb6f1917..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/job_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/job_list_events_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/job_list_events_params.cpython-310.pyc deleted file mode 100644 index 3567e11f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/job_list_events_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/job_list_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/job_list_params.cpython-310.pyc deleted file mode 100644 index 3de485f2..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/__pycache__/job_list_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/checkpoints/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/checkpoints/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 65a451e1..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/checkpoints/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/checkpoints/__pycache__/permission_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/checkpoints/__pycache__/permission_create_params.cpython-310.pyc deleted file mode 100644 index c3f8aec7..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/checkpoints/__pycache__/permission_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/checkpoints/__pycache__/permission_create_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/checkpoints/__pycache__/permission_create_response.cpython-310.pyc deleted file mode 100644 index 92620978..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/checkpoints/__pycache__/permission_create_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/checkpoints/__pycache__/permission_delete_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/checkpoints/__pycache__/permission_delete_response.cpython-310.pyc deleted file mode 100644 index 4a1b1293..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/checkpoints/__pycache__/permission_delete_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/checkpoints/__pycache__/permission_retrieve_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/checkpoints/__pycache__/permission_retrieve_params.cpython-310.pyc deleted file mode 100644 index e7f4b0da..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/checkpoints/__pycache__/permission_retrieve_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/checkpoints/__pycache__/permission_retrieve_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/checkpoints/__pycache__/permission_retrieve_response.cpython-310.pyc deleted file mode 100644 index 5c3a8d85..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/checkpoints/__pycache__/permission_retrieve_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/jobs/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/jobs/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index d2636901..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/jobs/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/jobs/__pycache__/checkpoint_list_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/jobs/__pycache__/checkpoint_list_params.cpython-310.pyc deleted file mode 100644 index b93be5ef..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/jobs/__pycache__/checkpoint_list_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/jobs/__pycache__/fine_tuning_job_checkpoint.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/jobs/__pycache__/fine_tuning_job_checkpoint.cpython-310.pyc deleted file mode 100644 index 227513e2..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/fine_tuning/jobs/__pycache__/fine_tuning_job_checkpoint.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 306a3b44..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/computer_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/computer_tool.cpython-310.pyc deleted file mode 100644 index 6c894ff7..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/computer_tool.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/computer_tool_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/computer_tool_param.cpython-310.pyc deleted file mode 100644 index 807a781c..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/computer_tool_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/easy_input_message.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/easy_input_message.cpython-310.pyc deleted file mode 100644 index 356e9289..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/easy_input_message.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/easy_input_message_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/easy_input_message_param.cpython-310.pyc deleted file mode 100644 index 09dcc1b7..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/easy_input_message_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/file_search_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/file_search_tool.cpython-310.pyc deleted file mode 100644 index c5c57a4e..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/file_search_tool.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/file_search_tool_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/file_search_tool_param.cpython-310.pyc deleted file mode 100644 index 6124a366..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/file_search_tool_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/function_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/function_tool.cpython-310.pyc deleted file mode 100644 index 47deea3d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/function_tool.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/function_tool_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/function_tool_param.cpython-310.pyc deleted file mode 100644 index 8c244059..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/function_tool_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/input_item_list_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/input_item_list_params.cpython-310.pyc deleted file mode 100644 index 5694a916..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/input_item_list_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/parsed_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/parsed_response.cpython-310.pyc deleted file mode 100644 index 9df23112..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/parsed_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response.cpython-310.pyc deleted file mode 100644 index 14c604df..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_audio_delta_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_audio_delta_event.cpython-310.pyc deleted file mode 100644 index def5bec1..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_audio_delta_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_audio_done_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_audio_done_event.cpython-310.pyc deleted file mode 100644 index 93debae2..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_audio_done_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_audio_transcript_delta_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_audio_transcript_delta_event.cpython-310.pyc deleted file mode 100644 index 572b2333..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_audio_transcript_delta_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_audio_transcript_done_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_audio_transcript_done_event.cpython-310.pyc deleted file mode 100644 index 2fe7e52d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_audio_transcript_done_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_code_interpreter_call_code_delta_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_code_interpreter_call_code_delta_event.cpython-310.pyc deleted file mode 100644 index e99d0393..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_code_interpreter_call_code_delta_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_code_interpreter_call_code_done_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_code_interpreter_call_code_done_event.cpython-310.pyc deleted file mode 100644 index b597554d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_code_interpreter_call_code_done_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_code_interpreter_call_completed_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_code_interpreter_call_completed_event.cpython-310.pyc deleted file mode 100644 index c2f5a9b9..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_code_interpreter_call_completed_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_code_interpreter_call_in_progress_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_code_interpreter_call_in_progress_event.cpython-310.pyc deleted file mode 100644 index a34707f0..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_code_interpreter_call_in_progress_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_code_interpreter_call_interpreting_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_code_interpreter_call_interpreting_event.cpython-310.pyc deleted file mode 100644 index 3ebc59aa..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_code_interpreter_call_interpreting_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_code_interpreter_tool_call.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_code_interpreter_tool_call.cpython-310.pyc deleted file mode 100644 index 4b2a62d7..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_code_interpreter_tool_call.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_completed_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_completed_event.cpython-310.pyc deleted file mode 100644 index 2640ab9c..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_completed_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_computer_tool_call.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_computer_tool_call.cpython-310.pyc deleted file mode 100644 index fe2902ed..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_computer_tool_call.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_computer_tool_call_output_item.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_computer_tool_call_output_item.cpython-310.pyc deleted file mode 100644 index 8bad383a..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_computer_tool_call_output_item.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_computer_tool_call_output_screenshot.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_computer_tool_call_output_screenshot.cpython-310.pyc deleted file mode 100644 index a9dc62b1..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_computer_tool_call_output_screenshot.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_computer_tool_call_output_screenshot_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_computer_tool_call_output_screenshot_param.cpython-310.pyc deleted file mode 100644 index ac367a6f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_computer_tool_call_output_screenshot_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_computer_tool_call_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_computer_tool_call_param.cpython-310.pyc deleted file mode 100644 index 4a17b06e..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_computer_tool_call_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_content_part_added_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_content_part_added_event.cpython-310.pyc deleted file mode 100644 index f800a2ba..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_content_part_added_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_content_part_done_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_content_part_done_event.cpython-310.pyc deleted file mode 100644 index 164be95c..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_content_part_done_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_create_params.cpython-310.pyc deleted file mode 100644 index 26c0caa7..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_created_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_created_event.cpython-310.pyc deleted file mode 100644 index 14e60253..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_created_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_error.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_error.cpython-310.pyc deleted file mode 100644 index ee858407..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_error.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_error_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_error_event.cpython-310.pyc deleted file mode 100644 index 32138cb3..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_error_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_failed_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_failed_event.cpython-310.pyc deleted file mode 100644 index 88f90033..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_failed_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_file_search_call_completed_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_file_search_call_completed_event.cpython-310.pyc deleted file mode 100644 index f33008a5..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_file_search_call_completed_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_file_search_call_in_progress_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_file_search_call_in_progress_event.cpython-310.pyc deleted file mode 100644 index f9a47b12..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_file_search_call_in_progress_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_file_search_call_searching_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_file_search_call_searching_event.cpython-310.pyc deleted file mode 100644 index 99b044cd..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_file_search_call_searching_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_file_search_tool_call.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_file_search_tool_call.cpython-310.pyc deleted file mode 100644 index 1f604282..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_file_search_tool_call.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_file_search_tool_call_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_file_search_tool_call_param.cpython-310.pyc deleted file mode 100644 index 14e6df11..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_file_search_tool_call_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_format_text_config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_format_text_config.cpython-310.pyc deleted file mode 100644 index a14befa1..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_format_text_config.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_format_text_config_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_format_text_config_param.cpython-310.pyc deleted file mode 100644 index 933ca918..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_format_text_config_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_format_text_json_schema_config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_format_text_json_schema_config.cpython-310.pyc deleted file mode 100644 index df5d3f52..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_format_text_json_schema_config.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_format_text_json_schema_config_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_format_text_json_schema_config_param.cpython-310.pyc deleted file mode 100644 index fff945f3..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_format_text_json_schema_config_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_call_arguments_delta_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_call_arguments_delta_event.cpython-310.pyc deleted file mode 100644 index a3cb3f6b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_call_arguments_delta_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_call_arguments_done_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_call_arguments_done_event.cpython-310.pyc deleted file mode 100644 index f81152bc..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_call_arguments_done_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_tool_call.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_tool_call.cpython-310.pyc deleted file mode 100644 index aaf41a13..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_tool_call.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_tool_call_item.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_tool_call_item.cpython-310.pyc deleted file mode 100644 index 431de3f1..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_tool_call_item.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_tool_call_output_item.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_tool_call_output_item.cpython-310.pyc deleted file mode 100644 index 432d5f88..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_tool_call_output_item.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_tool_call_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_tool_call_param.cpython-310.pyc deleted file mode 100644 index dd089dd6..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_tool_call_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_web_search.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_web_search.cpython-310.pyc deleted file mode 100644 index cd583510..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_web_search.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_web_search_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_web_search_param.cpython-310.pyc deleted file mode 100644 index 57f233ca..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_function_web_search_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_in_progress_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_in_progress_event.cpython-310.pyc deleted file mode 100644 index d8fa69a2..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_in_progress_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_includable.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_includable.cpython-310.pyc deleted file mode 100644 index f471f38c..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_includable.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_incomplete_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_incomplete_event.cpython-310.pyc deleted file mode 100644 index ca9337d6..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_incomplete_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_content.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_content.cpython-310.pyc deleted file mode 100644 index 213aeeaf..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_content.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_content_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_content_param.cpython-310.pyc deleted file mode 100644 index c1fbe8b8..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_content_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_file.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_file.cpython-310.pyc deleted file mode 100644 index afb2d6d8..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_file.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_file_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_file_param.cpython-310.pyc deleted file mode 100644 index 5bb8f036..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_file_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_image.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_image.cpython-310.pyc deleted file mode 100644 index f70a3184..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_image.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_image_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_image_param.cpython-310.pyc deleted file mode 100644 index fa6b67fb..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_image_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_item_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_item_param.cpython-310.pyc deleted file mode 100644 index bbbee155..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_item_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_message_content_list.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_message_content_list.cpython-310.pyc deleted file mode 100644 index 6dd73fd3..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_message_content_list.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_message_content_list_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_message_content_list_param.cpython-310.pyc deleted file mode 100644 index 6fb064b4..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_message_content_list_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_message_item.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_message_item.cpython-310.pyc deleted file mode 100644 index 07b079c4..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_message_item.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_param.cpython-310.pyc deleted file mode 100644 index 3f65aa85..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_text.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_text.cpython-310.pyc deleted file mode 100644 index 60d0cd94..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_text.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_text_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_text_param.cpython-310.pyc deleted file mode 100644 index 1216612d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_input_text_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_item.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_item.cpython-310.pyc deleted file mode 100644 index 0241098c..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_item.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_item_list.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_item_list.cpython-310.pyc deleted file mode 100644 index aeeacf3f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_item_list.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_item.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_item.cpython-310.pyc deleted file mode 100644 index 22b9b5f2..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_item.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_item_added_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_item_added_event.cpython-310.pyc deleted file mode 100644 index ca8cc57b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_item_added_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_item_done_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_item_done_event.cpython-310.pyc deleted file mode 100644 index 9b5facd2..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_item_done_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_message.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_message.cpython-310.pyc deleted file mode 100644 index 4c0bf534..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_message.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_message_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_message_param.cpython-310.pyc deleted file mode 100644 index a82dcbf7..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_message_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_refusal.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_refusal.cpython-310.pyc deleted file mode 100644 index 505a78a7..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_refusal.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_refusal_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_refusal_param.cpython-310.pyc deleted file mode 100644 index b45820df..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_refusal_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_text.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_text.cpython-310.pyc deleted file mode 100644 index c3083fe7..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_text.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_text_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_text_param.cpython-310.pyc deleted file mode 100644 index cc215286..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_output_text_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_reasoning_item.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_reasoning_item.cpython-310.pyc deleted file mode 100644 index 0686d557..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_reasoning_item.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_reasoning_item_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_reasoning_item_param.cpython-310.pyc deleted file mode 100644 index 774f5feb..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_reasoning_item_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_reasoning_summary_part_added_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_reasoning_summary_part_added_event.cpython-310.pyc deleted file mode 100644 index 5ef057f6..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_reasoning_summary_part_added_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_reasoning_summary_part_done_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_reasoning_summary_part_done_event.cpython-310.pyc deleted file mode 100644 index 80b673cc..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_reasoning_summary_part_done_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_reasoning_summary_text_delta_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_reasoning_summary_text_delta_event.cpython-310.pyc deleted file mode 100644 index 11e03c3f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_reasoning_summary_text_delta_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_reasoning_summary_text_done_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_reasoning_summary_text_done_event.cpython-310.pyc deleted file mode 100644 index d973abd3..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_reasoning_summary_text_done_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_refusal_delta_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_refusal_delta_event.cpython-310.pyc deleted file mode 100644 index 75651923..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_refusal_delta_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_refusal_done_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_refusal_done_event.cpython-310.pyc deleted file mode 100644 index 47051d90..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_refusal_done_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_retrieve_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_retrieve_params.cpython-310.pyc deleted file mode 100644 index f9aa1e9a..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_retrieve_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_status.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_status.cpython-310.pyc deleted file mode 100644 index 2f44dd13..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_status.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_stream_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_stream_event.cpython-310.pyc deleted file mode 100644 index 3908644c..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_stream_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_text_annotation_delta_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_text_annotation_delta_event.cpython-310.pyc deleted file mode 100644 index e4fe6fd7..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_text_annotation_delta_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_text_config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_text_config.cpython-310.pyc deleted file mode 100644 index dafc6754..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_text_config.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_text_config_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_text_config_param.cpython-310.pyc deleted file mode 100644 index 11e45df2..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_text_config_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_text_delta_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_text_delta_event.cpython-310.pyc deleted file mode 100644 index b66c00a0..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_text_delta_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_text_done_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_text_done_event.cpython-310.pyc deleted file mode 100644 index 790370da..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_text_done_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_usage.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_usage.cpython-310.pyc deleted file mode 100644 index 36667b7f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_usage.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_web_search_call_completed_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_web_search_call_completed_event.cpython-310.pyc deleted file mode 100644 index 6a9501cb..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_web_search_call_completed_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_web_search_call_in_progress_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_web_search_call_in_progress_event.cpython-310.pyc deleted file mode 100644 index d9fddaec..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_web_search_call_in_progress_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_web_search_call_searching_event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_web_search_call_searching_event.cpython-310.pyc deleted file mode 100644 index f05570bc..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/response_web_search_call_searching_event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/tool.cpython-310.pyc deleted file mode 100644 index dc990c6d..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/tool.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/tool_choice_function.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/tool_choice_function.cpython-310.pyc deleted file mode 100644 index 1557a5e5..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/tool_choice_function.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/tool_choice_function_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/tool_choice_function_param.cpython-310.pyc deleted file mode 100644 index e434f6f9..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/tool_choice_function_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/tool_choice_options.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/tool_choice_options.cpython-310.pyc deleted file mode 100644 index 8e29f7ae..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/tool_choice_options.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/tool_choice_types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/tool_choice_types.cpython-310.pyc deleted file mode 100644 index 89dccd62..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/tool_choice_types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/tool_choice_types_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/tool_choice_types_param.cpython-310.pyc deleted file mode 100644 index f99a0d60..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/tool_choice_types_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/tool_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/tool_param.cpython-310.pyc deleted file mode 100644 index 8d115c3b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/tool_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/web_search_tool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/web_search_tool.cpython-310.pyc deleted file mode 100644 index d5636e64..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/web_search_tool.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/web_search_tool_param.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/web_search_tool_param.cpython-310.pyc deleted file mode 100644 index f210c043..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/responses/__pycache__/web_search_tool_param.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 71838993..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/all_models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/all_models.cpython-310.pyc deleted file mode 100644 index 75f3a43f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/all_models.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/chat_model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/chat_model.cpython-310.pyc deleted file mode 100644 index 750660ef..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/chat_model.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/comparison_filter.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/comparison_filter.cpython-310.pyc deleted file mode 100644 index 60c877be..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/comparison_filter.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/compound_filter.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/compound_filter.cpython-310.pyc deleted file mode 100644 index cf77ab22..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/compound_filter.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/error_object.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/error_object.cpython-310.pyc deleted file mode 100644 index 4d903a6a..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/error_object.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/function_definition.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/function_definition.cpython-310.pyc deleted file mode 100644 index 2c8266d4..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/function_definition.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/function_parameters.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/function_parameters.cpython-310.pyc deleted file mode 100644 index 6d06d818..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/function_parameters.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/metadata.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/metadata.cpython-310.pyc deleted file mode 100644 index 82cc0074..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/metadata.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/reasoning.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/reasoning.cpython-310.pyc deleted file mode 100644 index 08f4513b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/reasoning.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/reasoning_effort.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/reasoning_effort.cpython-310.pyc deleted file mode 100644 index 688980c2..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/reasoning_effort.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/response_format_json_object.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/response_format_json_object.cpython-310.pyc deleted file mode 100644 index 25f99e3a..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/response_format_json_object.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/response_format_json_schema.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/response_format_json_schema.cpython-310.pyc deleted file mode 100644 index 5f9643b3..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/response_format_json_schema.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/response_format_text.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/response_format_text.cpython-310.pyc deleted file mode 100644 index 54596084..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/response_format_text.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/responses_model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/responses_model.cpython-310.pyc deleted file mode 100644 index 9cf40bdb..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared/__pycache__/responses_model.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index ec9e9294..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/chat_model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/chat_model.cpython-310.pyc deleted file mode 100644 index a8f08e2f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/chat_model.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/comparison_filter.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/comparison_filter.cpython-310.pyc deleted file mode 100644 index 7e90d1fd..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/comparison_filter.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/compound_filter.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/compound_filter.cpython-310.pyc deleted file mode 100644 index 9b656400..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/compound_filter.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/function_definition.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/function_definition.cpython-310.pyc deleted file mode 100644 index 53503db8..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/function_definition.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/function_parameters.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/function_parameters.cpython-310.pyc deleted file mode 100644 index 5e737b81..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/function_parameters.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/metadata.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/metadata.cpython-310.pyc deleted file mode 100644 index 2fab40f8..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/metadata.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/reasoning.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/reasoning.cpython-310.pyc deleted file mode 100644 index a184c0bc..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/reasoning.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/reasoning_effort.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/reasoning_effort.cpython-310.pyc deleted file mode 100644 index 5695633e..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/reasoning_effort.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/response_format_json_object.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/response_format_json_object.cpython-310.pyc deleted file mode 100644 index c10df812..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/response_format_json_object.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/response_format_json_schema.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/response_format_json_schema.cpython-310.pyc deleted file mode 100644 index 7b75493f..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/response_format_json_schema.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/response_format_text.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/response_format_text.cpython-310.pyc deleted file mode 100644 index 52a75072..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/response_format_text.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/responses_model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/responses_model.cpython-310.pyc deleted file mode 100644 index 3115a8f8..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/shared_params/__pycache__/responses_model.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/uploads/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/uploads/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 1309a7c9..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/uploads/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/uploads/__pycache__/part_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/uploads/__pycache__/part_create_params.cpython-310.pyc deleted file mode 100644 index bff4a897..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/uploads/__pycache__/part_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/uploads/__pycache__/upload_part.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/uploads/__pycache__/upload_part.cpython-310.pyc deleted file mode 100644 index 4910930e..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/uploads/__pycache__/upload_part.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 2fa7cf52..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/file_batch_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/file_batch_create_params.cpython-310.pyc deleted file mode 100644 index 53dd8733..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/file_batch_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/file_batch_list_files_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/file_batch_list_files_params.cpython-310.pyc deleted file mode 100644 index 6763d0a1..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/file_batch_list_files_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/file_content_response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/file_content_response.cpython-310.pyc deleted file mode 100644 index b48f2053..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/file_content_response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/file_create_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/file_create_params.cpython-310.pyc deleted file mode 100644 index 98d99be9..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/file_create_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/file_list_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/file_list_params.cpython-310.pyc deleted file mode 100644 index 9b1e213b..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/file_list_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/file_update_params.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/file_update_params.cpython-310.pyc deleted file mode 100644 index 24ad2b99..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/file_update_params.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/vector_store_file.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/vector_store_file.cpython-310.pyc deleted file mode 100644 index dfe2abb7..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/vector_store_file.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/vector_store_file_batch.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/vector_store_file_batch.cpython-310.pyc deleted file mode 100644 index 008b7696..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/vector_store_file_batch.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/vector_store_file_deleted.cpython-310.pyc b/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/vector_store_file_deleted.cpython-310.pyc deleted file mode 100644 index 654d3c66..00000000 Binary files a/.venv/lib/python3.10/site-packages/openai/types/vector_stores/__pycache__/vector_store_file_deleted.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/opentelemetry/attributes/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/opentelemetry/attributes/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 5256f9cf..00000000 Binary files a/.venv/lib/python3.10/site-packages/opentelemetry/attributes/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/opentelemetry/context/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/opentelemetry/context/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 2287a821..00000000 Binary files a/.venv/lib/python3.10/site-packages/opentelemetry/context/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/opentelemetry/context/__pycache__/context.cpython-310.pyc b/.venv/lib/python3.10/site-packages/opentelemetry/context/__pycache__/context.cpython-310.pyc deleted file mode 100644 index 1fc5fcf1..00000000 Binary files a/.venv/lib/python3.10/site-packages/opentelemetry/context/__pycache__/context.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/opentelemetry/context/__pycache__/contextvars_context.cpython-310.pyc b/.venv/lib/python3.10/site-packages/opentelemetry/context/__pycache__/contextvars_context.cpython-310.pyc deleted file mode 100644 index 05c2b46d..00000000 Binary files a/.venv/lib/python3.10/site-packages/opentelemetry/context/__pycache__/contextvars_context.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/opentelemetry/environment_variables/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/opentelemetry/environment_variables/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index dc3e8f34..00000000 Binary files a/.venv/lib/python3.10/site-packages/opentelemetry/environment_variables/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/opentelemetry/trace/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/opentelemetry/trace/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 34a5eb40..00000000 Binary files a/.venv/lib/python3.10/site-packages/opentelemetry/trace/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/opentelemetry/trace/__pycache__/span.cpython-310.pyc b/.venv/lib/python3.10/site-packages/opentelemetry/trace/__pycache__/span.cpython-310.pyc deleted file mode 100644 index e362e117..00000000 Binary files a/.venv/lib/python3.10/site-packages/opentelemetry/trace/__pycache__/span.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/opentelemetry/trace/__pycache__/status.cpython-310.pyc b/.venv/lib/python3.10/site-packages/opentelemetry/trace/__pycache__/status.cpython-310.pyc deleted file mode 100644 index 38e66a34..00000000 Binary files a/.venv/lib/python3.10/site-packages/opentelemetry/trace/__pycache__/status.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/opentelemetry/trace/propagation/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/opentelemetry/trace/propagation/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index ba4cedb8..00000000 Binary files a/.venv/lib/python3.10/site-packages/opentelemetry/trace/propagation/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/opentelemetry/util/__pycache__/_decorator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/opentelemetry/util/__pycache__/_decorator.cpython-310.pyc deleted file mode 100644 index c8f798e0..00000000 Binary files a/.venv/lib/python3.10/site-packages/opentelemetry/util/__pycache__/_decorator.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/opentelemetry/util/__pycache__/_importlib_metadata.cpython-310.pyc b/.venv/lib/python3.10/site-packages/opentelemetry/util/__pycache__/_importlib_metadata.cpython-310.pyc deleted file mode 100644 index 62b711d4..00000000 Binary files a/.venv/lib/python3.10/site-packages/opentelemetry/util/__pycache__/_importlib_metadata.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/opentelemetry/util/__pycache__/_once.cpython-310.pyc b/.venv/lib/python3.10/site-packages/opentelemetry/util/__pycache__/_once.cpython-310.pyc deleted file mode 100644 index 096973cb..00000000 Binary files a/.venv/lib/python3.10/site-packages/opentelemetry/util/__pycache__/_once.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/opentelemetry/util/__pycache__/_providers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/opentelemetry/util/__pycache__/_providers.cpython-310.pyc deleted file mode 100644 index 4e875c0a..00000000 Binary files a/.venv/lib/python3.10/site-packages/opentelemetry/util/__pycache__/_providers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/opentelemetry/util/__pycache__/types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/opentelemetry/util/__pycache__/types.cpython-310.pyc deleted file mode 100644 index d49796ac..00000000 Binary files a/.venv/lib/python3.10/site-packages/opentelemetry/util/__pycache__/types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/packaging/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/packaging/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 86e53285..00000000 Binary files a/.venv/lib/python3.10/site-packages/packaging/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/packaging/__pycache__/_structures.cpython-310.pyc b/.venv/lib/python3.10/site-packages/packaging/__pycache__/_structures.cpython-310.pyc deleted file mode 100644 index 4e4522d5..00000000 Binary files a/.venv/lib/python3.10/site-packages/packaging/__pycache__/_structures.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/packaging/__pycache__/version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/packaging/__pycache__/version.cpython-310.pyc deleted file mode 100644 index 3bc23ee4..00000000 Binary files a/.venv/lib/python3.10/site-packages/packaging/__pycache__/version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/propcache/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/propcache/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 0cf75102..00000000 Binary files a/.venv/lib/python3.10/site-packages/propcache/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/propcache/__pycache__/_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/propcache/__pycache__/_helpers.cpython-310.pyc deleted file mode 100644 index 50728e21..00000000 Binary files a/.venv/lib/python3.10/site-packages/propcache/__pycache__/_helpers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/propcache/__pycache__/api.cpython-310.pyc b/.venv/lib/python3.10/site-packages/propcache/__pycache__/api.cpython-310.pyc deleted file mode 100644 index 3c83085e..00000000 Binary files a/.venv/lib/python3.10/site-packages/propcache/__pycache__/api.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 3b8a5bd8..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/__pycache__/_file_info.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/__pycache__/_file_info.cpython-310.pyc deleted file mode 100644 index 8d9386bd..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/__pycache__/_file_info.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/__pycache__/_package_info.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/__pycache__/_package_info.cpython-310.pyc deleted file mode 100644 index 85b548b1..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/__pycache__/_package_info.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/__pycache__/datetime_helpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/__pycache__/datetime_helpers.cpython-310.pyc deleted file mode 100644 index 4f5b5356..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/__pycache__/datetime_helpers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/__pycache__/enums.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/__pycache__/enums.cpython-310.pyc deleted file mode 100644 index 36f0cd53..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/__pycache__/enums.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/__pycache__/fields.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/__pycache__/fields.cpython-310.pyc deleted file mode 100644 index 6efa6a63..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/__pycache__/fields.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/__pycache__/message.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/__pycache__/message.cpython-310.pyc deleted file mode 100644 index a61782b8..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/__pycache__/message.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/__pycache__/modules.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/__pycache__/modules.cpython-310.pyc deleted file mode 100644 index 0e0ce585..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/__pycache__/modules.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/__pycache__/primitives.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/__pycache__/primitives.cpython-310.pyc deleted file mode 100644 index a18877a9..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/__pycache__/primitives.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/__pycache__/utils.cpython-310.pyc deleted file mode 100644 index 45f614d1..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/__pycache__/utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/__pycache__/version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/__pycache__/version.cpython-310.pyc deleted file mode 100644 index 63496bd3..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/__pycache__/version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/marshal/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/marshal/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 47c0e18e..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/marshal/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/marshal/__pycache__/compat.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/marshal/__pycache__/compat.cpython-310.pyc deleted file mode 100644 index d62a8390..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/marshal/__pycache__/compat.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/marshal/__pycache__/marshal.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/marshal/__pycache__/marshal.cpython-310.pyc deleted file mode 100644 index c75d3f10..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/marshal/__pycache__/marshal.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/marshal/collections/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/marshal/collections/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 8eda76be..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/marshal/collections/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/marshal/collections/__pycache__/maps.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/marshal/collections/__pycache__/maps.cpython-310.pyc deleted file mode 100644 index be834cb3..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/marshal/collections/__pycache__/maps.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/marshal/collections/__pycache__/repeated.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/marshal/collections/__pycache__/repeated.cpython-310.pyc deleted file mode 100644 index f7d256c9..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/marshal/collections/__pycache__/repeated.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 489c3e4c..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/bytes.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/bytes.cpython-310.pyc deleted file mode 100644 index 0417b686..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/bytes.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/dates.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/dates.cpython-310.pyc deleted file mode 100644 index 156706d8..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/dates.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/enums.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/enums.cpython-310.pyc deleted file mode 100644 index 7e11bc0c..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/enums.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/field_mask.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/field_mask.cpython-310.pyc deleted file mode 100644 index 96b27aa5..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/field_mask.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/message.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/message.cpython-310.pyc deleted file mode 100644 index 64430352..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/message.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/stringy_numbers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/stringy_numbers.cpython-310.pyc deleted file mode 100644 index 8649ac33..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/stringy_numbers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/struct.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/struct.cpython-310.pyc deleted file mode 100644 index 5e2ac0a2..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/struct.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/wrappers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/wrappers.cpython-310.pyc deleted file mode 100644 index a5f46d18..00000000 Binary files a/.venv/lib/python3.10/site-packages/proto/marshal/rules/__pycache__/wrappers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/psycopg2/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/psycopg2/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 0ade609f..00000000 Binary files a/.venv/lib/python3.10/site-packages/psycopg2/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/psycopg2/__pycache__/_ipaddress.cpython-310.pyc b/.venv/lib/python3.10/site-packages/psycopg2/__pycache__/_ipaddress.cpython-310.pyc deleted file mode 100644 index 20ab17ca..00000000 Binary files a/.venv/lib/python3.10/site-packages/psycopg2/__pycache__/_ipaddress.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/psycopg2/__pycache__/_json.cpython-310.pyc b/.venv/lib/python3.10/site-packages/psycopg2/__pycache__/_json.cpython-310.pyc deleted file mode 100644 index e6a72df7..00000000 Binary files a/.venv/lib/python3.10/site-packages/psycopg2/__pycache__/_json.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/psycopg2/__pycache__/_range.cpython-310.pyc b/.venv/lib/python3.10/site-packages/psycopg2/__pycache__/_range.cpython-310.pyc deleted file mode 100644 index 81d9cf3e..00000000 Binary files a/.venv/lib/python3.10/site-packages/psycopg2/__pycache__/_range.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/psycopg2/__pycache__/errors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/psycopg2/__pycache__/errors.cpython-310.pyc deleted file mode 100644 index 3ab5d8c2..00000000 Binary files a/.venv/lib/python3.10/site-packages/psycopg2/__pycache__/errors.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/psycopg2/__pycache__/extensions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/psycopg2/__pycache__/extensions.cpython-310.pyc deleted file mode 100644 index 5aa271fb..00000000 Binary files a/.venv/lib/python3.10/site-packages/psycopg2/__pycache__/extensions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/psycopg2/__pycache__/extras.cpython-310.pyc b/.venv/lib/python3.10/site-packages/psycopg2/__pycache__/extras.cpython-310.pyc deleted file mode 100644 index 501fbdee..00000000 Binary files a/.venv/lib/python3.10/site-packages/psycopg2/__pycache__/extras.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 864d6f84..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/_migration.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/__pycache__/_migration.cpython-310.pyc deleted file mode 100644 index 4f777be0..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/_migration.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/alias_generators.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/__pycache__/alias_generators.cpython-310.pyc deleted file mode 100644 index bf85fec0..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/alias_generators.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/aliases.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/__pycache__/aliases.cpython-310.pyc deleted file mode 100644 index d7082dcb..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/aliases.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/annotated_handlers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/__pycache__/annotated_handlers.cpython-310.pyc deleted file mode 100644 index b853580c..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/annotated_handlers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/color.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/__pycache__/color.cpython-310.pyc deleted file mode 100644 index 4704e648..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/color.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/__pycache__/config.cpython-310.pyc deleted file mode 100644 index 40dbf088..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/config.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/dataclasses.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/__pycache__/dataclasses.cpython-310.pyc deleted file mode 100644 index 5a48219b..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/dataclasses.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/errors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/__pycache__/errors.cpython-310.pyc deleted file mode 100644 index 6d2107e1..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/errors.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/fields.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/__pycache__/fields.cpython-310.pyc deleted file mode 100644 index 7afb8c68..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/fields.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/functional_serializers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/__pycache__/functional_serializers.cpython-310.pyc deleted file mode 100644 index b5f615bd..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/functional_serializers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/functional_validators.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/__pycache__/functional_validators.cpython-310.pyc deleted file mode 100644 index 6e9a9798..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/functional_validators.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/json.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/__pycache__/json.cpython-310.pyc deleted file mode 100644 index 91f557c7..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/json.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/json_schema.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/__pycache__/json_schema.cpython-310.pyc deleted file mode 100644 index ca331765..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/json_schema.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/main.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/__pycache__/main.cpython-310.pyc deleted file mode 100644 index af86dc92..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/main.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/networks.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/__pycache__/networks.cpython-310.pyc deleted file mode 100644 index 7da49a04..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/networks.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/root_model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/__pycache__/root_model.cpython-310.pyc deleted file mode 100644 index 5a3fc69d..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/root_model.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/type_adapter.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/__pycache__/type_adapter.cpython-310.pyc deleted file mode 100644 index 70ac1e12..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/type_adapter.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/__pycache__/types.cpython-310.pyc deleted file mode 100644 index d67453ed..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/validate_call_decorator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/__pycache__/validate_call_decorator.cpython-310.pyc deleted file mode 100644 index a9184b1f..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/validate_call_decorator.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/__pycache__/version.cpython-310.pyc deleted file mode 100644 index cfc54b0d..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/warnings.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/__pycache__/warnings.cpython-310.pyc deleted file mode 100644 index 6b5eeb04..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/__pycache__/warnings.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index da0d618a..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_config.cpython-310.pyc deleted file mode 100644 index 59cc1571..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_config.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_core_metadata.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_core_metadata.cpython-310.pyc deleted file mode 100644 index 105a9d2d..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_core_metadata.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_core_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_core_utils.cpython-310.pyc deleted file mode 100644 index 82769a70..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_core_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_dataclasses.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_dataclasses.cpython-310.pyc deleted file mode 100644 index 6dde792f..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_dataclasses.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_decorators.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_decorators.cpython-310.pyc deleted file mode 100644 index 2a7056eb..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_decorators.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_decorators_v1.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_decorators_v1.cpython-310.pyc deleted file mode 100644 index 819553f4..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_decorators_v1.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_discriminated_union.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_discriminated_union.cpython-310.pyc deleted file mode 100644 index 45a00fd5..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_discriminated_union.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_docs_extraction.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_docs_extraction.cpython-310.pyc deleted file mode 100644 index 454793e6..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_docs_extraction.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_fields.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_fields.cpython-310.pyc deleted file mode 100644 index f327f454..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_fields.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_forward_ref.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_forward_ref.cpython-310.pyc deleted file mode 100644 index 2077a484..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_forward_ref.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_generate_schema.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_generate_schema.cpython-310.pyc deleted file mode 100644 index 7e87ebce..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_generate_schema.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_generics.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_generics.cpython-310.pyc deleted file mode 100644 index 80cd7526..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_generics.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_import_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_import_utils.cpython-310.pyc deleted file mode 100644 index 7b634d84..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_import_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_internal_dataclass.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_internal_dataclass.cpython-310.pyc deleted file mode 100644 index 04c26587..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_internal_dataclass.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_known_annotated_metadata.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_known_annotated_metadata.cpython-310.pyc deleted file mode 100644 index b98edd2a..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_known_annotated_metadata.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_mock_val_ser.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_mock_val_ser.cpython-310.pyc deleted file mode 100644 index 2f0a3c7f..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_mock_val_ser.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_model_construction.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_model_construction.cpython-310.pyc deleted file mode 100644 index 88344902..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_model_construction.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_namespace_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_namespace_utils.cpython-310.pyc deleted file mode 100644 index c2dc930e..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_namespace_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_repr.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_repr.cpython-310.pyc deleted file mode 100644 index a3b8ee4c..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_repr.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_schema_gather.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_schema_gather.cpython-310.pyc deleted file mode 100644 index c46bde2b..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_schema_gather.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_schema_generation_shared.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_schema_generation_shared.cpython-310.pyc deleted file mode 100644 index b5ce0c99..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_schema_generation_shared.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_serializers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_serializers.cpython-310.pyc deleted file mode 100644 index 90e7ab7c..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_serializers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_signature.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_signature.cpython-310.pyc deleted file mode 100644 index c0b4358f..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_signature.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_typing_extra.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_typing_extra.cpython-310.pyc deleted file mode 100644 index 526a4784..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_typing_extra.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_utils.cpython-310.pyc deleted file mode 100644 index 0bbf5355..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_validate_call.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_validate_call.cpython-310.pyc deleted file mode 100644 index 1adb8737..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_validate_call.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_validators.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_validators.cpython-310.pyc deleted file mode 100644 index 4fb1836b..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/_internal/__pycache__/_validators.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/deprecated/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/deprecated/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 9f0e3b0f..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/deprecated/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/deprecated/__pycache__/class_validators.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/deprecated/__pycache__/class_validators.cpython-310.pyc deleted file mode 100644 index 816540d1..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/deprecated/__pycache__/class_validators.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/plugin/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/plugin/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index e2b99b5c..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/plugin/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/plugin/__pycache__/_loader.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/plugin/__pycache__/_loader.cpython-310.pyc deleted file mode 100644 index ea964e63..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/plugin/__pycache__/_loader.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/plugin/__pycache__/_schema_validator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/plugin/__pycache__/_schema_validator.cpython-310.pyc deleted file mode 100644 index 6672da87..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/plugin/__pycache__/_schema_validator.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 4826d604..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/annotated_types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/annotated_types.cpython-310.pyc deleted file mode 100644 index 39e856a5..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/annotated_types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/class_validators.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/class_validators.cpython-310.pyc deleted file mode 100644 index fcd399e3..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/class_validators.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/color.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/color.cpython-310.pyc deleted file mode 100644 index 0ca18eaf..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/color.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/config.cpython-310.pyc deleted file mode 100644 index 3075031e..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/config.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/dataclasses.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/dataclasses.cpython-310.pyc deleted file mode 100644 index b8e743da..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/dataclasses.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/datetime_parse.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/datetime_parse.cpython-310.pyc deleted file mode 100644 index 0b8b2463..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/datetime_parse.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/decorator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/decorator.cpython-310.pyc deleted file mode 100644 index 0682ae48..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/decorator.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/env_settings.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/env_settings.cpython-310.pyc deleted file mode 100644 index e35fc4c0..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/env_settings.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/error_wrappers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/error_wrappers.cpython-310.pyc deleted file mode 100644 index e6e94cb6..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/error_wrappers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/errors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/errors.cpython-310.pyc deleted file mode 100644 index 3f905f5f..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/errors.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/fields.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/fields.cpython-310.pyc deleted file mode 100644 index 36325ed5..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/fields.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/json.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/json.cpython-310.pyc deleted file mode 100644 index 1d2941a4..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/json.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/main.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/main.cpython-310.pyc deleted file mode 100644 index eee1e31a..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/main.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/networks.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/networks.cpython-310.pyc deleted file mode 100644 index d7201a13..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/networks.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/parse.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/parse.cpython-310.pyc deleted file mode 100644 index fb610f6b..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/parse.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/schema.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/schema.cpython-310.pyc deleted file mode 100644 index 60c74f59..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/schema.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/tools.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/tools.cpython-310.pyc deleted file mode 100644 index ebb78151..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/tools.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/types.cpython-310.pyc deleted file mode 100644 index 61a5aed6..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/typing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/typing.cpython-310.pyc deleted file mode 100644 index 83dd3f40..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/typing.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/utils.cpython-310.pyc deleted file mode 100644 index 7055ef91..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/validators.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/validators.cpython-310.pyc deleted file mode 100644 index 97f3050f..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/validators.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/version.cpython-310.pyc deleted file mode 100644 index ec5ce274..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic/v1/__pycache__/version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_core/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_core/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 7d844817..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_core/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_core/__pycache__/core_schema.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_core/__pycache__/core_schema.cpython-310.pyc deleted file mode 100644 index 17d4185a..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_core/__pycache__/core_schema.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_settings/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_settings/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 7b2453d7..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_settings/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_settings/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_settings/__pycache__/exceptions.cpython-310.pyc deleted file mode 100644 index ad8a786c..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_settings/__pycache__/exceptions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_settings/__pycache__/main.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_settings/__pycache__/main.cpython-310.pyc deleted file mode 100644 index 50612320..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_settings/__pycache__/main.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_settings/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_settings/__pycache__/utils.cpython-310.pyc deleted file mode 100644 index 58a4bc10..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_settings/__pycache__/utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_settings/__pycache__/version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_settings/__pycache__/version.cpython-310.pyc deleted file mode 100644 index d5f4b6cb..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_settings/__pycache__/version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_settings/sources/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index f215491a..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_settings/sources/__pycache__/base.cpython-310.pyc deleted file mode 100644 index 0cc157f1..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/__pycache__/types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_settings/sources/__pycache__/types.cpython-310.pyc deleted file mode 100644 index aa80903e..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/__pycache__/types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_settings/sources/__pycache__/utils.cpython-310.pyc deleted file mode 100644 index a8270359..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/__pycache__/utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 3f3d79f1..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/aws.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/aws.cpython-310.pyc deleted file mode 100644 index 06f65936..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/aws.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/azure.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/azure.cpython-310.pyc deleted file mode 100644 index fbe44aa3..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/azure.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/cli.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/cli.cpython-310.pyc deleted file mode 100644 index 8c1cf616..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/cli.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/dotenv.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/dotenv.cpython-310.pyc deleted file mode 100644 index b093e411..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/dotenv.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/env.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/env.cpython-310.pyc deleted file mode 100644 index 9acfa33d..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/env.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/gcp.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/gcp.cpython-310.pyc deleted file mode 100644 index 9924b020..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/gcp.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/json.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/json.cpython-310.pyc deleted file mode 100644 index f2b918be..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/json.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/pyproject.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/pyproject.cpython-310.pyc deleted file mode 100644 index 0eb6bfc3..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/pyproject.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/secrets.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/secrets.cpython-310.pyc deleted file mode 100644 index a953dec2..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/secrets.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/toml.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/toml.cpython-310.pyc deleted file mode 100644 index 1a3e7c11..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/toml.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/yaml.cpython-310.pyc b/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/yaml.cpython-310.pyc deleted file mode 100644 index 72e3afd1..00000000 Binary files a/.venv/lib/python3.10/site-packages/pydantic_settings/sources/providers/__pycache__/yaml.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/regex/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/regex/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 86522d3c..00000000 Binary files a/.venv/lib/python3.10/site-packages/regex/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/regex/__pycache__/_regex_core.cpython-310.pyc b/.venv/lib/python3.10/site-packages/regex/__pycache__/_regex_core.cpython-310.pyc deleted file mode 100644 index d976f397..00000000 Binary files a/.venv/lib/python3.10/site-packages/regex/__pycache__/_regex_core.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/regex/__pycache__/regex.cpython-310.pyc b/.venv/lib/python3.10/site-packages/regex/__pycache__/regex.cpython-310.pyc deleted file mode 100644 index bedc0dc6..00000000 Binary files a/.venv/lib/python3.10/site-packages/regex/__pycache__/regex.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/requests/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/requests/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index ec1c40d7..00000000 Binary files a/.venv/lib/python3.10/site-packages/requests/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/requests/__pycache__/__version__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/requests/__pycache__/__version__.cpython-310.pyc deleted file mode 100644 index d0058fd2..00000000 Binary files a/.venv/lib/python3.10/site-packages/requests/__pycache__/__version__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/requests/__pycache__/_internal_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/requests/__pycache__/_internal_utils.cpython-310.pyc deleted file mode 100644 index 4b4eea10..00000000 Binary files a/.venv/lib/python3.10/site-packages/requests/__pycache__/_internal_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/requests/__pycache__/adapters.cpython-310.pyc b/.venv/lib/python3.10/site-packages/requests/__pycache__/adapters.cpython-310.pyc deleted file mode 100644 index 550dc47f..00000000 Binary files a/.venv/lib/python3.10/site-packages/requests/__pycache__/adapters.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/requests/__pycache__/api.cpython-310.pyc b/.venv/lib/python3.10/site-packages/requests/__pycache__/api.cpython-310.pyc deleted file mode 100644 index 2e03d0dc..00000000 Binary files a/.venv/lib/python3.10/site-packages/requests/__pycache__/api.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/requests/__pycache__/auth.cpython-310.pyc b/.venv/lib/python3.10/site-packages/requests/__pycache__/auth.cpython-310.pyc deleted file mode 100644 index a473f6f2..00000000 Binary files a/.venv/lib/python3.10/site-packages/requests/__pycache__/auth.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/requests/__pycache__/certs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/requests/__pycache__/certs.cpython-310.pyc deleted file mode 100644 index 7b5161a2..00000000 Binary files a/.venv/lib/python3.10/site-packages/requests/__pycache__/certs.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/requests/__pycache__/compat.cpython-310.pyc b/.venv/lib/python3.10/site-packages/requests/__pycache__/compat.cpython-310.pyc deleted file mode 100644 index 845d1f9a..00000000 Binary files a/.venv/lib/python3.10/site-packages/requests/__pycache__/compat.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/requests/__pycache__/cookies.cpython-310.pyc b/.venv/lib/python3.10/site-packages/requests/__pycache__/cookies.cpython-310.pyc deleted file mode 100644 index 21dd41b0..00000000 Binary files a/.venv/lib/python3.10/site-packages/requests/__pycache__/cookies.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/requests/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/requests/__pycache__/exceptions.cpython-310.pyc deleted file mode 100644 index 0597d404..00000000 Binary files a/.venv/lib/python3.10/site-packages/requests/__pycache__/exceptions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/requests/__pycache__/hooks.cpython-310.pyc b/.venv/lib/python3.10/site-packages/requests/__pycache__/hooks.cpython-310.pyc deleted file mode 100644 index aa2d62b9..00000000 Binary files a/.venv/lib/python3.10/site-packages/requests/__pycache__/hooks.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/requests/__pycache__/models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/requests/__pycache__/models.cpython-310.pyc deleted file mode 100644 index 2e4d8157..00000000 Binary files a/.venv/lib/python3.10/site-packages/requests/__pycache__/models.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/requests/__pycache__/packages.cpython-310.pyc b/.venv/lib/python3.10/site-packages/requests/__pycache__/packages.cpython-310.pyc deleted file mode 100644 index 24e9b0cf..00000000 Binary files a/.venv/lib/python3.10/site-packages/requests/__pycache__/packages.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/requests/__pycache__/sessions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/requests/__pycache__/sessions.cpython-310.pyc deleted file mode 100644 index acbe385e..00000000 Binary files a/.venv/lib/python3.10/site-packages/requests/__pycache__/sessions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/requests/__pycache__/status_codes.cpython-310.pyc b/.venv/lib/python3.10/site-packages/requests/__pycache__/status_codes.cpython-310.pyc deleted file mode 100644 index 91c2ce63..00000000 Binary files a/.venv/lib/python3.10/site-packages/requests/__pycache__/status_codes.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/requests/__pycache__/structures.cpython-310.pyc b/.venv/lib/python3.10/site-packages/requests/__pycache__/structures.cpython-310.pyc deleted file mode 100644 index 1f22b586..00000000 Binary files a/.venv/lib/python3.10/site-packages/requests/__pycache__/structures.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/requests/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/requests/__pycache__/utils.cpython-310.pyc deleted file mode 100644 index 30459525..00000000 Binary files a/.venv/lib/python3.10/site-packages/requests/__pycache__/utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sniffio/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sniffio/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 8ffc3976..00000000 Binary files a/.venv/lib/python3.10/site-packages/sniffio/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sniffio/__pycache__/_impl.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sniffio/__pycache__/_impl.cpython-310.pyc deleted file mode 100644 index 51895e70..00000000 Binary files a/.venv/lib/python3.10/site-packages/sniffio/__pycache__/_impl.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sniffio/__pycache__/_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sniffio/__pycache__/_version.cpython-310.pyc deleted file mode 100644 index 67b2f50b..00000000 Binary files a/.venv/lib/python3.10/site-packages/sniffio/__pycache__/_version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 17b7fa06..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/__pycache__/exc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/__pycache__/exc.cpython-310.pyc deleted file mode 100644 index 4d81ac4b..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/__pycache__/exc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/__pycache__/inspection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/__pycache__/inspection.cpython-310.pyc deleted file mode 100644 index 4cddd382..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/__pycache__/inspection.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/__pycache__/log.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/__pycache__/log.cpython-310.pyc deleted file mode 100644 index f209bb36..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/__pycache__/log.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/__pycache__/schema.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/__pycache__/schema.cpython-310.pyc deleted file mode 100644 index 4e31edb8..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/__pycache__/schema.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/__pycache__/types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/__pycache__/types.cpython-310.pyc deleted file mode 100644 index b9993bdb..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/__pycache__/types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/cyextension/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/cyextension/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index d90224e2..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/cyextension/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index f504dddc..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/__pycache__/_typing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/__pycache__/_typing.cpython-310.pyc deleted file mode 100644 index 721d7b7e..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/__pycache__/_typing.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index c4db9043..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/_psycopg_common.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/_psycopg_common.cpython-310.pyc deleted file mode 100644 index 3a9213c6..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/_psycopg_common.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/array.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/array.cpython-310.pyc deleted file mode 100644 index 9420eb4a..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/array.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/asyncpg.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/asyncpg.cpython-310.pyc deleted file mode 100644 index 0bcd129e..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/asyncpg.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/base.cpython-310.pyc deleted file mode 100644 index aeff85fa..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/dml.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/dml.cpython-310.pyc deleted file mode 100644 index 2080470a..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/dml.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/ext.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/ext.cpython-310.pyc deleted file mode 100644 index afed6b2d..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/ext.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/hstore.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/hstore.cpython-310.pyc deleted file mode 100644 index 90696bea..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/hstore.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/json.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/json.cpython-310.pyc deleted file mode 100644 index cc893e11..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/json.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/named_types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/named_types.cpython-310.pyc deleted file mode 100644 index 693d94eb..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/named_types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/operators.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/operators.cpython-310.pyc deleted file mode 100644 index 09628b20..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/operators.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/pg8000.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/pg8000.cpython-310.pyc deleted file mode 100644 index 5cd658e6..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/pg8000.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/pg_catalog.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/pg_catalog.cpython-310.pyc deleted file mode 100644 index b72b929f..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/pg_catalog.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/psycopg.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/psycopg.cpython-310.pyc deleted file mode 100644 index 47cd29ea..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/psycopg.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/psycopg2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/psycopg2.cpython-310.pyc deleted file mode 100644 index 418ea5a6..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/psycopg2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/psycopg2cffi.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/psycopg2cffi.cpython-310.pyc deleted file mode 100644 index 9d49cb6f..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/psycopg2cffi.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/ranges.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/ranges.cpython-310.pyc deleted file mode 100644 index 678c8875..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/ranges.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/types.cpython-310.pyc deleted file mode 100644 index a864dad6..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/__pycache__/types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 01c5d291..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/_py_processors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/_py_processors.cpython-310.pyc deleted file mode 100644 index 9d5c660a..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/_py_processors.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/base.cpython-310.pyc deleted file mode 100644 index cef68576..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/characteristics.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/characteristics.cpython-310.pyc deleted file mode 100644 index 40ccd4c1..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/characteristics.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/create.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/create.cpython-310.pyc deleted file mode 100644 index b56d5b15..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/create.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/cursor.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/cursor.cpython-310.pyc deleted file mode 100644 index 43565cb9..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/cursor.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/default.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/default.cpython-310.pyc deleted file mode 100644 index e93be178..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/default.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/events.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/events.cpython-310.pyc deleted file mode 100644 index 5a6464a3..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/events.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/interfaces.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/interfaces.cpython-310.pyc deleted file mode 100644 index 4a5cc2d8..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/interfaces.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/mock.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/mock.cpython-310.pyc deleted file mode 100644 index 68f25573..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/mock.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/processors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/processors.cpython-310.pyc deleted file mode 100644 index a33fe23b..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/processors.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/reflection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/reflection.cpython-310.pyc deleted file mode 100644 index 0112a3f9..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/reflection.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/result.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/result.cpython-310.pyc deleted file mode 100644 index 39eb5217..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/result.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/row.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/row.cpython-310.pyc deleted file mode 100644 index d0af1b3a..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/row.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/strategies.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/strategies.cpython-310.pyc deleted file mode 100644 index d3846e74..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/strategies.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/url.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/url.cpython-310.pyc deleted file mode 100644 index 0d9d2d78..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/url.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/util.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/util.cpython-310.pyc deleted file mode 100644 index 91040f2b..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/engine/__pycache__/util.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/event/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/event/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 0e6b4804..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/event/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/event/__pycache__/api.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/event/__pycache__/api.cpython-310.pyc deleted file mode 100644 index 2464f861..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/event/__pycache__/api.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/event/__pycache__/attr.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/event/__pycache__/attr.cpython-310.pyc deleted file mode 100644 index 21974d2a..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/event/__pycache__/attr.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/event/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/event/__pycache__/base.cpython-310.pyc deleted file mode 100644 index 6abb3296..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/event/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/event/__pycache__/legacy.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/event/__pycache__/legacy.cpython-310.pyc deleted file mode 100644 index fea997b4..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/event/__pycache__/legacy.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/event/__pycache__/registry.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/event/__pycache__/registry.cpython-310.pyc deleted file mode 100644 index 3e69466f..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/event/__pycache__/registry.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/ext/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index c616169b..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/__pycache__/compiler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/ext/__pycache__/compiler.cpython-310.pyc deleted file mode 100644 index f6ab2d15..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/__pycache__/compiler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/__pycache__/mutable.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/ext/__pycache__/mutable.cpython-310.pyc deleted file mode 100644 index c7f3d762..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/__pycache__/mutable.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/asyncio/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/ext/asyncio/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index dd8f2ac1..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/asyncio/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/asyncio/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/ext/asyncio/__pycache__/base.cpython-310.pyc deleted file mode 100644 index 558f4cab..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/asyncio/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/asyncio/__pycache__/engine.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/ext/asyncio/__pycache__/engine.cpython-310.pyc deleted file mode 100644 index 222f643d..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/asyncio/__pycache__/engine.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/asyncio/__pycache__/exc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/ext/asyncio/__pycache__/exc.cpython-310.pyc deleted file mode 100644 index 5ee24d88..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/asyncio/__pycache__/exc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/asyncio/__pycache__/result.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/ext/asyncio/__pycache__/result.cpython-310.pyc deleted file mode 100644 index dd3c0f08..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/asyncio/__pycache__/result.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/asyncio/__pycache__/scoping.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/ext/asyncio/__pycache__/scoping.cpython-310.pyc deleted file mode 100644 index fb474930..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/asyncio/__pycache__/scoping.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/asyncio/__pycache__/session.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/ext/asyncio/__pycache__/session.cpython-310.pyc deleted file mode 100644 index 77067e5a..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/asyncio/__pycache__/session.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/declarative/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/ext/declarative/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index f1f153f4..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/declarative/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/declarative/__pycache__/extensions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/ext/declarative/__pycache__/extensions.cpython-310.pyc deleted file mode 100644 index d20c1dda..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/ext/declarative/__pycache__/extensions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/future/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/future/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index ccdb2435..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/future/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/future/__pycache__/engine.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/future/__pycache__/engine.cpython-310.pyc deleted file mode 100644 index 7df4b8b4..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/future/__pycache__/engine.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 0dd0822e..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/_orm_constructors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/_orm_constructors.cpython-310.pyc deleted file mode 100644 index 462e328d..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/_orm_constructors.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/_typing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/_typing.cpython-310.pyc deleted file mode 100644 index 1c387089..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/_typing.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/attributes.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/attributes.cpython-310.pyc deleted file mode 100644 index 384b7f8b..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/attributes.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/base.cpython-310.pyc deleted file mode 100644 index a39e4b43..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/bulk_persistence.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/bulk_persistence.cpython-310.pyc deleted file mode 100644 index d3adcdd7..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/bulk_persistence.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/clsregistry.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/clsregistry.cpython-310.pyc deleted file mode 100644 index 32de9c7a..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/clsregistry.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/collections.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/collections.cpython-310.pyc deleted file mode 100644 index 4a912161..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/collections.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/context.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/context.cpython-310.pyc deleted file mode 100644 index 7c2fc458..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/context.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/decl_api.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/decl_api.cpython-310.pyc deleted file mode 100644 index f65b5620..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/decl_api.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/decl_base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/decl_base.cpython-310.pyc deleted file mode 100644 index 075cc461..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/decl_base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/dependency.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/dependency.cpython-310.pyc deleted file mode 100644 index 3d76fc90..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/dependency.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/descriptor_props.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/descriptor_props.cpython-310.pyc deleted file mode 100644 index c0a97937..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/descriptor_props.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/dynamic.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/dynamic.cpython-310.pyc deleted file mode 100644 index 9cbba6e0..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/dynamic.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/evaluator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/evaluator.cpython-310.pyc deleted file mode 100644 index f0529730..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/evaluator.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/events.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/events.cpython-310.pyc deleted file mode 100644 index c7578a6e..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/events.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/exc.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/exc.cpython-310.pyc deleted file mode 100644 index a61c596f..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/exc.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/identity.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/identity.cpython-310.pyc deleted file mode 100644 index defa0daf..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/identity.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/instrumentation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/instrumentation.cpython-310.pyc deleted file mode 100644 index b6ea6da7..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/instrumentation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/interfaces.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/interfaces.cpython-310.pyc deleted file mode 100644 index 38606dde..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/interfaces.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/loading.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/loading.cpython-310.pyc deleted file mode 100644 index 2a607197..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/loading.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/mapped_collection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/mapped_collection.cpython-310.pyc deleted file mode 100644 index b6e51ed3..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/mapped_collection.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/mapper.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/mapper.cpython-310.pyc deleted file mode 100644 index b76d1f25..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/mapper.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/path_registry.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/path_registry.cpython-310.pyc deleted file mode 100644 index fbc728ef..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/path_registry.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/persistence.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/persistence.cpython-310.pyc deleted file mode 100644 index ed219c4b..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/persistence.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/properties.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/properties.cpython-310.pyc deleted file mode 100644 index 3764734a..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/properties.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/query.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/query.cpython-310.pyc deleted file mode 100644 index 99ae2695..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/query.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/relationships.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/relationships.cpython-310.pyc deleted file mode 100644 index cab14c10..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/relationships.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/scoping.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/scoping.cpython-310.pyc deleted file mode 100644 index e7e23c2a..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/scoping.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/session.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/session.cpython-310.pyc deleted file mode 100644 index 6069b255..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/session.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/state.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/state.cpython-310.pyc deleted file mode 100644 index b94cb29a..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/state.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/state_changes.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/state_changes.cpython-310.pyc deleted file mode 100644 index 8331075f..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/state_changes.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/strategies.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/strategies.cpython-310.pyc deleted file mode 100644 index 4a9d8323..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/strategies.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/strategy_options.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/strategy_options.cpython-310.pyc deleted file mode 100644 index ab7bab23..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/strategy_options.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/sync.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/sync.cpython-310.pyc deleted file mode 100644 index 8d56279a..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/sync.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/unitofwork.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/unitofwork.cpython-310.pyc deleted file mode 100644 index 01e847ad..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/unitofwork.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/util.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/util.cpython-310.pyc deleted file mode 100644 index 16f4d7a5..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/util.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/writeonly.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/writeonly.cpython-310.pyc deleted file mode 100644 index d3febc86..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/orm/__pycache__/writeonly.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/pool/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/pool/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index ad793b69..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/pool/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/pool/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/pool/__pycache__/base.cpython-310.pyc deleted file mode 100644 index 461cae38..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/pool/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/pool/__pycache__/events.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/pool/__pycache__/events.cpython-310.pyc deleted file mode 100644 index 42f03c7e..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/pool/__pycache__/events.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/pool/__pycache__/impl.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/pool/__pycache__/impl.cpython-310.pyc deleted file mode 100644 index 064c3877..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/pool/__pycache__/impl.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index d6cbc200..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/_dml_constructors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/_dml_constructors.cpython-310.pyc deleted file mode 100644 index 84faff26..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/_dml_constructors.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/_elements_constructors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/_elements_constructors.cpython-310.pyc deleted file mode 100644 index 91b8afe4..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/_elements_constructors.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/_orm_types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/_orm_types.cpython-310.pyc deleted file mode 100644 index 3a7ef830..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/_orm_types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/_selectable_constructors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/_selectable_constructors.cpython-310.pyc deleted file mode 100644 index cff47a5c..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/_selectable_constructors.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/_typing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/_typing.cpython-310.pyc deleted file mode 100644 index 4decc1d9..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/_typing.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/annotation.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/annotation.cpython-310.pyc deleted file mode 100644 index 4a74352a..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/annotation.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/base.cpython-310.pyc deleted file mode 100644 index 3269ac23..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/cache_key.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/cache_key.cpython-310.pyc deleted file mode 100644 index 88296b43..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/cache_key.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/coercions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/coercions.cpython-310.pyc deleted file mode 100644 index 1e2e131a..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/coercions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/compiler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/compiler.cpython-310.pyc deleted file mode 100644 index 28e00647..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/compiler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/crud.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/crud.cpython-310.pyc deleted file mode 100644 index 45f12d83..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/crud.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/ddl.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/ddl.cpython-310.pyc deleted file mode 100644 index 60f05189..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/ddl.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/default_comparator.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/default_comparator.cpython-310.pyc deleted file mode 100644 index 7d2453d0..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/default_comparator.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/dml.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/dml.cpython-310.pyc deleted file mode 100644 index c1e88718..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/dml.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/elements.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/elements.cpython-310.pyc deleted file mode 100644 index e6c2e7c4..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/elements.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/events.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/events.cpython-310.pyc deleted file mode 100644 index f87962a9..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/events.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/expression.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/expression.cpython-310.pyc deleted file mode 100644 index 5c043b29..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/expression.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/functions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/functions.cpython-310.pyc deleted file mode 100644 index 00cf4154..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/functions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/lambdas.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/lambdas.cpython-310.pyc deleted file mode 100644 index db7d7b96..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/lambdas.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/naming.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/naming.cpython-310.pyc deleted file mode 100644 index 26b37d2c..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/naming.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/operators.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/operators.cpython-310.pyc deleted file mode 100644 index ea6a3ba8..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/operators.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/roles.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/roles.cpython-310.pyc deleted file mode 100644 index b54a63e4..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/roles.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/schema.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/schema.cpython-310.pyc deleted file mode 100644 index 785bac53..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/schema.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/selectable.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/selectable.cpython-310.pyc deleted file mode 100644 index d386bcfa..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/selectable.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/sqltypes.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/sqltypes.cpython-310.pyc deleted file mode 100644 index bb14a3bc..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/sqltypes.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/traversals.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/traversals.cpython-310.pyc deleted file mode 100644 index 350af851..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/traversals.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/type_api.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/type_api.cpython-310.pyc deleted file mode 100644 index 61ce6541..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/type_api.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/util.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/util.cpython-310.pyc deleted file mode 100644 index 54de2404..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/util.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/visitors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/visitors.cpython-310.pyc deleted file mode 100644 index 423905b3..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/sql/__pycache__/visitors.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index cc482358..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/_collections.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/_collections.cpython-310.pyc deleted file mode 100644 index 39f9d998..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/_collections.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/_concurrency_py3k.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/_concurrency_py3k.cpython-310.pyc deleted file mode 100644 index 56b8d47e..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/_concurrency_py3k.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/_has_cy.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/_has_cy.cpython-310.pyc deleted file mode 100644 index 02fbe478..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/_has_cy.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/compat.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/compat.cpython-310.pyc deleted file mode 100644 index 34bc8e0f..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/compat.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/concurrency.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/concurrency.cpython-310.pyc deleted file mode 100644 index 41ec93b9..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/concurrency.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/deprecations.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/deprecations.cpython-310.pyc deleted file mode 100644 index b1aa6c4f..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/deprecations.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/langhelpers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/langhelpers.cpython-310.pyc deleted file mode 100644 index 05e31b1d..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/langhelpers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/preloaded.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/preloaded.cpython-310.pyc deleted file mode 100644 index b74c12d3..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/preloaded.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/queue.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/queue.cpython-310.pyc deleted file mode 100644 index 3e8c12aa..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/queue.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/topological.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/topological.cpython-310.pyc deleted file mode 100644 index 3180f3fc..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/topological.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/typing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/typing.cpython-310.pyc deleted file mode 100644 index 6504b6d8..00000000 Binary files a/.venv/lib/python3.10/site-packages/sqlalchemy/util/__pycache__/typing.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sse_starlette/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sse_starlette/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 92aa7731..00000000 Binary files a/.venv/lib/python3.10/site-packages/sse_starlette/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sse_starlette/__pycache__/event.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sse_starlette/__pycache__/event.cpython-310.pyc deleted file mode 100644 index d715d17c..00000000 Binary files a/.venv/lib/python3.10/site-packages/sse_starlette/__pycache__/event.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/sse_starlette/__pycache__/sse.cpython-310.pyc b/.venv/lib/python3.10/site-packages/sse_starlette/__pycache__/sse.cpython-310.pyc deleted file mode 100644 index 7769a557..00000000 Binary files a/.venv/lib/python3.10/site-packages/sse_starlette/__pycache__/sse.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/starlette/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/starlette/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 5ee80240..00000000 Binary files a/.venv/lib/python3.10/site-packages/starlette/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/starlette/__pycache__/_exception_handler.cpython-310.pyc b/.venv/lib/python3.10/site-packages/starlette/__pycache__/_exception_handler.cpython-310.pyc deleted file mode 100644 index 087e5749..00000000 Binary files a/.venv/lib/python3.10/site-packages/starlette/__pycache__/_exception_handler.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/starlette/__pycache__/_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/starlette/__pycache__/_utils.cpython-310.pyc deleted file mode 100644 index c35d6b53..00000000 Binary files a/.venv/lib/python3.10/site-packages/starlette/__pycache__/_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/starlette/__pycache__/applications.cpython-310.pyc b/.venv/lib/python3.10/site-packages/starlette/__pycache__/applications.cpython-310.pyc deleted file mode 100644 index a7797dc6..00000000 Binary files a/.venv/lib/python3.10/site-packages/starlette/__pycache__/applications.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/starlette/__pycache__/background.cpython-310.pyc b/.venv/lib/python3.10/site-packages/starlette/__pycache__/background.cpython-310.pyc deleted file mode 100644 index fba18f6e..00000000 Binary files a/.venv/lib/python3.10/site-packages/starlette/__pycache__/background.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/starlette/__pycache__/concurrency.cpython-310.pyc b/.venv/lib/python3.10/site-packages/starlette/__pycache__/concurrency.cpython-310.pyc deleted file mode 100644 index 9942b10d..00000000 Binary files a/.venv/lib/python3.10/site-packages/starlette/__pycache__/concurrency.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/starlette/__pycache__/convertors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/starlette/__pycache__/convertors.cpython-310.pyc deleted file mode 100644 index b1eb36d0..00000000 Binary files a/.venv/lib/python3.10/site-packages/starlette/__pycache__/convertors.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/starlette/__pycache__/datastructures.cpython-310.pyc b/.venv/lib/python3.10/site-packages/starlette/__pycache__/datastructures.cpython-310.pyc deleted file mode 100644 index ff2bc52d..00000000 Binary files a/.venv/lib/python3.10/site-packages/starlette/__pycache__/datastructures.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/starlette/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/starlette/__pycache__/exceptions.cpython-310.pyc deleted file mode 100644 index 56039da0..00000000 Binary files a/.venv/lib/python3.10/site-packages/starlette/__pycache__/exceptions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/starlette/__pycache__/formparsers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/starlette/__pycache__/formparsers.cpython-310.pyc deleted file mode 100644 index 75933032..00000000 Binary files a/.venv/lib/python3.10/site-packages/starlette/__pycache__/formparsers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/starlette/__pycache__/requests.cpython-310.pyc b/.venv/lib/python3.10/site-packages/starlette/__pycache__/requests.cpython-310.pyc deleted file mode 100644 index 61784c38..00000000 Binary files a/.venv/lib/python3.10/site-packages/starlette/__pycache__/requests.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/starlette/__pycache__/responses.cpython-310.pyc b/.venv/lib/python3.10/site-packages/starlette/__pycache__/responses.cpython-310.pyc deleted file mode 100644 index 74b997d3..00000000 Binary files a/.venv/lib/python3.10/site-packages/starlette/__pycache__/responses.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/starlette/__pycache__/routing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/starlette/__pycache__/routing.cpython-310.pyc deleted file mode 100644 index 43e70132..00000000 Binary files a/.venv/lib/python3.10/site-packages/starlette/__pycache__/routing.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/starlette/__pycache__/status.cpython-310.pyc b/.venv/lib/python3.10/site-packages/starlette/__pycache__/status.cpython-310.pyc deleted file mode 100644 index 3cb02865..00000000 Binary files a/.venv/lib/python3.10/site-packages/starlette/__pycache__/status.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/starlette/__pycache__/types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/starlette/__pycache__/types.cpython-310.pyc deleted file mode 100644 index a55655c7..00000000 Binary files a/.venv/lib/python3.10/site-packages/starlette/__pycache__/types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/starlette/__pycache__/websockets.cpython-310.pyc b/.venv/lib/python3.10/site-packages/starlette/__pycache__/websockets.cpython-310.pyc deleted file mode 100644 index 9ba36e16..00000000 Binary files a/.venv/lib/python3.10/site-packages/starlette/__pycache__/websockets.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/starlette/middleware/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/starlette/middleware/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index e800879c..00000000 Binary files a/.venv/lib/python3.10/site-packages/starlette/middleware/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/starlette/middleware/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/starlette/middleware/__pycache__/base.cpython-310.pyc deleted file mode 100644 index bdef9549..00000000 Binary files a/.venv/lib/python3.10/site-packages/starlette/middleware/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/starlette/middleware/__pycache__/errors.cpython-310.pyc b/.venv/lib/python3.10/site-packages/starlette/middleware/__pycache__/errors.cpython-310.pyc deleted file mode 100644 index 869df535..00000000 Binary files a/.venv/lib/python3.10/site-packages/starlette/middleware/__pycache__/errors.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/starlette/middleware/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/starlette/middleware/__pycache__/exceptions.cpython-310.pyc deleted file mode 100644 index b74e4e13..00000000 Binary files a/.venv/lib/python3.10/site-packages/starlette/middleware/__pycache__/exceptions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tiktoken/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tiktoken/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 39c86c04..00000000 Binary files a/.venv/lib/python3.10/site-packages/tiktoken/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tiktoken/__pycache__/core.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tiktoken/__pycache__/core.cpython-310.pyc deleted file mode 100644 index bf40f935..00000000 Binary files a/.venv/lib/python3.10/site-packages/tiktoken/__pycache__/core.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tiktoken/__pycache__/load.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tiktoken/__pycache__/load.cpython-310.pyc deleted file mode 100644 index 82a9d01b..00000000 Binary files a/.venv/lib/python3.10/site-packages/tiktoken/__pycache__/load.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tiktoken/__pycache__/model.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tiktoken/__pycache__/model.cpython-310.pyc deleted file mode 100644 index 02df8d81..00000000 Binary files a/.venv/lib/python3.10/site-packages/tiktoken/__pycache__/model.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tiktoken/__pycache__/registry.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tiktoken/__pycache__/registry.cpython-310.pyc deleted file mode 100644 index 4f2b8c36..00000000 Binary files a/.venv/lib/python3.10/site-packages/tiktoken/__pycache__/registry.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tiktoken_ext/__pycache__/openai_public.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tiktoken_ext/__pycache__/openai_public.cpython-310.pyc deleted file mode 100644 index b549bcd9..00000000 Binary files a/.venv/lib/python3.10/site-packages/tiktoken_ext/__pycache__/openai_public.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tokenizers/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tokenizers/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 0e01966a..00000000 Binary files a/.venv/lib/python3.10/site-packages/tokenizers/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tokenizers/decoders/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tokenizers/decoders/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index d35c24a5..00000000 Binary files a/.venv/lib/python3.10/site-packages/tokenizers/decoders/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tokenizers/implementations/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tokenizers/implementations/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index d6b390d5..00000000 Binary files a/.venv/lib/python3.10/site-packages/tokenizers/implementations/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tokenizers/implementations/__pycache__/base_tokenizer.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tokenizers/implementations/__pycache__/base_tokenizer.cpython-310.pyc deleted file mode 100644 index 65c338d1..00000000 Binary files a/.venv/lib/python3.10/site-packages/tokenizers/implementations/__pycache__/base_tokenizer.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tokenizers/implementations/__pycache__/bert_wordpiece.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tokenizers/implementations/__pycache__/bert_wordpiece.cpython-310.pyc deleted file mode 100644 index e719e3ed..00000000 Binary files a/.venv/lib/python3.10/site-packages/tokenizers/implementations/__pycache__/bert_wordpiece.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tokenizers/implementations/__pycache__/byte_level_bpe.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tokenizers/implementations/__pycache__/byte_level_bpe.cpython-310.pyc deleted file mode 100644 index 63d93540..00000000 Binary files a/.venv/lib/python3.10/site-packages/tokenizers/implementations/__pycache__/byte_level_bpe.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tokenizers/implementations/__pycache__/char_level_bpe.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tokenizers/implementations/__pycache__/char_level_bpe.cpython-310.pyc deleted file mode 100644 index 1111882b..00000000 Binary files a/.venv/lib/python3.10/site-packages/tokenizers/implementations/__pycache__/char_level_bpe.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tokenizers/implementations/__pycache__/sentencepiece_bpe.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tokenizers/implementations/__pycache__/sentencepiece_bpe.cpython-310.pyc deleted file mode 100644 index 54d50108..00000000 Binary files a/.venv/lib/python3.10/site-packages/tokenizers/implementations/__pycache__/sentencepiece_bpe.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tokenizers/implementations/__pycache__/sentencepiece_unigram.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tokenizers/implementations/__pycache__/sentencepiece_unigram.cpython-310.pyc deleted file mode 100644 index e576e7e8..00000000 Binary files a/.venv/lib/python3.10/site-packages/tokenizers/implementations/__pycache__/sentencepiece_unigram.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tokenizers/models/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tokenizers/models/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index dcb7c338..00000000 Binary files a/.venv/lib/python3.10/site-packages/tokenizers/models/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tokenizers/normalizers/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tokenizers/normalizers/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index e08983e3..00000000 Binary files a/.venv/lib/python3.10/site-packages/tokenizers/normalizers/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tokenizers/pre_tokenizers/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tokenizers/pre_tokenizers/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 6e9e0e52..00000000 Binary files a/.venv/lib/python3.10/site-packages/tokenizers/pre_tokenizers/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tokenizers/processors/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tokenizers/processors/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index cf3615cc..00000000 Binary files a/.venv/lib/python3.10/site-packages/tokenizers/processors/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/typing_inspection/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/typing_inspection/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 35e8c164..00000000 Binary files a/.venv/lib/python3.10/site-packages/typing_inspection/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/typing_inspection/__pycache__/introspection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/typing_inspection/__pycache__/introspection.cpython-310.pyc deleted file mode 100644 index 3f7bcb1b..00000000 Binary files a/.venv/lib/python3.10/site-packages/typing_inspection/__pycache__/introspection.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/typing_inspection/__pycache__/typing_objects.cpython-310.pyc b/.venv/lib/python3.10/site-packages/typing_inspection/__pycache__/typing_objects.cpython-310.pyc deleted file mode 100644 index 97005125..00000000 Binary files a/.venv/lib/python3.10/site-packages/typing_inspection/__pycache__/typing_objects.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tzlocal/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tzlocal/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 453835d0..00000000 Binary files a/.venv/lib/python3.10/site-packages/tzlocal/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tzlocal/__pycache__/unix.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tzlocal/__pycache__/unix.cpython-310.pyc deleted file mode 100644 index bf4ce756..00000000 Binary files a/.venv/lib/python3.10/site-packages/tzlocal/__pycache__/unix.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tzlocal/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tzlocal/__pycache__/utils.cpython-310.pyc deleted file mode 100644 index 7350548c..00000000 Binary files a/.venv/lib/python3.10/site-packages/tzlocal/__pycache__/utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/tzlocal/__pycache__/windows_tz.cpython-310.pyc b/.venv/lib/python3.10/site-packages/tzlocal/__pycache__/windows_tz.cpython-310.pyc deleted file mode 100644 index c691bbb3..00000000 Binary files a/.venv/lib/python3.10/site-packages/tzlocal/__pycache__/windows_tz.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index e07da5b5..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/_base_connection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/__pycache__/_base_connection.cpython-310.pyc deleted file mode 100644 index b62de2be..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/_base_connection.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/_collections.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/__pycache__/_collections.cpython-310.pyc deleted file mode 100644 index 6462067f..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/_collections.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/_request_methods.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/__pycache__/_request_methods.cpython-310.pyc deleted file mode 100644 index 52819c80..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/_request_methods.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/_version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/__pycache__/_version.cpython-310.pyc deleted file mode 100644 index 722cfe6e..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/_version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/connection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/__pycache__/connection.cpython-310.pyc deleted file mode 100644 index 3588b736..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/connection.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/connectionpool.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/__pycache__/connectionpool.cpython-310.pyc deleted file mode 100644 index 38a3a767..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/connectionpool.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/__pycache__/exceptions.cpython-310.pyc deleted file mode 100644 index 51440de3..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/exceptions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/fields.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/__pycache__/fields.cpython-310.pyc deleted file mode 100644 index af5f6d79..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/fields.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/filepost.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/__pycache__/filepost.cpython-310.pyc deleted file mode 100644 index 8c817182..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/filepost.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/poolmanager.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/__pycache__/poolmanager.cpython-310.pyc deleted file mode 100644 index 1e0f762f..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/poolmanager.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/__pycache__/response.cpython-310.pyc deleted file mode 100644 index 4febcc1a..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/__pycache__/response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/contrib/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/contrib/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 7df6166b..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/contrib/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/contrib/__pycache__/socks.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/contrib/__pycache__/socks.cpython-310.pyc deleted file mode 100644 index 963d2bf8..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/contrib/__pycache__/socks.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/http2/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/http2/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 27c90069..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/http2/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/http2/__pycache__/probe.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/http2/__pycache__/probe.cpython-310.pyc deleted file mode 100644 index 4cb517d9..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/http2/__pycache__/probe.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 47321726..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/connection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/connection.cpython-310.pyc deleted file mode 100644 index 8db9a1d3..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/connection.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/proxy.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/proxy.cpython-310.pyc deleted file mode 100644 index 39829b4e..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/proxy.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/request.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/request.cpython-310.pyc deleted file mode 100644 index cd664615..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/request.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/response.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/response.cpython-310.pyc deleted file mode 100644 index 271502d4..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/response.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/retry.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/retry.cpython-310.pyc deleted file mode 100644 index de1c5ef7..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/retry.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/ssl_.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/ssl_.cpython-310.pyc deleted file mode 100644 index 6ae91861..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/ssl_.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc deleted file mode 100644 index 97419a25..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/ssltransport.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/ssltransport.cpython-310.pyc deleted file mode 100644 index 078ec2e5..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/ssltransport.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/timeout.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/timeout.cpython-310.pyc deleted file mode 100644 index e5e2b499..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/timeout.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/url.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/url.cpython-310.pyc deleted file mode 100644 index 1500cb4b..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/url.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/util.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/util.cpython-310.pyc deleted file mode 100644 index 725d2bb6..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/util.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/wait.cpython-310.pyc b/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/wait.cpython-310.pyc deleted file mode 100644 index b0652c56..00000000 Binary files a/.venv/lib/python3.10/site-packages/urllib3/util/__pycache__/wait.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index eb5dffde..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/_subprocess.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/_subprocess.cpython-310.pyc deleted file mode 100644 index dfa2188e..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/_subprocess.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/_types.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/_types.cpython-310.pyc deleted file mode 100644 index a2ef6bc2..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/_types.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/config.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/config.cpython-310.pyc deleted file mode 100644 index 8d09c454..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/config.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/importer.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/importer.cpython-310.pyc deleted file mode 100644 index 5c6be677..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/importer.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/logging.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/logging.cpython-310.pyc deleted file mode 100644 index 454a0626..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/logging.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/main.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/main.cpython-310.pyc deleted file mode 100644 index f58b93d1..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/main.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/server.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/server.cpython-310.pyc deleted file mode 100644 index 411edb02..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/__pycache__/server.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/lifespan/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/lifespan/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 4ac35641..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/lifespan/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/lifespan/__pycache__/on.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/lifespan/__pycache__/on.cpython-310.pyc deleted file mode 100644 index 06218b76..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/lifespan/__pycache__/on.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/loops/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/loops/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index ce25cc2f..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/loops/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/loops/__pycache__/asyncio.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/loops/__pycache__/asyncio.cpython-310.pyc deleted file mode 100644 index 5b11df13..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/loops/__pycache__/asyncio.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/loops/__pycache__/auto.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/loops/__pycache__/auto.cpython-310.pyc deleted file mode 100644 index 25398b0a..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/loops/__pycache__/auto.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/middleware/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/middleware/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index f758b536..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/middleware/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/middleware/__pycache__/asgi2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/middleware/__pycache__/asgi2.cpython-310.pyc deleted file mode 100644 index 6ddc7696..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/middleware/__pycache__/asgi2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/middleware/__pycache__/message_logger.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/middleware/__pycache__/message_logger.cpython-310.pyc deleted file mode 100644 index 822090c2..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/middleware/__pycache__/message_logger.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/middleware/__pycache__/proxy_headers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/middleware/__pycache__/proxy_headers.cpython-310.pyc deleted file mode 100644 index 13683096..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/middleware/__pycache__/proxy_headers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/middleware/__pycache__/wsgi.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/middleware/__pycache__/wsgi.cpython-310.pyc deleted file mode 100644 index 7b99e75a..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/middleware/__pycache__/wsgi.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/protocols/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/protocols/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index d6382468..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/protocols/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/protocols/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/protocols/__pycache__/utils.cpython-310.pyc deleted file mode 100644 index b1708378..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/protocols/__pycache__/utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/protocols/http/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/protocols/http/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index f72c75a5..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/protocols/http/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/protocols/http/__pycache__/auto.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/protocols/http/__pycache__/auto.cpython-310.pyc deleted file mode 100644 index 0a65bcb8..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/protocols/http/__pycache__/auto.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/protocols/http/__pycache__/flow_control.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/protocols/http/__pycache__/flow_control.cpython-310.pyc deleted file mode 100644 index 4c709b35..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/protocols/http/__pycache__/flow_control.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/protocols/http/__pycache__/h11_impl.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/protocols/http/__pycache__/h11_impl.cpython-310.pyc deleted file mode 100644 index ee24d2ed..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/protocols/http/__pycache__/h11_impl.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/protocols/websockets/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/protocols/websockets/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 14b9260a..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/protocols/websockets/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/protocols/websockets/__pycache__/auto.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/protocols/websockets/__pycache__/auto.cpython-310.pyc deleted file mode 100644 index 9aeea362..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/protocols/websockets/__pycache__/auto.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/protocols/websockets/__pycache__/websockets_impl.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/protocols/websockets/__pycache__/websockets_impl.cpython-310.pyc deleted file mode 100644 index cb65506c..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/protocols/websockets/__pycache__/websockets_impl.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/supervisors/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/supervisors/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 9e6230c2..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/supervisors/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/supervisors/__pycache__/basereload.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/supervisors/__pycache__/basereload.cpython-310.pyc deleted file mode 100644 index 3862b965..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/supervisors/__pycache__/basereload.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/supervisors/__pycache__/multiprocess.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/supervisors/__pycache__/multiprocess.cpython-310.pyc deleted file mode 100644 index bfaec17b..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/supervisors/__pycache__/multiprocess.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/supervisors/__pycache__/statreload.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/supervisors/__pycache__/statreload.cpython-310.pyc deleted file mode 100644 index 60bed9b8..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/supervisors/__pycache__/statreload.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/uvicorn/supervisors/__pycache__/watchfilesreload.cpython-310.pyc b/.venv/lib/python3.10/site-packages/uvicorn/supervisors/__pycache__/watchfilesreload.cpython-310.pyc deleted file mode 100644 index 6446cc8d..00000000 Binary files a/.venv/lib/python3.10/site-packages/uvicorn/supervisors/__pycache__/watchfilesreload.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/vertexai/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/vertexai/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 2c60da3b..00000000 Binary files a/.venv/lib/python3.10/site-packages/vertexai/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/vertexai/agent_engines/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/vertexai/agent_engines/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 1fc55f16..00000000 Binary files a/.venv/lib/python3.10/site-packages/vertexai/agent_engines/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/vertexai/agent_engines/__pycache__/_agent_engines.cpython-310.pyc b/.venv/lib/python3.10/site-packages/vertexai/agent_engines/__pycache__/_agent_engines.cpython-310.pyc deleted file mode 100644 index 8a3ad3d9..00000000 Binary files a/.venv/lib/python3.10/site-packages/vertexai/agent_engines/__pycache__/_agent_engines.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/vertexai/agent_engines/__pycache__/_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/vertexai/agent_engines/__pycache__/_utils.cpython-310.pyc deleted file mode 100644 index c7b21d2f..00000000 Binary files a/.venv/lib/python3.10/site-packages/vertexai/agent_engines/__pycache__/_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/vertexai/agent_engines/templates/__pycache__/ag2.cpython-310.pyc b/.venv/lib/python3.10/site-packages/vertexai/agent_engines/templates/__pycache__/ag2.cpython-310.pyc deleted file mode 100644 index b91f640b..00000000 Binary files a/.venv/lib/python3.10/site-packages/vertexai/agent_engines/templates/__pycache__/ag2.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/vertexai/agent_engines/templates/__pycache__/langchain.cpython-310.pyc b/.venv/lib/python3.10/site-packages/vertexai/agent_engines/templates/__pycache__/langchain.cpython-310.pyc deleted file mode 100644 index 1a3053cc..00000000 Binary files a/.venv/lib/python3.10/site-packages/vertexai/agent_engines/templates/__pycache__/langchain.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/vertexai/agent_engines/templates/__pycache__/langgraph.cpython-310.pyc b/.venv/lib/python3.10/site-packages/vertexai/agent_engines/templates/__pycache__/langgraph.cpython-310.pyc deleted file mode 100644 index ac4b61f3..00000000 Binary files a/.venv/lib/python3.10/site-packages/vertexai/agent_engines/templates/__pycache__/langgraph.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/vertexai/example_stores/__pycache__/_example_stores.cpython-310.pyc b/.venv/lib/python3.10/site-packages/vertexai/example_stores/__pycache__/_example_stores.cpython-310.pyc deleted file mode 100644 index c4dee718..00000000 Binary files a/.venv/lib/python3.10/site-packages/vertexai/example_stores/__pycache__/_example_stores.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/vertexai/extensions/__pycache__/_extensions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/vertexai/extensions/__pycache__/_extensions.cpython-310.pyc deleted file mode 100644 index e4209b93..00000000 Binary files a/.venv/lib/python3.10/site-packages/vertexai/extensions/__pycache__/_extensions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/vertexai/generative_models/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/vertexai/generative_models/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 4fadaa64..00000000 Binary files a/.venv/lib/python3.10/site-packages/vertexai/generative_models/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/vertexai/generative_models/__pycache__/_generative_models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/vertexai/generative_models/__pycache__/_generative_models.cpython-310.pyc deleted file mode 100644 index 6051e0f2..00000000 Binary files a/.venv/lib/python3.10/site-packages/vertexai/generative_models/__pycache__/_generative_models.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/vertexai/preview/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/vertexai/preview/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index b3277027..00000000 Binary files a/.venv/lib/python3.10/site-packages/vertexai/preview/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/vertexai/preview/__pycache__/example_stores.cpython-310.pyc b/.venv/lib/python3.10/site-packages/vertexai/preview/__pycache__/example_stores.cpython-310.pyc deleted file mode 100644 index 3a4accf6..00000000 Binary files a/.venv/lib/python3.10/site-packages/vertexai/preview/__pycache__/example_stores.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/vertexai/preview/__pycache__/extensions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/vertexai/preview/__pycache__/extensions.cpython-310.pyc deleted file mode 100644 index 932750cc..00000000 Binary files a/.venv/lib/python3.10/site-packages/vertexai/preview/__pycache__/extensions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/vertexai/preview/__pycache__/generative_models.cpython-310.pyc b/.venv/lib/python3.10/site-packages/vertexai/preview/__pycache__/generative_models.cpython-310.pyc deleted file mode 100644 index 5f003548..00000000 Binary files a/.venv/lib/python3.10/site-packages/vertexai/preview/__pycache__/generative_models.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/vertexai/preview/rag/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/vertexai/preview/rag/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index de7453fe..00000000 Binary files a/.venv/lib/python3.10/site-packages/vertexai/preview/rag/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/vertexai/preview/rag/__pycache__/rag_data.cpython-310.pyc b/.venv/lib/python3.10/site-packages/vertexai/preview/rag/__pycache__/rag_data.cpython-310.pyc deleted file mode 100644 index 71a0b13b..00000000 Binary files a/.venv/lib/python3.10/site-packages/vertexai/preview/rag/__pycache__/rag_data.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/vertexai/preview/rag/__pycache__/rag_retrieval.cpython-310.pyc b/.venv/lib/python3.10/site-packages/vertexai/preview/rag/__pycache__/rag_retrieval.cpython-310.pyc deleted file mode 100644 index f87724dd..00000000 Binary files a/.venv/lib/python3.10/site-packages/vertexai/preview/rag/__pycache__/rag_retrieval.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/vertexai/preview/rag/__pycache__/rag_store.cpython-310.pyc b/.venv/lib/python3.10/site-packages/vertexai/preview/rag/__pycache__/rag_store.cpython-310.pyc deleted file mode 100644 index 02595375..00000000 Binary files a/.venv/lib/python3.10/site-packages/vertexai/preview/rag/__pycache__/rag_store.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/vertexai/preview/rag/utils/__pycache__/_gapic_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/vertexai/preview/rag/utils/__pycache__/_gapic_utils.cpython-310.pyc deleted file mode 100644 index 6ea31977..00000000 Binary files a/.venv/lib/python3.10/site-packages/vertexai/preview/rag/utils/__pycache__/_gapic_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/vertexai/preview/rag/utils/__pycache__/resources.cpython-310.pyc b/.venv/lib/python3.10/site-packages/vertexai/preview/rag/utils/__pycache__/resources.cpython-310.pyc deleted file mode 100644 index b013e425..00000000 Binary files a/.venv/lib/python3.10/site-packages/vertexai/preview/rag/utils/__pycache__/resources.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/vertexai/reasoning_engines/__pycache__/_utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/vertexai/reasoning_engines/__pycache__/_utils.cpython-310.pyc deleted file mode 100644 index d8f6845a..00000000 Binary files a/.venv/lib/python3.10/site-packages/vertexai/reasoning_engines/__pycache__/_utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index d55e7499..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/__pycache__/client.cpython-310.pyc deleted file mode 100644 index 8933e5c6..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/__pycache__/client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/__pycache__/datastructures.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/__pycache__/datastructures.cpython-310.pyc deleted file mode 100644 index 726f4c82..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/__pycache__/datastructures.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/__pycache__/exceptions.cpython-310.pyc deleted file mode 100644 index cedf8d05..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/__pycache__/exceptions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/__pycache__/frames.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/__pycache__/frames.cpython-310.pyc deleted file mode 100644 index ca3644db..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/__pycache__/frames.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/__pycache__/headers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/__pycache__/headers.cpython-310.pyc deleted file mode 100644 index 5e0cbeac..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/__pycache__/headers.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/__pycache__/http11.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/__pycache__/http11.cpython-310.pyc deleted file mode 100644 index 516a7a3b..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/__pycache__/http11.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/__pycache__/imports.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/__pycache__/imports.cpython-310.pyc deleted file mode 100644 index 3969e26c..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/__pycache__/imports.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/__pycache__/protocol.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/__pycache__/protocol.cpython-310.pyc deleted file mode 100644 index 395ef3cb..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/__pycache__/protocol.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/__pycache__/server.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/__pycache__/server.cpython-310.pyc deleted file mode 100644 index 84114d06..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/__pycache__/server.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/__pycache__/streams.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/__pycache__/streams.cpython-310.pyc deleted file mode 100644 index cf30e23f..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/__pycache__/streams.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/__pycache__/typing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/__pycache__/typing.cpython-310.pyc deleted file mode 100644 index f3c4f7f3..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/__pycache__/typing.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/__pycache__/uri.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/__pycache__/uri.cpython-310.pyc deleted file mode 100644 index 850b52cd..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/__pycache__/uri.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/__pycache__/utils.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/__pycache__/utils.cpython-310.pyc deleted file mode 100644 index f4ef0c1d..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/__pycache__/utils.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/__pycache__/version.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/__pycache__/version.cpython-310.pyc deleted file mode 100644 index 3acdd475..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/__pycache__/version.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/asyncio/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/asyncio/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index be97d722..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/asyncio/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/asyncio/__pycache__/async_timeout.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/asyncio/__pycache__/async_timeout.cpython-310.pyc deleted file mode 100644 index 683315db..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/asyncio/__pycache__/async_timeout.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/asyncio/__pycache__/client.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/asyncio/__pycache__/client.cpython-310.pyc deleted file mode 100644 index df66b5f7..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/asyncio/__pycache__/client.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/asyncio/__pycache__/compatibility.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/asyncio/__pycache__/compatibility.cpython-310.pyc deleted file mode 100644 index 6385ce4e..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/asyncio/__pycache__/compatibility.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/asyncio/__pycache__/connection.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/asyncio/__pycache__/connection.cpython-310.pyc deleted file mode 100644 index c4e187fc..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/asyncio/__pycache__/connection.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/asyncio/__pycache__/messages.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/asyncio/__pycache__/messages.cpython-310.pyc deleted file mode 100644 index 34dc54f4..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/asyncio/__pycache__/messages.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/extensions/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/extensions/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index c09580b1..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/extensions/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/extensions/__pycache__/base.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/extensions/__pycache__/base.cpython-310.pyc deleted file mode 100644 index fd73ffdf..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/extensions/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/extensions/__pycache__/permessage_deflate.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/extensions/__pycache__/permessage_deflate.cpython-310.pyc deleted file mode 100644 index cb299682..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/extensions/__pycache__/permessage_deflate.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/legacy/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/legacy/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index ce5174fa..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/legacy/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/legacy/__pycache__/exceptions.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/legacy/__pycache__/exceptions.cpython-310.pyc deleted file mode 100644 index b81cdd67..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/legacy/__pycache__/exceptions.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/legacy/__pycache__/framing.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/legacy/__pycache__/framing.cpython-310.pyc deleted file mode 100644 index 6073a3fb..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/legacy/__pycache__/framing.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/legacy/__pycache__/handshake.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/legacy/__pycache__/handshake.cpython-310.pyc deleted file mode 100644 index 87171194..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/legacy/__pycache__/handshake.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/legacy/__pycache__/http.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/legacy/__pycache__/http.cpython-310.pyc deleted file mode 100644 index 54ee1f16..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/legacy/__pycache__/http.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/legacy/__pycache__/protocol.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/legacy/__pycache__/protocol.cpython-310.pyc deleted file mode 100644 index 729b3818..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/legacy/__pycache__/protocol.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/websockets/legacy/__pycache__/server.cpython-310.pyc b/.venv/lib/python3.10/site-packages/websockets/legacy/__pycache__/server.cpython-310.pyc deleted file mode 100644 index 68c8f81c..00000000 Binary files a/.venv/lib/python3.10/site-packages/websockets/legacy/__pycache__/server.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/wrapt/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/wrapt/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 06385f6b..00000000 Binary files a/.venv/lib/python3.10/site-packages/wrapt/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/wrapt/__pycache__/__wrapt__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/wrapt/__pycache__/__wrapt__.cpython-310.pyc deleted file mode 100644 index 9d14d62a..00000000 Binary files a/.venv/lib/python3.10/site-packages/wrapt/__pycache__/__wrapt__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/wrapt/__pycache__/arguments.cpython-310.pyc b/.venv/lib/python3.10/site-packages/wrapt/__pycache__/arguments.cpython-310.pyc deleted file mode 100644 index acb298a1..00000000 Binary files a/.venv/lib/python3.10/site-packages/wrapt/__pycache__/arguments.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/wrapt/__pycache__/decorators.cpython-310.pyc b/.venv/lib/python3.10/site-packages/wrapt/__pycache__/decorators.cpython-310.pyc deleted file mode 100644 index e1da5dc4..00000000 Binary files a/.venv/lib/python3.10/site-packages/wrapt/__pycache__/decorators.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/wrapt/__pycache__/importer.cpython-310.pyc b/.venv/lib/python3.10/site-packages/wrapt/__pycache__/importer.cpython-310.pyc deleted file mode 100644 index f54572aa..00000000 Binary files a/.venv/lib/python3.10/site-packages/wrapt/__pycache__/importer.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/wrapt/__pycache__/patches.cpython-310.pyc b/.venv/lib/python3.10/site-packages/wrapt/__pycache__/patches.cpython-310.pyc deleted file mode 100644 index 6d4eb03f..00000000 Binary files a/.venv/lib/python3.10/site-packages/wrapt/__pycache__/patches.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/wrapt/__pycache__/weakrefs.cpython-310.pyc b/.venv/lib/python3.10/site-packages/wrapt/__pycache__/weakrefs.cpython-310.pyc deleted file mode 100644 index cb61a29e..00000000 Binary files a/.venv/lib/python3.10/site-packages/wrapt/__pycache__/weakrefs.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/wrapt/__pycache__/wrappers.cpython-310.pyc b/.venv/lib/python3.10/site-packages/wrapt/__pycache__/wrappers.cpython-310.pyc deleted file mode 100644 index ffe8157d..00000000 Binary files a/.venv/lib/python3.10/site-packages/wrapt/__pycache__/wrappers.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 7aeb8801..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/yaml/__pycache__/composer.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yaml/__pycache__/composer.cpython-310.pyc deleted file mode 100644 index 4c701018..00000000 Binary files a/.venv/lib/python3.10/site-packages/yaml/__pycache__/composer.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/yaml/__pycache__/constructor.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yaml/__pycache__/constructor.cpython-310.pyc deleted file mode 100644 index 8787b23f..00000000 Binary files a/.venv/lib/python3.10/site-packages/yaml/__pycache__/constructor.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/yaml/__pycache__/cyaml.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yaml/__pycache__/cyaml.cpython-310.pyc deleted file mode 100644 index bfbeeeae..00000000 Binary files a/.venv/lib/python3.10/site-packages/yaml/__pycache__/cyaml.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/yaml/__pycache__/dumper.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yaml/__pycache__/dumper.cpython-310.pyc deleted file mode 100644 index 57f86de2..00000000 Binary files a/.venv/lib/python3.10/site-packages/yaml/__pycache__/dumper.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/yaml/__pycache__/emitter.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yaml/__pycache__/emitter.cpython-310.pyc deleted file mode 100644 index b63b8909..00000000 Binary files a/.venv/lib/python3.10/site-packages/yaml/__pycache__/emitter.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/yaml/__pycache__/error.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yaml/__pycache__/error.cpython-310.pyc deleted file mode 100644 index 0360f2fa..00000000 Binary files a/.venv/lib/python3.10/site-packages/yaml/__pycache__/error.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/yaml/__pycache__/events.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yaml/__pycache__/events.cpython-310.pyc deleted file mode 100644 index 769c3182..00000000 Binary files a/.venv/lib/python3.10/site-packages/yaml/__pycache__/events.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/yaml/__pycache__/loader.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yaml/__pycache__/loader.cpython-310.pyc deleted file mode 100644 index 413198f8..00000000 Binary files a/.venv/lib/python3.10/site-packages/yaml/__pycache__/loader.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/yaml/__pycache__/nodes.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yaml/__pycache__/nodes.cpython-310.pyc deleted file mode 100644 index c5baa354..00000000 Binary files a/.venv/lib/python3.10/site-packages/yaml/__pycache__/nodes.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/yaml/__pycache__/parser.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yaml/__pycache__/parser.cpython-310.pyc deleted file mode 100644 index 2ea575bf..00000000 Binary files a/.venv/lib/python3.10/site-packages/yaml/__pycache__/parser.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/yaml/__pycache__/reader.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yaml/__pycache__/reader.cpython-310.pyc deleted file mode 100644 index d7ee10f9..00000000 Binary files a/.venv/lib/python3.10/site-packages/yaml/__pycache__/reader.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/yaml/__pycache__/representer.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yaml/__pycache__/representer.cpython-310.pyc deleted file mode 100644 index b536c2e8..00000000 Binary files a/.venv/lib/python3.10/site-packages/yaml/__pycache__/representer.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/yaml/__pycache__/resolver.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yaml/__pycache__/resolver.cpython-310.pyc deleted file mode 100644 index 9861b327..00000000 Binary files a/.venv/lib/python3.10/site-packages/yaml/__pycache__/resolver.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/yaml/__pycache__/scanner.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yaml/__pycache__/scanner.cpython-310.pyc deleted file mode 100644 index 4755f8bd..00000000 Binary files a/.venv/lib/python3.10/site-packages/yaml/__pycache__/scanner.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/yaml/__pycache__/serializer.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yaml/__pycache__/serializer.cpython-310.pyc deleted file mode 100644 index 06633431..00000000 Binary files a/.venv/lib/python3.10/site-packages/yaml/__pycache__/serializer.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/yaml/__pycache__/tokens.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yaml/__pycache__/tokens.cpython-310.pyc deleted file mode 100644 index 1079ae87..00000000 Binary files a/.venv/lib/python3.10/site-packages/yaml/__pycache__/tokens.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/yarl/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yarl/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 27e13144..00000000 Binary files a/.venv/lib/python3.10/site-packages/yarl/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/yarl/__pycache__/_parse.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yarl/__pycache__/_parse.cpython-310.pyc deleted file mode 100644 index c050d5f8..00000000 Binary files a/.venv/lib/python3.10/site-packages/yarl/__pycache__/_parse.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/yarl/__pycache__/_path.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yarl/__pycache__/_path.cpython-310.pyc deleted file mode 100644 index ea0032ed..00000000 Binary files a/.venv/lib/python3.10/site-packages/yarl/__pycache__/_path.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/yarl/__pycache__/_query.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yarl/__pycache__/_query.cpython-310.pyc deleted file mode 100644 index 41b9dae9..00000000 Binary files a/.venv/lib/python3.10/site-packages/yarl/__pycache__/_query.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/yarl/__pycache__/_quoters.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yarl/__pycache__/_quoters.cpython-310.pyc deleted file mode 100644 index ef169e20..00000000 Binary files a/.venv/lib/python3.10/site-packages/yarl/__pycache__/_quoters.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/yarl/__pycache__/_quoting.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yarl/__pycache__/_quoting.cpython-310.pyc deleted file mode 100644 index ea4c6e2e..00000000 Binary files a/.venv/lib/python3.10/site-packages/yarl/__pycache__/_quoting.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/yarl/__pycache__/_url.cpython-310.pyc b/.venv/lib/python3.10/site-packages/yarl/__pycache__/_url.cpython-310.pyc deleted file mode 100644 index 6db21159..00000000 Binary files a/.venv/lib/python3.10/site-packages/yarl/__pycache__/_url.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/zipp/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/zipp/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index cc97b385..00000000 Binary files a/.venv/lib/python3.10/site-packages/zipp/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/zipp/__pycache__/_functools.cpython-310.pyc b/.venv/lib/python3.10/site-packages/zipp/__pycache__/_functools.cpython-310.pyc deleted file mode 100644 index 5f4ef8ff..00000000 Binary files a/.venv/lib/python3.10/site-packages/zipp/__pycache__/_functools.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/zipp/__pycache__/glob.cpython-310.pyc b/.venv/lib/python3.10/site-packages/zipp/__pycache__/glob.cpython-310.pyc deleted file mode 100644 index ee7c34b9..00000000 Binary files a/.venv/lib/python3.10/site-packages/zipp/__pycache__/glob.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/zipp/compat/__pycache__/__init__.cpython-310.pyc b/.venv/lib/python3.10/site-packages/zipp/compat/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index f3de9c19..00000000 Binary files a/.venv/lib/python3.10/site-packages/zipp/compat/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/zipp/compat/__pycache__/overlay.cpython-310.pyc b/.venv/lib/python3.10/site-packages/zipp/compat/__pycache__/overlay.cpython-310.pyc deleted file mode 100644 index 0b160736..00000000 Binary files a/.venv/lib/python3.10/site-packages/zipp/compat/__pycache__/overlay.cpython-310.pyc and /dev/null differ diff --git a/.venv/lib/python3.10/site-packages/zipp/compat/__pycache__/py310.cpython-310.pyc b/.venv/lib/python3.10/site-packages/zipp/compat/__pycache__/py310.cpython-310.pyc deleted file mode 100644 index 0c976d4d..00000000 Binary files a/.venv/lib/python3.10/site-packages/zipp/compat/__pycache__/py310.cpython-310.pyc and /dev/null differ diff --git a/README.md b/README.md index 8438057d..2ca9b7ed 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,9 @@ The Evo AI platform allows: - **Uvicorn**: ASGI server - **Redis**: Cache and session management - **JWT**: Secure token authentication -- **SendGrid**: Email service for verification +- **SendGrid**: Email service for notifications +- **Jinja2**: Template engine for email rendering +- **Bcrypt**: Password hashing and security ## 📁 Project Structure @@ -32,9 +34,11 @@ src/ ├── core/ # Core business logic ├── models/ # Data models ├── schemas/ # Pydantic schemas for validation +├── services/ # Business services +├── templates/ # Email templates +│ └── emails/ # Jinja2 email templates ├── utils/ # Utilities -├── config/ # Configurations -└── services/ # Business services +└── config/ # Configurations ``` ## 📋 Requirements @@ -123,6 +127,19 @@ curl -X GET "http://localhost:8000/api/v1/clients/" \ - Regular users (associated with a client) only have access to their client's resources - Admin users have access to all resources - Certain operations (such as creating MCP servers) are restricted to administrators only +- Account lockout mechanism after multiple failed login attempts for enhanced security + +## 📧 Email Templates + +The platform uses Jinja2 templates for email rendering with a unified design system: + +- **Base Template**: All emails extend a common base template for consistent styling +- **Verification Email**: Sent when users register to verify their email address +- **Password Reset**: Sent when users request a password reset +- **Welcome Email**: Sent after email verification to guide new users +- **Account Locked**: Security alert when an account is locked due to multiple failed login attempts + +All email templates feature responsive design, clear call-to-action buttons, and fallback mechanisms. ## 🚀 Running the Project diff --git a/src/__pycache__/__init__.cpython-310.pyc b/src/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 3bf156d7..00000000 Binary files a/src/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/src/__pycache__/main.cpython-310.pyc b/src/__pycache__/main.cpython-310.pyc deleted file mode 100644 index 37150e48..00000000 Binary files a/src/__pycache__/main.cpython-310.pyc and /dev/null differ diff --git a/src/api/__pycache__/__init__.cpython-310.pyc b/src/api/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index b872ac8e..00000000 Binary files a/src/api/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/src/api/__pycache__/routes.cpython-310.pyc b/src/api/__pycache__/routes.cpython-310.pyc deleted file mode 100644 index c51bf5a2..00000000 Binary files a/src/api/__pycache__/routes.cpython-310.pyc and /dev/null differ diff --git a/src/core/__pycache__/__init__.cpython-310.pyc b/src/core/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 2ea6877d..00000000 Binary files a/src/core/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/src/core/__pycache__/exceptions.cpython-310.pyc b/src/core/__pycache__/exceptions.cpython-310.pyc deleted file mode 100644 index a6d97a66..00000000 Binary files a/src/core/__pycache__/exceptions.cpython-310.pyc and /dev/null differ diff --git a/src/schemas/__pycache__/__init__.cpython-310.pyc b/src/schemas/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 1252933a..00000000 Binary files a/src/schemas/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/src/schemas/__pycache__/chat.cpython-310.pyc b/src/schemas/__pycache__/chat.cpython-310.pyc deleted file mode 100644 index a2fcd858..00000000 Binary files a/src/schemas/__pycache__/chat.cpython-310.pyc and /dev/null differ diff --git a/src/schemas/__pycache__/schemas.cpython-310.pyc b/src/schemas/__pycache__/schemas.cpython-310.pyc deleted file mode 100644 index f07a7ae2..00000000 Binary files a/src/schemas/__pycache__/schemas.cpython-310.pyc and /dev/null differ diff --git a/src/services/__pycache__/__init__.cpython-310.pyc b/src/services/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 16f9e480..00000000 Binary files a/src/services/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/src/services/__pycache__/agent_builder.cpython-310.pyc b/src/services/__pycache__/agent_builder.cpython-310.pyc deleted file mode 100644 index 106f0ce6..00000000 Binary files a/src/services/__pycache__/agent_builder.cpython-310.pyc and /dev/null differ diff --git a/src/services/__pycache__/agent_runner.cpython-310.pyc b/src/services/__pycache__/agent_runner.cpython-310.pyc deleted file mode 100644 index e86b77c3..00000000 Binary files a/src/services/__pycache__/agent_runner.cpython-310.pyc and /dev/null differ diff --git a/src/services/__pycache__/agent_service.cpython-310.pyc b/src/services/__pycache__/agent_service.cpython-310.pyc deleted file mode 100644 index c5917287..00000000 Binary files a/src/services/__pycache__/agent_service.cpython-310.pyc and /dev/null differ diff --git a/src/services/__pycache__/client_service.cpython-310.pyc b/src/services/__pycache__/client_service.cpython-310.pyc deleted file mode 100644 index 1ab19ca9..00000000 Binary files a/src/services/__pycache__/client_service.cpython-310.pyc and /dev/null differ diff --git a/src/services/__pycache__/contact_service.cpython-310.pyc b/src/services/__pycache__/contact_service.cpython-310.pyc deleted file mode 100644 index 61b71abd..00000000 Binary files a/src/services/__pycache__/contact_service.cpython-310.pyc and /dev/null differ diff --git a/src/services/__pycache__/custom_tools.cpython-310.pyc b/src/services/__pycache__/custom_tools.cpython-310.pyc deleted file mode 100644 index 23a0fd27..00000000 Binary files a/src/services/__pycache__/custom_tools.cpython-310.pyc and /dev/null differ diff --git a/src/utils/__pycache__/__init__.cpython-310.pyc b/src/utils/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 017f9d41..00000000 Binary files a/src/utils/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/src/utils/__pycache__/logger.cpython-310.pyc b/src/utils/__pycache__/logger.cpython-310.pyc deleted file mode 100644 index d404ff3e..00000000 Binary files a/src/utils/__pycache__/logger.cpython-310.pyc and /dev/null differ