├── .github ├── CODEOWNERS └── workflows │ └── unittests.yml ├── .gitignore ├── .python-version ├── LICENSE.md ├── README.md ├── client ├── README.md ├── pyproject.toml └── src │ └── vectorflow_client │ ├── __init__.py │ ├── chunk_enhancer.py │ ├── chunk_strategy.py │ ├── embeddings.py │ ├── embeddings_type.py │ ├── job.py │ ├── response.py │ ├── vector_db.py │ ├── vector_db_type.py │ └── vectorflow.py ├── docker-compose.yml ├── kube ├── api-deployment.yaml ├── api-service.yaml ├── config-map.yaml ├── db-init.yaml ├── extractor-deployment.yaml ├── hugging_face_deployment.yaml ├── minio-deployment.yaml ├── minio-init.yaml ├── minio-pvc.yaml ├── minio-service.yaml ├── postgres-deployment.yaml ├── postgres-pvc.yaml ├── postgres-service.yaml ├── qdrant-deployment.yaml ├── qdrant-init.yaml ├── qdrant-service.yaml ├── rabbitmq-deployment.yaml ├── rabbitmq-service.yaml ├── scripts │ └── deploy-local-k8s.sh ├── vectorflow-namespace.yaml └── worker-deployment.yaml ├── setup.sh ├── src ├── .dockerignore ├── api │ ├── .dockerignore │ ├── Dockerfile │ ├── __init__.py │ ├── app.py │ ├── auth.py │ ├── pipeline.py │ ├── posthog.py │ ├── requirements.txt │ ├── tests │ │ ├── __init__.py │ │ ├── fixtures │ │ │ ├── __init__.py │ │ │ ├── test_email.eml │ │ │ ├── test_file │ │ │ ├── test_html.html │ │ │ ├── test_json.json │ │ │ ├── test_long_text.txt │ │ │ ├── test_medium_text.txt │ │ │ ├── test_pdf.pdf │ │ │ ├── test_short_text.txt │ │ │ ├── test_text.txt │ │ │ └── test_xml.xml │ │ └── test_app.py │ └── validators.py ├── extract │ ├── Dockerfile │ ├── extract.py │ └── requirements.txt ├── models │ ├── __init__.py │ ├── batch.py │ ├── embeddings_metadata.py │ ├── job.py │ └── vector_db_metadata.py ├── scripts │ ├── Dockerfile │ ├── Dockerfile.local-qdrant │ ├── Dockerfile.minio │ ├── create_database.py │ ├── create_local_qdrant.py │ ├── setup_minio.py │ └── wait-for-it.sh ├── services │ ├── database │ │ ├── __init__.py │ │ ├── batch_service.py │ │ ├── database.py │ │ └── job_service.py │ ├── minio │ │ └── minio_service.py │ └── rabbitmq │ │ └── rabbit_service.py ├── shared │ ├── __init__.py │ ├── batch_status.py │ ├── chunk_strategy.py │ ├── embeddings_type.py │ ├── job_status.py │ ├── utils.py │ ├── vector_db_type.py │ └── vectorflow_request.py └── worker │ ├── Dockerfile │ ├── __init__.py │ ├── config.py │ ├── requirements.txt │ ├── tests │ ├── __init__.py │ ├── test_vector_uploader.py │ └── test_worker.py │ ├── vector_uploader.py │ └── worker.py └── testing-clients ├── get_jobs_by_ids.py ├── standard_upload_client.py ├── streaming_upload_client.py ├── test_vectorflow_client.py ├── webhook_hugging_face_testing_client.py └── webhook_test_api.py /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | @dgarnitz -------------------------------------------------------------------------------- /.github/workflows/unittests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/.github/workflows/unittests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.9.9 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/README.md -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/client/README.md -------------------------------------------------------------------------------- /client/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/client/pyproject.toml -------------------------------------------------------------------------------- /client/src/vectorflow_client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/vectorflow_client/chunk_enhancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/client/src/vectorflow_client/chunk_enhancer.py -------------------------------------------------------------------------------- /client/src/vectorflow_client/chunk_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/client/src/vectorflow_client/chunk_strategy.py -------------------------------------------------------------------------------- /client/src/vectorflow_client/embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/client/src/vectorflow_client/embeddings.py -------------------------------------------------------------------------------- /client/src/vectorflow_client/embeddings_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/client/src/vectorflow_client/embeddings_type.py -------------------------------------------------------------------------------- /client/src/vectorflow_client/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/client/src/vectorflow_client/job.py -------------------------------------------------------------------------------- /client/src/vectorflow_client/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/client/src/vectorflow_client/response.py -------------------------------------------------------------------------------- /client/src/vectorflow_client/vector_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/client/src/vectorflow_client/vector_db.py -------------------------------------------------------------------------------- /client/src/vectorflow_client/vector_db_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/client/src/vectorflow_client/vector_db_type.py -------------------------------------------------------------------------------- /client/src/vectorflow_client/vectorflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/client/src/vectorflow_client/vectorflow.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /kube/api-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/kube/api-deployment.yaml -------------------------------------------------------------------------------- /kube/api-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/kube/api-service.yaml -------------------------------------------------------------------------------- /kube/config-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/kube/config-map.yaml -------------------------------------------------------------------------------- /kube/db-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/kube/db-init.yaml -------------------------------------------------------------------------------- /kube/extractor-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/kube/extractor-deployment.yaml -------------------------------------------------------------------------------- /kube/hugging_face_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/kube/hugging_face_deployment.yaml -------------------------------------------------------------------------------- /kube/minio-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/kube/minio-deployment.yaml -------------------------------------------------------------------------------- /kube/minio-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/kube/minio-init.yaml -------------------------------------------------------------------------------- /kube/minio-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/kube/minio-pvc.yaml -------------------------------------------------------------------------------- /kube/minio-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/kube/minio-service.yaml -------------------------------------------------------------------------------- /kube/postgres-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/kube/postgres-deployment.yaml -------------------------------------------------------------------------------- /kube/postgres-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/kube/postgres-pvc.yaml -------------------------------------------------------------------------------- /kube/postgres-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/kube/postgres-service.yaml -------------------------------------------------------------------------------- /kube/qdrant-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/kube/qdrant-deployment.yaml -------------------------------------------------------------------------------- /kube/qdrant-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/kube/qdrant-init.yaml -------------------------------------------------------------------------------- /kube/qdrant-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/kube/qdrant-service.yaml -------------------------------------------------------------------------------- /kube/rabbitmq-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/kube/rabbitmq-deployment.yaml -------------------------------------------------------------------------------- /kube/rabbitmq-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/kube/rabbitmq-service.yaml -------------------------------------------------------------------------------- /kube/scripts/deploy-local-k8s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/kube/scripts/deploy-local-k8s.sh -------------------------------------------------------------------------------- /kube/vectorflow-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/kube/vectorflow-namespace.yaml -------------------------------------------------------------------------------- /kube/worker-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/kube/worker-deployment.yaml -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/setup.sh -------------------------------------------------------------------------------- /src/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/.dockerignore -------------------------------------------------------------------------------- /src/api/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/api/.dockerignore -------------------------------------------------------------------------------- /src/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/api/Dockerfile -------------------------------------------------------------------------------- /src/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/api/app.py -------------------------------------------------------------------------------- /src/api/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/api/auth.py -------------------------------------------------------------------------------- /src/api/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/api/pipeline.py -------------------------------------------------------------------------------- /src/api/posthog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/api/posthog.py -------------------------------------------------------------------------------- /src/api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/api/requirements.txt -------------------------------------------------------------------------------- /src/api/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/api/tests/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/api/tests/fixtures/test_email.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/api/tests/fixtures/test_email.eml -------------------------------------------------------------------------------- /src/api/tests/fixtures/test_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/api/tests/fixtures/test_file -------------------------------------------------------------------------------- /src/api/tests/fixtures/test_html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/api/tests/fixtures/test_html.html -------------------------------------------------------------------------------- /src/api/tests/fixtures/test_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/api/tests/fixtures/test_json.json -------------------------------------------------------------------------------- /src/api/tests/fixtures/test_long_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/api/tests/fixtures/test_long_text.txt -------------------------------------------------------------------------------- /src/api/tests/fixtures/test_medium_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/api/tests/fixtures/test_medium_text.txt -------------------------------------------------------------------------------- /src/api/tests/fixtures/test_pdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/api/tests/fixtures/test_pdf.pdf -------------------------------------------------------------------------------- /src/api/tests/fixtures/test_short_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/api/tests/fixtures/test_short_text.txt -------------------------------------------------------------------------------- /src/api/tests/fixtures/test_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/api/tests/fixtures/test_text.txt -------------------------------------------------------------------------------- /src/api/tests/fixtures/test_xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/api/tests/fixtures/test_xml.xml -------------------------------------------------------------------------------- /src/api/tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/api/tests/test_app.py -------------------------------------------------------------------------------- /src/api/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/api/validators.py -------------------------------------------------------------------------------- /src/extract/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/extract/Dockerfile -------------------------------------------------------------------------------- /src/extract/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/extract/extract.py -------------------------------------------------------------------------------- /src/extract/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/extract/requirements.txt -------------------------------------------------------------------------------- /src/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/models/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/models/batch.py -------------------------------------------------------------------------------- /src/models/embeddings_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/models/embeddings_metadata.py -------------------------------------------------------------------------------- /src/models/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/models/job.py -------------------------------------------------------------------------------- /src/models/vector_db_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/models/vector_db_metadata.py -------------------------------------------------------------------------------- /src/scripts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/scripts/Dockerfile -------------------------------------------------------------------------------- /src/scripts/Dockerfile.local-qdrant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/scripts/Dockerfile.local-qdrant -------------------------------------------------------------------------------- /src/scripts/Dockerfile.minio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/scripts/Dockerfile.minio -------------------------------------------------------------------------------- /src/scripts/create_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/scripts/create_database.py -------------------------------------------------------------------------------- /src/scripts/create_local_qdrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/scripts/create_local_qdrant.py -------------------------------------------------------------------------------- /src/scripts/setup_minio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/scripts/setup_minio.py -------------------------------------------------------------------------------- /src/scripts/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/scripts/wait-for-it.sh -------------------------------------------------------------------------------- /src/services/database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/services/database/batch_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/services/database/batch_service.py -------------------------------------------------------------------------------- /src/services/database/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/services/database/database.py -------------------------------------------------------------------------------- /src/services/database/job_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/services/database/job_service.py -------------------------------------------------------------------------------- /src/services/minio/minio_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/services/minio/minio_service.py -------------------------------------------------------------------------------- /src/services/rabbitmq/rabbit_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/services/rabbitmq/rabbit_service.py -------------------------------------------------------------------------------- /src/shared/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/shared/batch_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/shared/batch_status.py -------------------------------------------------------------------------------- /src/shared/chunk_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/shared/chunk_strategy.py -------------------------------------------------------------------------------- /src/shared/embeddings_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/shared/embeddings_type.py -------------------------------------------------------------------------------- /src/shared/job_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/shared/job_status.py -------------------------------------------------------------------------------- /src/shared/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/shared/utils.py -------------------------------------------------------------------------------- /src/shared/vector_db_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/shared/vector_db_type.py -------------------------------------------------------------------------------- /src/shared/vectorflow_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/shared/vectorflow_request.py -------------------------------------------------------------------------------- /src/worker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/worker/Dockerfile -------------------------------------------------------------------------------- /src/worker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/worker/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/worker/config.py -------------------------------------------------------------------------------- /src/worker/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/worker/requirements.txt -------------------------------------------------------------------------------- /src/worker/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/worker/tests/test_vector_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/worker/tests/test_vector_uploader.py -------------------------------------------------------------------------------- /src/worker/tests/test_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/worker/tests/test_worker.py -------------------------------------------------------------------------------- /src/worker/vector_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/worker/vector_uploader.py -------------------------------------------------------------------------------- /src/worker/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/src/worker/worker.py -------------------------------------------------------------------------------- /testing-clients/get_jobs_by_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/testing-clients/get_jobs_by_ids.py -------------------------------------------------------------------------------- /testing-clients/standard_upload_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/testing-clients/standard_upload_client.py -------------------------------------------------------------------------------- /testing-clients/streaming_upload_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/testing-clients/streaming_upload_client.py -------------------------------------------------------------------------------- /testing-clients/test_vectorflow_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/testing-clients/test_vectorflow_client.py -------------------------------------------------------------------------------- /testing-clients/webhook_hugging_face_testing_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/testing-clients/webhook_hugging_face_testing_client.py -------------------------------------------------------------------------------- /testing-clients/webhook_test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgarnitz/vectorflow/HEAD/testing-clients/webhook_test_api.py --------------------------------------------------------------------------------