├── .devcontainer └── devcontainer.json ├── .env.example ├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yaml └── workflows │ ├── azure-dev-validation.yaml │ ├── azure-dev.yaml │ ├── devcontainer-ci.yaml │ ├── frontend-format.yaml │ ├── python-lint-format.yaml │ └── python-unit-test.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── azure.yaml ├── infra ├── app │ └── key-vault-secrets.bicep ├── core │ ├── ai │ │ └── cognitiveservices.bicep │ ├── database │ │ ├── cosmos │ │ │ ├── cosmos-account.bicep │ │ │ ├── cosmos-pg-adapter.bicep │ │ │ ├── mongo │ │ │ │ ├── cosmos-mongo-account.bicep │ │ │ │ ├── cosmos-mongo-cluster.bicep │ │ │ │ └── cosmos-mongo-db.bicep │ │ │ └── sql │ │ │ │ ├── cosmos-sql-account.bicep │ │ │ │ ├── cosmos-sql-db.bicep │ │ │ │ ├── cosmos-sql-role-assign.bicep │ │ │ │ └── cosmos-sql-role-def.bicep │ │ ├── mysql │ │ │ └── flexibleserver.bicep │ │ ├── postgresql │ │ │ ├── aca-service.bicep │ │ │ └── flexibleserver.bicep │ │ └── sqlserver │ │ │ └── sqlserver.bicep │ ├── gateway │ │ ├── apim-api-policy.xml │ │ └── apim.bicep │ ├── host │ │ ├── aks-agent-pool.bicep │ │ ├── aks-managed-cluster.bicep │ │ ├── aks.bicep │ │ ├── appservice-appsettings.bicep │ │ ├── appservice.bicep │ │ ├── appserviceplan.bicep │ │ ├── container-app-upsert.bicep │ │ ├── container-app.bicep │ │ ├── container-apps-environment.bicep │ │ ├── container-apps.bicep │ │ ├── container-registry.bicep │ │ ├── functions.bicep │ │ └── staticwebapp.bicep │ ├── monitor │ │ ├── applicationinsights-dashboard.bicep │ │ ├── applicationinsights.bicep │ │ ├── loganalytics.bicep │ │ └── monitoring.bicep │ ├── networking │ │ ├── cdn-endpoint.bicep │ │ ├── cdn-profile.bicep │ │ └── cdn.bicep │ ├── search │ │ └── search-services.bicep │ ├── security │ │ ├── keyvault-access.bicep │ │ ├── keyvault-secret.bicep │ │ ├── keyvault.bicep │ │ ├── registry-access.bicep │ │ └── role.bicep │ └── storage │ │ └── storage-account.bicep ├── main.bicep └── main.parameters.json ├── pyproject.toml ├── rag-azure-openai-cosmosdb-notebook.ipynb ├── requirements-dev.txt ├── src ├── data │ ├── cleaned-top-movies-chunked.json │ └── text-sample.json ├── entrypoint.sh ├── frontend │ ├── index.html │ └── static │ │ └── styles.css ├── pyproject.toml ├── quartapp │ ├── __init__.py │ ├── app.py │ └── rag.py ├── requirements.in ├── requirements.txt └── scripts │ └── add_data.py └── tests ├── conftest.py ├── test_app.py └── test_config.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/.env.example -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/azure-dev-validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/.github/workflows/azure-dev-validation.yaml -------------------------------------------------------------------------------- /.github/workflows/azure-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/.github/workflows/azure-dev.yaml -------------------------------------------------------------------------------- /.github/workflows/devcontainer-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/.github/workflows/devcontainer-ci.yaml -------------------------------------------------------------------------------- /.github/workflows/frontend-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/.github/workflows/frontend-format.yaml -------------------------------------------------------------------------------- /.github/workflows/python-lint-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/.github/workflows/python-lint-format.yaml -------------------------------------------------------------------------------- /.github/workflows/python-unit-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/.github/workflows/python-unit-test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/README.md -------------------------------------------------------------------------------- /azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/azure.yaml -------------------------------------------------------------------------------- /infra/app/key-vault-secrets.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/app/key-vault-secrets.bicep -------------------------------------------------------------------------------- /infra/core/ai/cognitiveservices.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/ai/cognitiveservices.bicep -------------------------------------------------------------------------------- /infra/core/database/cosmos/cosmos-account.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/database/cosmos/cosmos-account.bicep -------------------------------------------------------------------------------- /infra/core/database/cosmos/cosmos-pg-adapter.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/database/cosmos/cosmos-pg-adapter.bicep -------------------------------------------------------------------------------- /infra/core/database/cosmos/mongo/cosmos-mongo-account.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/database/cosmos/mongo/cosmos-mongo-account.bicep -------------------------------------------------------------------------------- /infra/core/database/cosmos/mongo/cosmos-mongo-cluster.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/database/cosmos/mongo/cosmos-mongo-cluster.bicep -------------------------------------------------------------------------------- /infra/core/database/cosmos/mongo/cosmos-mongo-db.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/database/cosmos/mongo/cosmos-mongo-db.bicep -------------------------------------------------------------------------------- /infra/core/database/cosmos/sql/cosmos-sql-account.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/database/cosmos/sql/cosmos-sql-account.bicep -------------------------------------------------------------------------------- /infra/core/database/cosmos/sql/cosmos-sql-db.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/database/cosmos/sql/cosmos-sql-db.bicep -------------------------------------------------------------------------------- /infra/core/database/cosmos/sql/cosmos-sql-role-assign.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/database/cosmos/sql/cosmos-sql-role-assign.bicep -------------------------------------------------------------------------------- /infra/core/database/cosmos/sql/cosmos-sql-role-def.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/database/cosmos/sql/cosmos-sql-role-def.bicep -------------------------------------------------------------------------------- /infra/core/database/mysql/flexibleserver.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/database/mysql/flexibleserver.bicep -------------------------------------------------------------------------------- /infra/core/database/postgresql/aca-service.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/database/postgresql/aca-service.bicep -------------------------------------------------------------------------------- /infra/core/database/postgresql/flexibleserver.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/database/postgresql/flexibleserver.bicep -------------------------------------------------------------------------------- /infra/core/database/sqlserver/sqlserver.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/database/sqlserver/sqlserver.bicep -------------------------------------------------------------------------------- /infra/core/gateway/apim-api-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/gateway/apim-api-policy.xml -------------------------------------------------------------------------------- /infra/core/gateway/apim.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/gateway/apim.bicep -------------------------------------------------------------------------------- /infra/core/host/aks-agent-pool.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/host/aks-agent-pool.bicep -------------------------------------------------------------------------------- /infra/core/host/aks-managed-cluster.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/host/aks-managed-cluster.bicep -------------------------------------------------------------------------------- /infra/core/host/aks.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/host/aks.bicep -------------------------------------------------------------------------------- /infra/core/host/appservice-appsettings.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/host/appservice-appsettings.bicep -------------------------------------------------------------------------------- /infra/core/host/appservice.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/host/appservice.bicep -------------------------------------------------------------------------------- /infra/core/host/appserviceplan.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/host/appserviceplan.bicep -------------------------------------------------------------------------------- /infra/core/host/container-app-upsert.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/host/container-app-upsert.bicep -------------------------------------------------------------------------------- /infra/core/host/container-app.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/host/container-app.bicep -------------------------------------------------------------------------------- /infra/core/host/container-apps-environment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/host/container-apps-environment.bicep -------------------------------------------------------------------------------- /infra/core/host/container-apps.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/host/container-apps.bicep -------------------------------------------------------------------------------- /infra/core/host/container-registry.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/host/container-registry.bicep -------------------------------------------------------------------------------- /infra/core/host/functions.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/host/functions.bicep -------------------------------------------------------------------------------- /infra/core/host/staticwebapp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/host/staticwebapp.bicep -------------------------------------------------------------------------------- /infra/core/monitor/applicationinsights-dashboard.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/monitor/applicationinsights-dashboard.bicep -------------------------------------------------------------------------------- /infra/core/monitor/applicationinsights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/monitor/applicationinsights.bicep -------------------------------------------------------------------------------- /infra/core/monitor/loganalytics.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/monitor/loganalytics.bicep -------------------------------------------------------------------------------- /infra/core/monitor/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/monitor/monitoring.bicep -------------------------------------------------------------------------------- /infra/core/networking/cdn-endpoint.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/networking/cdn-endpoint.bicep -------------------------------------------------------------------------------- /infra/core/networking/cdn-profile.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/networking/cdn-profile.bicep -------------------------------------------------------------------------------- /infra/core/networking/cdn.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/networking/cdn.bicep -------------------------------------------------------------------------------- /infra/core/search/search-services.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/search/search-services.bicep -------------------------------------------------------------------------------- /infra/core/security/keyvault-access.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/security/keyvault-access.bicep -------------------------------------------------------------------------------- /infra/core/security/keyvault-secret.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/security/keyvault-secret.bicep -------------------------------------------------------------------------------- /infra/core/security/keyvault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/security/keyvault.bicep -------------------------------------------------------------------------------- /infra/core/security/registry-access.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/security/registry-access.bicep -------------------------------------------------------------------------------- /infra/core/security/role.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/security/role.bicep -------------------------------------------------------------------------------- /infra/core/storage/storage-account.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/core/storage/storage-account.bicep -------------------------------------------------------------------------------- /infra/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/main.bicep -------------------------------------------------------------------------------- /infra/main.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/infra/main.parameters.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rag-azure-openai-cosmosdb-notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/rag-azure-openai-cosmosdb-notebook.ipynb -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /src/data/cleaned-top-movies-chunked.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/src/data/cleaned-top-movies-chunked.json -------------------------------------------------------------------------------- /src/data/text-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/src/data/text-sample.json -------------------------------------------------------------------------------- /src/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/src/entrypoint.sh -------------------------------------------------------------------------------- /src/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/src/frontend/index.html -------------------------------------------------------------------------------- /src/frontend/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/src/frontend/static/styles.css -------------------------------------------------------------------------------- /src/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/src/pyproject.toml -------------------------------------------------------------------------------- /src/quartapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/src/quartapp/__init__.py -------------------------------------------------------------------------------- /src/quartapp/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/src/quartapp/app.py -------------------------------------------------------------------------------- /src/quartapp/rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/src/quartapp/rag.py -------------------------------------------------------------------------------- /src/requirements.in: -------------------------------------------------------------------------------- 1 | semantic-kernel==1.18.0 2 | pymongo 3 | motor 4 | python-dotenv 5 | Quart 6 | Hypercorn 7 | -------------------------------------------------------------------------------- /src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/src/requirements.txt -------------------------------------------------------------------------------- /src/scripts/add_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/src/scripts/add_data.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/tests/test_app.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john0isaac/rag-semantic-kernel-mongodb-vcore/HEAD/tests/test_config.py --------------------------------------------------------------------------------