├── .devcontainer.json ├── .github └── workflows │ └── open-ai-app.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── docs ├── 1-introduction.md ├── 2-provision-azure-resources.md ├── 3-run-locally.md ├── 4-deployto-azure.md ├── 5-add-Identity.md ├── 6-chat-over-file.md └── 7-environment-variables.md ├── images ├── architecture.png ├── chat-history.png ├── chat-home.png ├── intro.png ├── personalise-session.png └── runworkflow.png ├── infra ├── main.bicep ├── main.json ├── main.parameters.json └── resources.bicep └── src ├── .env.example ├── .eslintrc.json ├── app ├── api │ ├── auth │ │ └── [...nextauth] │ │ │ └── route.ts │ └── chat │ │ └── route.ts ├── chat │ ├── [id] │ │ ├── loading.tsx │ │ ├── not-found.tsx │ │ └── page.tsx │ ├── layout.tsx │ ├── loading.tsx │ └── page.tsx ├── favicon.ico ├── globals.css ├── layout.tsx ├── loading.tsx ├── page.tsx └── reporting │ ├── [chatid] │ ├── loading.tsx │ └── page.tsx │ ├── layout.tsx │ ├── loading.tsx │ └── page.tsx ├── components.json ├── components ├── chat │ ├── chat-input.tsx │ ├── chat-loading.tsx │ ├── chat-row.tsx │ ├── code-block.tsx │ └── memoized-react-markdown.tsx ├── hooks │ └── use-chat-scroll-anchor.tsx ├── login │ └── login.tsx ├── menu.tsx ├── theme-provider.tsx ├── typography.tsx └── ui │ ├── avatar.tsx │ ├── button.tsx │ ├── card.tsx │ ├── dropdown-menu.tsx │ ├── input.tsx │ ├── label.tsx │ ├── table.tsx │ ├── tabs.tsx │ ├── textarea.tsx │ ├── toast.tsx │ ├── toaster.tsx │ └── use-toast.ts ├── dockerfile ├── features ├── auth │ ├── auth-api.ts │ ├── helpers.ts │ └── protected-page.tsx ├── chat │ ├── chat-data │ │ └── chat-data-api.ts │ ├── chat-menu │ │ ├── chat-menu.tsx │ │ ├── menu-items.tsx │ │ └── new-chat.tsx │ ├── chat-services │ │ ├── chat-api.ts │ │ ├── chat-document-service.ts │ │ ├── chat-service.ts │ │ ├── chat-thread-service.ts │ │ ├── models.ts │ │ └── utils.ts │ ├── chat-simple │ │ └── chat-simple-api.ts │ └── chat-ui │ │ ├── chat-empty-state.tsx │ │ ├── chat-header.tsx │ │ ├── chat-model-selector.tsx │ │ ├── chat-style-selector.tsx │ │ ├── chat-type-selector.tsx │ │ ├── chat-ui.tsx │ │ └── start-new-chat.tsx ├── common │ └── cosmos.ts ├── langchain │ ├── memory │ │ ├── cosmosdb │ │ │ ├── cosmosdb-chat-service.ts │ │ │ └── cosmosdb.ts │ │ └── utils.ts │ └── vector-stores │ │ └── azure-cog-search │ │ └── azure-cog-vector-store.ts ├── loading-skeleton.tsx ├── menu │ └── menu.tsx ├── providers.tsx ├── reporting │ ├── chat-reporting-ui.tsx │ ├── reporting-service.ts │ └── reporting.tsx ├── theme │ ├── customise.ts │ └── theme-toggle.tsx └── user-profile.tsx ├── lib └── utils.ts ├── middleware.ts ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public └── ai-icon.png ├── tailwind.config.js ├── tsconfig.json └── type.ts /.devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/.devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/open-ai-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/.github/workflows/open-ai-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /docs/1-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/docs/1-introduction.md -------------------------------------------------------------------------------- /docs/2-provision-azure-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/docs/2-provision-azure-resources.md -------------------------------------------------------------------------------- /docs/3-run-locally.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/docs/3-run-locally.md -------------------------------------------------------------------------------- /docs/4-deployto-azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/docs/4-deployto-azure.md -------------------------------------------------------------------------------- /docs/5-add-Identity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/docs/5-add-Identity.md -------------------------------------------------------------------------------- /docs/6-chat-over-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/docs/6-chat-over-file.md -------------------------------------------------------------------------------- /docs/7-environment-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/docs/7-environment-variables.md -------------------------------------------------------------------------------- /images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/images/architecture.png -------------------------------------------------------------------------------- /images/chat-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/images/chat-history.png -------------------------------------------------------------------------------- /images/chat-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/images/chat-home.png -------------------------------------------------------------------------------- /images/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/images/intro.png -------------------------------------------------------------------------------- /images/personalise-session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/images/personalise-session.png -------------------------------------------------------------------------------- /images/runworkflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/images/runworkflow.png -------------------------------------------------------------------------------- /infra/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/infra/main.bicep -------------------------------------------------------------------------------- /infra/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/infra/main.json -------------------------------------------------------------------------------- /infra/main.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/infra/main.parameters.json -------------------------------------------------------------------------------- /infra/resources.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/infra/resources.bicep -------------------------------------------------------------------------------- /src/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/.env.example -------------------------------------------------------------------------------- /src/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /src/app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/app/api/chat/route.ts -------------------------------------------------------------------------------- /src/app/chat/[id]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/app/chat/[id]/loading.tsx -------------------------------------------------------------------------------- /src/app/chat/[id]/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/app/chat/[id]/not-found.tsx -------------------------------------------------------------------------------- /src/app/chat/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/app/chat/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/chat/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/app/chat/layout.tsx -------------------------------------------------------------------------------- /src/app/chat/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/app/chat/loading.tsx -------------------------------------------------------------------------------- /src/app/chat/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/app/chat/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/app/loading.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/reporting/[chatid]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/app/reporting/[chatid]/loading.tsx -------------------------------------------------------------------------------- /src/app/reporting/[chatid]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/app/reporting/[chatid]/page.tsx -------------------------------------------------------------------------------- /src/app/reporting/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/app/reporting/layout.tsx -------------------------------------------------------------------------------- /src/app/reporting/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/app/reporting/loading.tsx -------------------------------------------------------------------------------- /src/app/reporting/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/app/reporting/page.tsx -------------------------------------------------------------------------------- /src/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components.json -------------------------------------------------------------------------------- /src/components/chat/chat-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components/chat/chat-input.tsx -------------------------------------------------------------------------------- /src/components/chat/chat-loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components/chat/chat-loading.tsx -------------------------------------------------------------------------------- /src/components/chat/chat-row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components/chat/chat-row.tsx -------------------------------------------------------------------------------- /src/components/chat/code-block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components/chat/code-block.tsx -------------------------------------------------------------------------------- /src/components/chat/memoized-react-markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components/chat/memoized-react-markdown.tsx -------------------------------------------------------------------------------- /src/components/hooks/use-chat-scroll-anchor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components/hooks/use-chat-scroll-anchor.tsx -------------------------------------------------------------------------------- /src/components/login/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components/login/login.tsx -------------------------------------------------------------------------------- /src/components/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components/menu.tsx -------------------------------------------------------------------------------- /src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /src/components/typography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components/typography.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /src/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/dockerfile -------------------------------------------------------------------------------- /src/features/auth/auth-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/auth/auth-api.ts -------------------------------------------------------------------------------- /src/features/auth/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/auth/helpers.ts -------------------------------------------------------------------------------- /src/features/auth/protected-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/auth/protected-page.tsx -------------------------------------------------------------------------------- /src/features/chat/chat-data/chat-data-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/chat/chat-data/chat-data-api.ts -------------------------------------------------------------------------------- /src/features/chat/chat-menu/chat-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/chat/chat-menu/chat-menu.tsx -------------------------------------------------------------------------------- /src/features/chat/chat-menu/menu-items.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/chat/chat-menu/menu-items.tsx -------------------------------------------------------------------------------- /src/features/chat/chat-menu/new-chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/chat/chat-menu/new-chat.tsx -------------------------------------------------------------------------------- /src/features/chat/chat-services/chat-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/chat/chat-services/chat-api.ts -------------------------------------------------------------------------------- /src/features/chat/chat-services/chat-document-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/chat/chat-services/chat-document-service.ts -------------------------------------------------------------------------------- /src/features/chat/chat-services/chat-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/chat/chat-services/chat-service.ts -------------------------------------------------------------------------------- /src/features/chat/chat-services/chat-thread-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/chat/chat-services/chat-thread-service.ts -------------------------------------------------------------------------------- /src/features/chat/chat-services/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/chat/chat-services/models.ts -------------------------------------------------------------------------------- /src/features/chat/chat-services/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/chat/chat-services/utils.ts -------------------------------------------------------------------------------- /src/features/chat/chat-simple/chat-simple-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/chat/chat-simple/chat-simple-api.ts -------------------------------------------------------------------------------- /src/features/chat/chat-ui/chat-empty-state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/chat/chat-ui/chat-empty-state.tsx -------------------------------------------------------------------------------- /src/features/chat/chat-ui/chat-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/chat/chat-ui/chat-header.tsx -------------------------------------------------------------------------------- /src/features/chat/chat-ui/chat-model-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/chat/chat-ui/chat-model-selector.tsx -------------------------------------------------------------------------------- /src/features/chat/chat-ui/chat-style-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/chat/chat-ui/chat-style-selector.tsx -------------------------------------------------------------------------------- /src/features/chat/chat-ui/chat-type-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/chat/chat-ui/chat-type-selector.tsx -------------------------------------------------------------------------------- /src/features/chat/chat-ui/chat-ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/chat/chat-ui/chat-ui.tsx -------------------------------------------------------------------------------- /src/features/chat/chat-ui/start-new-chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/chat/chat-ui/start-new-chat.tsx -------------------------------------------------------------------------------- /src/features/common/cosmos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/common/cosmos.ts -------------------------------------------------------------------------------- /src/features/langchain/memory/cosmosdb/cosmosdb-chat-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/langchain/memory/cosmosdb/cosmosdb-chat-service.ts -------------------------------------------------------------------------------- /src/features/langchain/memory/cosmosdb/cosmosdb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/langchain/memory/cosmosdb/cosmosdb.ts -------------------------------------------------------------------------------- /src/features/langchain/memory/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/langchain/memory/utils.ts -------------------------------------------------------------------------------- /src/features/langchain/vector-stores/azure-cog-search/azure-cog-vector-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/langchain/vector-stores/azure-cog-search/azure-cog-vector-store.ts -------------------------------------------------------------------------------- /src/features/loading-skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/loading-skeleton.tsx -------------------------------------------------------------------------------- /src/features/menu/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/menu/menu.tsx -------------------------------------------------------------------------------- /src/features/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/providers.tsx -------------------------------------------------------------------------------- /src/features/reporting/chat-reporting-ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/reporting/chat-reporting-ui.tsx -------------------------------------------------------------------------------- /src/features/reporting/reporting-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/reporting/reporting-service.ts -------------------------------------------------------------------------------- /src/features/reporting/reporting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/reporting/reporting.tsx -------------------------------------------------------------------------------- /src/features/theme/customise.ts: -------------------------------------------------------------------------------- 1 | export const AI_NAME = "ChatGPT on Azure solution accelerator"; 2 | 3 | -------------------------------------------------------------------------------- /src/features/theme/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/theme/theme-toggle.tsx -------------------------------------------------------------------------------- /src/features/user-profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/features/user-profile.tsx -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/next.config.js -------------------------------------------------------------------------------- /src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/package-lock.json -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/package.json -------------------------------------------------------------------------------- /src/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/postcss.config.js -------------------------------------------------------------------------------- /src/public/ai-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/public/ai-icon.png -------------------------------------------------------------------------------- /src/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/tailwind.config.js -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imartinez2/azurechatgpt/HEAD/src/type.ts --------------------------------------------------------------------------------