├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── NOTICE ├── README.md ├── pyproject.toml ├── requirements.txt ├── s3vectors ├── __init__.py ├── __version__.py ├── cli.py ├── commands │ ├── __init__.py │ ├── embed_put.py │ └── embed_query.py ├── core │ ├── __init__.py │ ├── services.py │ ├── streaming_batch_orchestrator.py │ └── unified_processor.py └── utils │ ├── __init__.py │ ├── boto_config.py │ ├── config.py │ ├── models.py │ └── multimodal_helpers.py ├── setup.py └── validate_package.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/requirements.txt -------------------------------------------------------------------------------- /s3vectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/s3vectors/__init__.py -------------------------------------------------------------------------------- /s3vectors/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/s3vectors/__version__.py -------------------------------------------------------------------------------- /s3vectors/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/s3vectors/cli.py -------------------------------------------------------------------------------- /s3vectors/commands/__init__.py: -------------------------------------------------------------------------------- 1 | """Command modules for S3 Vectors CLI.""" 2 | -------------------------------------------------------------------------------- /s3vectors/commands/embed_put.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/s3vectors/commands/embed_put.py -------------------------------------------------------------------------------- /s3vectors/commands/embed_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/s3vectors/commands/embed_query.py -------------------------------------------------------------------------------- /s3vectors/core/__init__.py: -------------------------------------------------------------------------------- 1 | """Core services for S3 Vectors operations.""" 2 | -------------------------------------------------------------------------------- /s3vectors/core/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/s3vectors/core/services.py -------------------------------------------------------------------------------- /s3vectors/core/streaming_batch_orchestrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/s3vectors/core/streaming_batch_orchestrator.py -------------------------------------------------------------------------------- /s3vectors/core/unified_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/s3vectors/core/unified_processor.py -------------------------------------------------------------------------------- /s3vectors/utils/__init__.py: -------------------------------------------------------------------------------- 1 | """Utility modules for S3 Vectors CLI.""" 2 | -------------------------------------------------------------------------------- /s3vectors/utils/boto_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/s3vectors/utils/boto_config.py -------------------------------------------------------------------------------- /s3vectors/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/s3vectors/utils/config.py -------------------------------------------------------------------------------- /s3vectors/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/s3vectors/utils/models.py -------------------------------------------------------------------------------- /s3vectors/utils/multimodal_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/s3vectors/utils/multimodal_helpers.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/setup.py -------------------------------------------------------------------------------- /validate_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/s3vectors-embed-cli/HEAD/validate_package.sh --------------------------------------------------------------------------------