├── .dockerignore ├── .github └── workflows │ ├── pre-commit.yaml │ └── tfy-deploy.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .tfyignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __init__.py ├── backend ├── Dockerfile ├── __init__.py ├── constants.py ├── database │ └── schema.prisma ├── indexer │ ├── __init__.py │ ├── argument_parser.py │ ├── indexer.py │ ├── main.py │ └── types.py ├── logger.py ├── migration │ ├── __init__.py │ ├── qdrant_migration.py │ └── utils.py ├── modules │ ├── __init__.py │ ├── dataloaders │ │ ├── __init__.py │ │ ├── loader.py │ │ ├── local_dir_loader.py │ │ ├── truefoundry_loader.py │ │ └── web_loader.py │ ├── metadata_store │ │ ├── __init__.py │ │ ├── base.py │ │ ├── client.py │ │ └── prisma_store.py │ ├── model_gateway │ │ ├── __init__.py │ │ ├── audio_processing_svc.py │ │ ├── model_gateway.py │ │ └── reranker_svc.py │ ├── parsers │ │ ├── __init__.py │ │ ├── audio_parser.py │ │ ├── multi_modal_parser.py │ │ ├── parser.py │ │ ├── unstructured_io.py │ │ ├── utils.py │ │ ├── video_parser.py │ │ └── web_parser.py │ ├── query_controllers │ │ ├── __init__.py │ │ ├── base.py │ │ ├── example │ │ │ ├── controller.py │ │ │ ├── payload.py │ │ │ └── types.py │ │ ├── multimodal │ │ │ ├── controller.py │ │ │ ├── payload.py │ │ │ └── types.py │ │ ├── query_controller.py │ │ └── types.py │ └── vector_db │ │ ├── __init__.py │ │ ├── base.py │ │ ├── client.py │ │ ├── milvus.py │ │ ├── mongo.py │ │ ├── qdrant.py │ │ ├── singlestore.py │ │ └── weaviate.py ├── requirements.txt ├── server │ ├── __init__.py │ ├── app.py │ ├── decorators.py │ └── routers │ │ ├── __init__.py │ │ ├── collection.py │ │ ├── components.py │ │ ├── data_source.py │ │ ├── internal.py │ │ └── rag_apps.py ├── settings.py ├── types.py ├── utils.py └── vectordb.requirements.txt ├── compose.env ├── deployment ├── __init__.py ├── audio.py ├── backend.py ├── config.py ├── deploy.py ├── frontend.py ├── indexer.py ├── infinity.py ├── postgres_database.py ├── qdrant.py ├── qdrant_ui.py └── unstructured_io.py ├── docker-compose.yaml ├── docs ├── assets │ └── architecture.drawio └── images │ ├── RAG-TF.gif │ ├── adding-collection.png │ ├── dataingestion-complete.png │ ├── dataingestion-started.png │ ├── datasource.png │ ├── list-datasources-in-collection.png │ ├── rag_arch.png │ ├── readme-banner.png │ ├── response-generation.png │ └── webinar-banner.png ├── frontend ├── .dockerignore ├── .editorconfig ├── .eslintrc ├── .github │ └── workflows │ │ └── docs-qa-release.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── Dockerfile ├── Dockerfile.dev ├── README.md ├── env.d.ts ├── index.html ├── package.json ├── postcss.config.js ├── public │ ├── _redirects │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── mstile-144x144.png │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ ├── mstile-310x310.png │ ├── mstile-70x70.png │ ├── opengraph.png │ ├── robots.txt │ ├── safari-pinned-tab.svg │ ├── site.webmanifest │ └── sitemap.xml ├── servicefoundry.yaml ├── src │ ├── App.tsx │ ├── Head.tsx │ ├── api │ │ ├── truefoundry.ts │ │ └── utils.ts │ ├── assets │ │ ├── css │ │ │ └── toast.css │ │ └── img │ │ │ ├── dgpt-docs.svg │ │ │ ├── dgpt-search.svg │ │ │ ├── drawer_bars.svg │ │ │ ├── errors │ │ │ ├── 401.svg │ │ │ ├── 404.svg │ │ │ └── 500.svg │ │ │ ├── logos │ │ │ ├── CognitaLightLogo.png │ │ │ ├── CognitaLogo.png │ │ │ ├── logo-with-text.png │ │ │ ├── logo.svg │ │ │ └── x_twitter.png │ │ │ └── paper-plane-top.svg │ ├── components │ │ ├── assets │ │ │ └── IconProvider.tsx │ │ └── base │ │ │ ├── atoms │ │ │ ├── Badge.tsx │ │ │ ├── Button.tsx │ │ │ ├── CodeBlock.tsx │ │ │ ├── CopyField.tsx │ │ │ ├── CustomDrawer.tsx │ │ │ ├── Input.tsx │ │ │ ├── Link.tsx │ │ │ ├── Markdown.tsx │ │ │ ├── Modal.tsx │ │ │ ├── Notification.tsx │ │ │ ├── Picker.tsx │ │ │ ├── Spinner │ │ │ │ ├── Spinner.tsx │ │ │ │ ├── components │ │ │ │ │ └── SpinnerDots.tsx │ │ │ │ └── index.ts │ │ │ ├── Switch.tsx │ │ │ └── Tooltip.tsx │ │ │ └── molecules │ │ │ ├── ErrorPage.tsx │ │ │ ├── Notify.tsx │ │ │ ├── ScreenFallbackLoader.tsx │ │ │ ├── SimpleCodeEditor.tsx │ │ │ ├── Table.tsx │ │ │ └── modals │ │ │ └── Alert.tsx │ ├── fontawesome.ts │ ├── index.scss │ ├── index.tsx │ ├── layouts │ │ └── AppLayout.tsx │ ├── materialTheme.ts │ ├── reportWebVitals.ts │ ├── router │ │ ├── DocsQA.tsx │ │ ├── Error.tsx │ │ ├── history.ts │ │ └── index.tsx │ ├── screens │ │ ├── dashboard │ │ │ └── docsqa │ │ │ │ ├── AddDataSourceToCollection.tsx │ │ │ │ ├── Applications │ │ │ │ └── index.tsx │ │ │ │ ├── Chatbot │ │ │ │ └── index.tsx │ │ │ │ ├── CollectionCard.tsx │ │ │ │ ├── DataSources │ │ │ │ ├── FileUpload.tsx │ │ │ │ ├── FormType.ts │ │ │ │ ├── NewDataSource.tsx │ │ │ │ ├── WebDataSource.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── DocsQA │ │ │ │ ├── CustomPreview.css │ │ │ │ ├── DocLink.tsx │ │ │ │ ├── DocPreviewSlideOut.tsx │ │ │ │ ├── SourceDocsPreview.tsx │ │ │ │ └── types.ts │ │ │ │ ├── DocsQaInformation.tsx │ │ │ │ ├── Navbar.tsx │ │ │ │ ├── NewCollection.tsx │ │ │ │ ├── NoCollections.tsx │ │ │ │ ├── RunsHistoryDrawer.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── main │ │ │ │ ├── DocsQA.tsx │ │ │ │ ├── components │ │ │ │ │ ├── Answer.tsx │ │ │ │ │ ├── ApplicationModal.tsx │ │ │ │ │ ├── Chat.tsx │ │ │ │ │ ├── ConfigSelector.tsx │ │ │ │ │ ├── ConfigSidebar.tsx │ │ │ │ │ ├── ErrorAnswer.tsx │ │ │ │ │ ├── NoAnswer.tsx │ │ │ │ │ └── PromptForm.tsx │ │ │ │ ├── context.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── types.tsx │ │ │ │ └── settings │ │ │ │ ├── DataSourcesTable.tsx │ │ │ │ └── index.tsx │ │ └── error │ │ │ ├── 401.tsx │ │ │ ├── 404.tsx │ │ │ ├── 500.tsx │ │ │ └── TenantNotFound.tsx │ ├── setupTests.js │ ├── stores │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── qafoundry │ │ │ └── index.ts │ │ └── utils.ts │ ├── types │ │ ├── enums.ts │ │ ├── retrieverTypes.ts │ │ └── ui.d.ts │ └── utils │ │ ├── artifacts.ts │ │ ├── classNames.ts │ │ ├── error.ts │ │ ├── file.ts │ │ ├── index.ts │ │ └── tailwindScrollbar.ts ├── start.sh ├── tailwind.config.ts ├── tsconfig.json ├── vite.config.ts └── yarn.lock ├── models_config.sample.yaml ├── sample-data ├── audio │ └── motivation.mp3 ├── creditcards │ ├── diners-club-black-metal-edition.md │ ├── diners-club-black.md │ ├── freedom-card-new.md │ ├── hdfc-bank-upi-rupay-credit-card.md │ ├── indianoil-hdfc-bank-credit-card.md │ ├── infinia-credit-card.md │ ├── marriott-bonvoy-credit-card.md │ ├── moneyback-plus.md │ ├── regalia-gold-credit-card.md │ └── swiggy-hdfc-bank-credit-card.md ├── finance │ └── report-short.pdf ├── mlops-pdf │ ├── llm-survey-report.pdf │ └── practitioners_guide_to_mlops_whitepaper.pdf ├── text-essays │ └── paul-graham-persistence.txt └── video │ └── rag_intro.mp4 ├── seccomp.json └── truefoundry.yaml /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/.github/workflows/pre-commit.yaml -------------------------------------------------------------------------------- /.github/workflows/tfy-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/.github/workflows/tfy-deploy.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.tfyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/.tfyignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/__init__.py -------------------------------------------------------------------------------- /backend/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/constants.py -------------------------------------------------------------------------------- /backend/database/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/database/schema.prisma -------------------------------------------------------------------------------- /backend/indexer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/indexer/__init__.py -------------------------------------------------------------------------------- /backend/indexer/argument_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/indexer/argument_parser.py -------------------------------------------------------------------------------- /backend/indexer/indexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/indexer/indexer.py -------------------------------------------------------------------------------- /backend/indexer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/indexer/main.py -------------------------------------------------------------------------------- /backend/indexer/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/indexer/types.py -------------------------------------------------------------------------------- /backend/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/logger.py -------------------------------------------------------------------------------- /backend/migration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/migration/qdrant_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/migration/qdrant_migration.py -------------------------------------------------------------------------------- /backend/migration/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/migration/utils.py -------------------------------------------------------------------------------- /backend/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/modules/dataloaders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/dataloaders/__init__.py -------------------------------------------------------------------------------- /backend/modules/dataloaders/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/dataloaders/loader.py -------------------------------------------------------------------------------- /backend/modules/dataloaders/local_dir_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/dataloaders/local_dir_loader.py -------------------------------------------------------------------------------- /backend/modules/dataloaders/truefoundry_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/dataloaders/truefoundry_loader.py -------------------------------------------------------------------------------- /backend/modules/dataloaders/web_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/dataloaders/web_loader.py -------------------------------------------------------------------------------- /backend/modules/metadata_store/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/metadata_store/__init__.py -------------------------------------------------------------------------------- /backend/modules/metadata_store/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/metadata_store/base.py -------------------------------------------------------------------------------- /backend/modules/metadata_store/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/metadata_store/client.py -------------------------------------------------------------------------------- /backend/modules/metadata_store/prisma_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/metadata_store/prisma_store.py -------------------------------------------------------------------------------- /backend/modules/model_gateway/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/modules/model_gateway/audio_processing_svc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/model_gateway/audio_processing_svc.py -------------------------------------------------------------------------------- /backend/modules/model_gateway/model_gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/model_gateway/model_gateway.py -------------------------------------------------------------------------------- /backend/modules/model_gateway/reranker_svc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/model_gateway/reranker_svc.py -------------------------------------------------------------------------------- /backend/modules/parsers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/parsers/__init__.py -------------------------------------------------------------------------------- /backend/modules/parsers/audio_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/parsers/audio_parser.py -------------------------------------------------------------------------------- /backend/modules/parsers/multi_modal_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/parsers/multi_modal_parser.py -------------------------------------------------------------------------------- /backend/modules/parsers/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/parsers/parser.py -------------------------------------------------------------------------------- /backend/modules/parsers/unstructured_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/parsers/unstructured_io.py -------------------------------------------------------------------------------- /backend/modules/parsers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/parsers/utils.py -------------------------------------------------------------------------------- /backend/modules/parsers/video_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/parsers/video_parser.py -------------------------------------------------------------------------------- /backend/modules/parsers/web_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/parsers/web_parser.py -------------------------------------------------------------------------------- /backend/modules/query_controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/query_controllers/__init__.py -------------------------------------------------------------------------------- /backend/modules/query_controllers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/query_controllers/base.py -------------------------------------------------------------------------------- /backend/modules/query_controllers/example/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/query_controllers/example/controller.py -------------------------------------------------------------------------------- /backend/modules/query_controllers/example/payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/query_controllers/example/payload.py -------------------------------------------------------------------------------- /backend/modules/query_controllers/example/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/query_controllers/example/types.py -------------------------------------------------------------------------------- /backend/modules/query_controllers/multimodal/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/query_controllers/multimodal/controller.py -------------------------------------------------------------------------------- /backend/modules/query_controllers/multimodal/payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/query_controllers/multimodal/payload.py -------------------------------------------------------------------------------- /backend/modules/query_controllers/multimodal/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/query_controllers/multimodal/types.py -------------------------------------------------------------------------------- /backend/modules/query_controllers/query_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/query_controllers/query_controller.py -------------------------------------------------------------------------------- /backend/modules/query_controllers/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/query_controllers/types.py -------------------------------------------------------------------------------- /backend/modules/vector_db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/vector_db/__init__.py -------------------------------------------------------------------------------- /backend/modules/vector_db/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/vector_db/base.py -------------------------------------------------------------------------------- /backend/modules/vector_db/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/vector_db/client.py -------------------------------------------------------------------------------- /backend/modules/vector_db/milvus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/vector_db/milvus.py -------------------------------------------------------------------------------- /backend/modules/vector_db/mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/vector_db/mongo.py -------------------------------------------------------------------------------- /backend/modules/vector_db/qdrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/vector_db/qdrant.py -------------------------------------------------------------------------------- /backend/modules/vector_db/singlestore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/vector_db/singlestore.py -------------------------------------------------------------------------------- /backend/modules/vector_db/weaviate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/modules/vector_db/weaviate.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/server/app.py -------------------------------------------------------------------------------- /backend/server/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/server/decorators.py -------------------------------------------------------------------------------- /backend/server/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/server/routers/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/server/routers/collection.py -------------------------------------------------------------------------------- /backend/server/routers/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/server/routers/components.py -------------------------------------------------------------------------------- /backend/server/routers/data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/server/routers/data_source.py -------------------------------------------------------------------------------- /backend/server/routers/internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/server/routers/internal.py -------------------------------------------------------------------------------- /backend/server/routers/rag_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/server/routers/rag_apps.py -------------------------------------------------------------------------------- /backend/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/settings.py -------------------------------------------------------------------------------- /backend/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/types.py -------------------------------------------------------------------------------- /backend/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/utils.py -------------------------------------------------------------------------------- /backend/vectordb.requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/backend/vectordb.requirements.txt -------------------------------------------------------------------------------- /compose.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/compose.env -------------------------------------------------------------------------------- /deployment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/deployment/audio.py -------------------------------------------------------------------------------- /deployment/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/deployment/backend.py -------------------------------------------------------------------------------- /deployment/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/deployment/config.py -------------------------------------------------------------------------------- /deployment/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/deployment/deploy.py -------------------------------------------------------------------------------- /deployment/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/deployment/frontend.py -------------------------------------------------------------------------------- /deployment/indexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/deployment/indexer.py -------------------------------------------------------------------------------- /deployment/infinity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/deployment/infinity.py -------------------------------------------------------------------------------- /deployment/postgres_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/deployment/postgres_database.py -------------------------------------------------------------------------------- /deployment/qdrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/deployment/qdrant.py -------------------------------------------------------------------------------- /deployment/qdrant_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/deployment/qdrant_ui.py -------------------------------------------------------------------------------- /deployment/unstructured_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/deployment/unstructured_io.py -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/assets/architecture.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/docs/assets/architecture.drawio -------------------------------------------------------------------------------- /docs/images/RAG-TF.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/docs/images/RAG-TF.gif -------------------------------------------------------------------------------- /docs/images/adding-collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/docs/images/adding-collection.png -------------------------------------------------------------------------------- /docs/images/dataingestion-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/docs/images/dataingestion-complete.png -------------------------------------------------------------------------------- /docs/images/dataingestion-started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/docs/images/dataingestion-started.png -------------------------------------------------------------------------------- /docs/images/datasource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/docs/images/datasource.png -------------------------------------------------------------------------------- /docs/images/list-datasources-in-collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/docs/images/list-datasources-in-collection.png -------------------------------------------------------------------------------- /docs/images/rag_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/docs/images/rag_arch.png -------------------------------------------------------------------------------- /docs/images/readme-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/docs/images/readme-banner.png -------------------------------------------------------------------------------- /docs/images/response-generation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/docs/images/response-generation.png -------------------------------------------------------------------------------- /docs/images/webinar-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/docs/images/webinar-banner.png -------------------------------------------------------------------------------- /frontend/.dockerignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/.editorconfig -------------------------------------------------------------------------------- /frontend/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/.eslintrc -------------------------------------------------------------------------------- /frontend/.github/workflows/docs-qa-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/.github/workflows/docs-qa-release.yaml -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/.prettierignore -------------------------------------------------------------------------------- /frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/.prettierrc -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/Dockerfile.dev -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/env.d.ts -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/public/_redirects -------------------------------------------------------------------------------- /frontend/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /frontend/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /frontend/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/public/apple-touch-icon.png -------------------------------------------------------------------------------- /frontend/public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/public/browserconfig.xml -------------------------------------------------------------------------------- /frontend/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/public/favicon-16x16.png -------------------------------------------------------------------------------- /frontend/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/public/favicon-32x32.png -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/public/mstile-144x144.png -------------------------------------------------------------------------------- /frontend/public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/public/mstile-150x150.png -------------------------------------------------------------------------------- /frontend/public/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/public/mstile-310x150.png -------------------------------------------------------------------------------- /frontend/public/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/public/mstile-310x310.png -------------------------------------------------------------------------------- /frontend/public/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/public/mstile-70x70.png -------------------------------------------------------------------------------- /frontend/public/opengraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/public/opengraph.png -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /cgi-bin/ 3 | -------------------------------------------------------------------------------- /frontend/public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /frontend/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/public/site.webmanifest -------------------------------------------------------------------------------- /frontend/public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/public/sitemap.xml -------------------------------------------------------------------------------- /frontend/servicefoundry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/servicefoundry.yaml -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/Head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/Head.tsx -------------------------------------------------------------------------------- /frontend/src/api/truefoundry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/api/truefoundry.ts -------------------------------------------------------------------------------- /frontend/src/api/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/api/utils.ts -------------------------------------------------------------------------------- /frontend/src/assets/css/toast.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/assets/css/toast.css -------------------------------------------------------------------------------- /frontend/src/assets/img/dgpt-docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/assets/img/dgpt-docs.svg -------------------------------------------------------------------------------- /frontend/src/assets/img/dgpt-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/assets/img/dgpt-search.svg -------------------------------------------------------------------------------- /frontend/src/assets/img/drawer_bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/assets/img/drawer_bars.svg -------------------------------------------------------------------------------- /frontend/src/assets/img/errors/401.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/assets/img/errors/401.svg -------------------------------------------------------------------------------- /frontend/src/assets/img/errors/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/assets/img/errors/404.svg -------------------------------------------------------------------------------- /frontend/src/assets/img/errors/500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/assets/img/errors/500.svg -------------------------------------------------------------------------------- /frontend/src/assets/img/logos/CognitaLightLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/assets/img/logos/CognitaLightLogo.png -------------------------------------------------------------------------------- /frontend/src/assets/img/logos/CognitaLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/assets/img/logos/CognitaLogo.png -------------------------------------------------------------------------------- /frontend/src/assets/img/logos/logo-with-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/assets/img/logos/logo-with-text.png -------------------------------------------------------------------------------- /frontend/src/assets/img/logos/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/assets/img/logos/logo.svg -------------------------------------------------------------------------------- /frontend/src/assets/img/logos/x_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/assets/img/logos/x_twitter.png -------------------------------------------------------------------------------- /frontend/src/assets/img/paper-plane-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/assets/img/paper-plane-top.svg -------------------------------------------------------------------------------- /frontend/src/components/assets/IconProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/components/assets/IconProvider.tsx -------------------------------------------------------------------------------- /frontend/src/components/base/atoms/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/components/base/atoms/Badge.tsx -------------------------------------------------------------------------------- /frontend/src/components/base/atoms/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/components/base/atoms/Button.tsx -------------------------------------------------------------------------------- /frontend/src/components/base/atoms/CodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/components/base/atoms/CodeBlock.tsx -------------------------------------------------------------------------------- /frontend/src/components/base/atoms/CopyField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/components/base/atoms/CopyField.tsx -------------------------------------------------------------------------------- /frontend/src/components/base/atoms/CustomDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/components/base/atoms/CustomDrawer.tsx -------------------------------------------------------------------------------- /frontend/src/components/base/atoms/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/components/base/atoms/Input.tsx -------------------------------------------------------------------------------- /frontend/src/components/base/atoms/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/components/base/atoms/Link.tsx -------------------------------------------------------------------------------- /frontend/src/components/base/atoms/Markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/components/base/atoms/Markdown.tsx -------------------------------------------------------------------------------- /frontend/src/components/base/atoms/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/components/base/atoms/Modal.tsx -------------------------------------------------------------------------------- /frontend/src/components/base/atoms/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/components/base/atoms/Notification.tsx -------------------------------------------------------------------------------- /frontend/src/components/base/atoms/Picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/components/base/atoms/Picker.tsx -------------------------------------------------------------------------------- /frontend/src/components/base/atoms/Spinner/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/components/base/atoms/Spinner/Spinner.tsx -------------------------------------------------------------------------------- /frontend/src/components/base/atoms/Spinner/components/SpinnerDots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/components/base/atoms/Spinner/components/SpinnerDots.tsx -------------------------------------------------------------------------------- /frontend/src/components/base/atoms/Spinner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Spinner' 2 | -------------------------------------------------------------------------------- /frontend/src/components/base/atoms/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/components/base/atoms/Switch.tsx -------------------------------------------------------------------------------- /frontend/src/components/base/atoms/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/components/base/atoms/Tooltip.tsx -------------------------------------------------------------------------------- /frontend/src/components/base/molecules/ErrorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/components/base/molecules/ErrorPage.tsx -------------------------------------------------------------------------------- /frontend/src/components/base/molecules/Notify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/components/base/molecules/Notify.tsx -------------------------------------------------------------------------------- /frontend/src/components/base/molecules/ScreenFallbackLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/components/base/molecules/ScreenFallbackLoader.tsx -------------------------------------------------------------------------------- /frontend/src/components/base/molecules/SimpleCodeEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/components/base/molecules/SimpleCodeEditor.tsx -------------------------------------------------------------------------------- /frontend/src/components/base/molecules/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/components/base/molecules/Table.tsx -------------------------------------------------------------------------------- /frontend/src/components/base/molecules/modals/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/components/base/molecules/modals/Alert.tsx -------------------------------------------------------------------------------- /frontend/src/fontawesome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/fontawesome.ts -------------------------------------------------------------------------------- /frontend/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/index.scss -------------------------------------------------------------------------------- /frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/index.tsx -------------------------------------------------------------------------------- /frontend/src/layouts/AppLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/layouts/AppLayout.tsx -------------------------------------------------------------------------------- /frontend/src/materialTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/materialTheme.ts -------------------------------------------------------------------------------- /frontend/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/reportWebVitals.ts -------------------------------------------------------------------------------- /frontend/src/router/DocsQA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/router/DocsQA.tsx -------------------------------------------------------------------------------- /frontend/src/router/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/router/Error.tsx -------------------------------------------------------------------------------- /frontend/src/router/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/router/history.ts -------------------------------------------------------------------------------- /frontend/src/router/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/router/index.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/AddDataSourceToCollection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/AddDataSourceToCollection.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/Applications/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/Applications/index.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/Chatbot/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/Chatbot/index.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/CollectionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/CollectionCard.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/DataSources/FileUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/DataSources/FileUpload.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/DataSources/FormType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/DataSources/FormType.ts -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/DataSources/NewDataSource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/DataSources/NewDataSource.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/DataSources/WebDataSource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/DataSources/WebDataSource.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/DataSources/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/DataSources/index.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/DocsQA/CustomPreview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/DocsQA/CustomPreview.css -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/DocsQA/DocLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/DocsQA/DocLink.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/DocsQA/DocPreviewSlideOut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/DocsQA/DocPreviewSlideOut.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/DocsQA/SourceDocsPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/DocsQA/SourceDocsPreview.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/DocsQA/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/DocsQA/types.ts -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/DocsQaInformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/DocsQaInformation.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/Navbar.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/NewCollection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/NewCollection.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/NoCollections.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/NoCollections.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/RunsHistoryDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/RunsHistoryDrawer.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/index.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/main/DocsQA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/main/DocsQA.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/main/components/Answer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/main/components/Answer.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/main/components/ApplicationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/main/components/ApplicationModal.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/main/components/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/main/components/Chat.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/main/components/ConfigSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/main/components/ConfigSelector.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/main/components/ConfigSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/main/components/ConfigSidebar.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/main/components/ErrorAnswer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/main/components/ErrorAnswer.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/main/components/NoAnswer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/main/components/NoAnswer.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/main/components/PromptForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/main/components/PromptForm.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/main/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/main/context.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/main/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/main/index.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/main/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/main/types.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/settings/DataSourcesTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/settings/DataSourcesTable.tsx -------------------------------------------------------------------------------- /frontend/src/screens/dashboard/docsqa/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/dashboard/docsqa/settings/index.tsx -------------------------------------------------------------------------------- /frontend/src/screens/error/401.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/error/401.tsx -------------------------------------------------------------------------------- /frontend/src/screens/error/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/error/404.tsx -------------------------------------------------------------------------------- /frontend/src/screens/error/500.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/error/500.tsx -------------------------------------------------------------------------------- /frontend/src/screens/error/TenantNotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/screens/error/TenantNotFound.tsx -------------------------------------------------------------------------------- /frontend/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/setupTests.js -------------------------------------------------------------------------------- /frontend/src/stores/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/stores/constants.ts -------------------------------------------------------------------------------- /frontend/src/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/stores/index.ts -------------------------------------------------------------------------------- /frontend/src/stores/qafoundry/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/stores/qafoundry/index.ts -------------------------------------------------------------------------------- /frontend/src/stores/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/stores/utils.ts -------------------------------------------------------------------------------- /frontend/src/types/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/types/enums.ts -------------------------------------------------------------------------------- /frontend/src/types/retrieverTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/types/retrieverTypes.ts -------------------------------------------------------------------------------- /frontend/src/types/ui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/types/ui.d.ts -------------------------------------------------------------------------------- /frontend/src/utils/artifacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/utils/artifacts.ts -------------------------------------------------------------------------------- /frontend/src/utils/classNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/utils/classNames.ts -------------------------------------------------------------------------------- /frontend/src/utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/utils/error.ts -------------------------------------------------------------------------------- /frontend/src/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/utils/file.ts -------------------------------------------------------------------------------- /frontend/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/utils/index.ts -------------------------------------------------------------------------------- /frontend/src/utils/tailwindScrollbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/src/utils/tailwindScrollbar.ts -------------------------------------------------------------------------------- /frontend/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/start.sh -------------------------------------------------------------------------------- /frontend/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/tailwind.config.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/vite.config.ts -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/frontend/yarn.lock -------------------------------------------------------------------------------- /models_config.sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/models_config.sample.yaml -------------------------------------------------------------------------------- /sample-data/audio/motivation.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/sample-data/audio/motivation.mp3 -------------------------------------------------------------------------------- /sample-data/creditcards/diners-club-black-metal-edition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/sample-data/creditcards/diners-club-black-metal-edition.md -------------------------------------------------------------------------------- /sample-data/creditcards/diners-club-black.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/sample-data/creditcards/diners-club-black.md -------------------------------------------------------------------------------- /sample-data/creditcards/freedom-card-new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/sample-data/creditcards/freedom-card-new.md -------------------------------------------------------------------------------- /sample-data/creditcards/hdfc-bank-upi-rupay-credit-card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/sample-data/creditcards/hdfc-bank-upi-rupay-credit-card.md -------------------------------------------------------------------------------- /sample-data/creditcards/indianoil-hdfc-bank-credit-card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/sample-data/creditcards/indianoil-hdfc-bank-credit-card.md -------------------------------------------------------------------------------- /sample-data/creditcards/infinia-credit-card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/sample-data/creditcards/infinia-credit-card.md -------------------------------------------------------------------------------- /sample-data/creditcards/marriott-bonvoy-credit-card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/sample-data/creditcards/marriott-bonvoy-credit-card.md -------------------------------------------------------------------------------- /sample-data/creditcards/moneyback-plus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/sample-data/creditcards/moneyback-plus.md -------------------------------------------------------------------------------- /sample-data/creditcards/regalia-gold-credit-card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/sample-data/creditcards/regalia-gold-credit-card.md -------------------------------------------------------------------------------- /sample-data/creditcards/swiggy-hdfc-bank-credit-card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/sample-data/creditcards/swiggy-hdfc-bank-credit-card.md -------------------------------------------------------------------------------- /sample-data/finance/report-short.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/sample-data/finance/report-short.pdf -------------------------------------------------------------------------------- /sample-data/mlops-pdf/llm-survey-report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/sample-data/mlops-pdf/llm-survey-report.pdf -------------------------------------------------------------------------------- /sample-data/mlops-pdf/practitioners_guide_to_mlops_whitepaper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/sample-data/mlops-pdf/practitioners_guide_to_mlops_whitepaper.pdf -------------------------------------------------------------------------------- /sample-data/text-essays/paul-graham-persistence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/sample-data/text-essays/paul-graham-persistence.txt -------------------------------------------------------------------------------- /sample-data/video/rag_intro.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/sample-data/video/rag_intro.mp4 -------------------------------------------------------------------------------- /seccomp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/seccomp.json -------------------------------------------------------------------------------- /truefoundry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truefoundry/cognita/HEAD/truefoundry.yaml --------------------------------------------------------------------------------