├── .dockerignore ├── .eslintignore ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── dependabot.yml ├── .gitignore ├── .husky └── pre-commit ├── .lintstagedrc.json ├── .prettierrc.js ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── api │ ├── chat │ │ ├── engine │ │ │ ├── chat.ts │ │ │ ├── generate.ts │ │ │ └── index.ts │ │ ├── llamaindex │ │ │ └── streaming │ │ │ │ └── events.ts │ │ ├── route.ts │ │ └── upload │ │ │ └── route.ts │ └── share │ │ └── route.ts ├── b │ └── [botId] │ │ └── page.tsx ├── components │ ├── bot │ │ ├── bot-item.tsx │ │ ├── bot-list.tsx │ │ ├── bot-options │ │ │ ├── delete-bot-dialog.tsx │ │ │ ├── edit-bot-dialog.tsx │ │ │ ├── index.tsx │ │ │ └── share-bot-dialog.tsx │ │ ├── bot-settings │ │ │ ├── bot-config.tsx │ │ │ ├── config-item.tsx │ │ │ ├── context-prompt.tsx │ │ │ ├── index.tsx │ │ │ └── model-config.tsx │ │ └── use-bot.tsx │ ├── chat │ │ ├── chat-header.tsx │ │ ├── chat-session.tsx │ │ ├── index.tsx │ │ └── useChatSession.ts │ ├── home.tsx │ ├── layout │ │ ├── error.tsx │ │ ├── sidebar.tsx │ │ ├── theme-provider.tsx │ │ └── theme-toggle.tsx │ ├── settings.tsx │ └── ui │ │ ├── alert-dialog.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── checkbox.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── emoji.tsx │ │ ├── hover-card.tsx │ │ ├── image-preview.tsx │ │ ├── input.tsx │ │ ├── loading.tsx │ │ ├── markdown.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── tooltip.tsx │ │ ├── typography.tsx │ │ └── use-toast.ts ├── constant.ts ├── layout.tsx ├── lib │ └── utils.ts ├── locales │ ├── en.ts │ └── index.ts ├── page.tsx ├── store │ ├── bot.data.ts │ └── bot.ts ├── styles │ ├── globals.css │ └── lib │ │ ├── highlight.css │ │ └── markdown.css └── utils │ ├── clipboard.ts │ ├── download.ts │ └── mobile.ts ├── components.json ├── datasources └── .gitignore ├── docker-compose.yml ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-2048x2048.png ├── favicon-32x32.png ├── favicon.ico ├── llama.png ├── robots.txt ├── screenshot.png ├── serviceWorker.js ├── serviceWorkerRegister.js └── site.webmanifest ├── scripts ├── create-llama.sh ├── generate-demo.sh └── get-demo.sh ├── sentry.client.config.ts ├── sentry.edge.config.ts ├── sentry.server.config.ts ├── tailwind.config.ts ├── test └── data │ └── .gitignore └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | public/serviceWorker.js 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/README.md -------------------------------------------------------------------------------- /app/api/chat/engine/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/api/chat/engine/chat.ts -------------------------------------------------------------------------------- /app/api/chat/engine/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/api/chat/engine/generate.ts -------------------------------------------------------------------------------- /app/api/chat/engine/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/api/chat/engine/index.ts -------------------------------------------------------------------------------- /app/api/chat/llamaindex/streaming/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/api/chat/llamaindex/streaming/events.ts -------------------------------------------------------------------------------- /app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/api/chat/route.ts -------------------------------------------------------------------------------- /app/api/chat/upload/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/api/chat/upload/route.ts -------------------------------------------------------------------------------- /app/api/share/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/api/share/route.ts -------------------------------------------------------------------------------- /app/b/[botId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/b/[botId]/page.tsx -------------------------------------------------------------------------------- /app/components/bot/bot-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/bot/bot-item.tsx -------------------------------------------------------------------------------- /app/components/bot/bot-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/bot/bot-list.tsx -------------------------------------------------------------------------------- /app/components/bot/bot-options/delete-bot-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/bot/bot-options/delete-bot-dialog.tsx -------------------------------------------------------------------------------- /app/components/bot/bot-options/edit-bot-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/bot/bot-options/edit-bot-dialog.tsx -------------------------------------------------------------------------------- /app/components/bot/bot-options/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/bot/bot-options/index.tsx -------------------------------------------------------------------------------- /app/components/bot/bot-options/share-bot-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/bot/bot-options/share-bot-dialog.tsx -------------------------------------------------------------------------------- /app/components/bot/bot-settings/bot-config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/bot/bot-settings/bot-config.tsx -------------------------------------------------------------------------------- /app/components/bot/bot-settings/config-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/bot/bot-settings/config-item.tsx -------------------------------------------------------------------------------- /app/components/bot/bot-settings/context-prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/bot/bot-settings/context-prompt.tsx -------------------------------------------------------------------------------- /app/components/bot/bot-settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/bot/bot-settings/index.tsx -------------------------------------------------------------------------------- /app/components/bot/bot-settings/model-config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/bot/bot-settings/model-config.tsx -------------------------------------------------------------------------------- /app/components/bot/use-bot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/bot/use-bot.tsx -------------------------------------------------------------------------------- /app/components/chat/chat-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/chat/chat-header.tsx -------------------------------------------------------------------------------- /app/components/chat/chat-session.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/chat/chat-session.tsx -------------------------------------------------------------------------------- /app/components/chat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/chat/index.tsx -------------------------------------------------------------------------------- /app/components/chat/useChatSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/chat/useChatSession.ts -------------------------------------------------------------------------------- /app/components/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/home.tsx -------------------------------------------------------------------------------- /app/components/layout/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/layout/error.tsx -------------------------------------------------------------------------------- /app/components/layout/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/layout/sidebar.tsx -------------------------------------------------------------------------------- /app/components/layout/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/layout/theme-provider.tsx -------------------------------------------------------------------------------- /app/components/layout/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/layout/theme-toggle.tsx -------------------------------------------------------------------------------- /app/components/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/settings.tsx -------------------------------------------------------------------------------- /app/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /app/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/badge.tsx -------------------------------------------------------------------------------- /app/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/button.tsx -------------------------------------------------------------------------------- /app/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/card.tsx -------------------------------------------------------------------------------- /app/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /app/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/dialog.tsx -------------------------------------------------------------------------------- /app/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /app/components/ui/emoji.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/emoji.tsx -------------------------------------------------------------------------------- /app/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /app/components/ui/image-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/image-preview.tsx -------------------------------------------------------------------------------- /app/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/input.tsx -------------------------------------------------------------------------------- /app/components/ui/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/loading.tsx -------------------------------------------------------------------------------- /app/components/ui/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/markdown.tsx -------------------------------------------------------------------------------- /app/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/popover.tsx -------------------------------------------------------------------------------- /app/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/progress.tsx -------------------------------------------------------------------------------- /app/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /app/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/select.tsx -------------------------------------------------------------------------------- /app/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/separator.tsx -------------------------------------------------------------------------------- /app/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/textarea.tsx -------------------------------------------------------------------------------- /app/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/toast.tsx -------------------------------------------------------------------------------- /app/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/toaster.tsx -------------------------------------------------------------------------------- /app/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /app/components/ui/typography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/typography.tsx -------------------------------------------------------------------------------- /app/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/components/ui/use-toast.ts -------------------------------------------------------------------------------- /app/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/constant.ts -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/lib/utils.ts -------------------------------------------------------------------------------- /app/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/locales/en.ts -------------------------------------------------------------------------------- /app/locales/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/locales/index.ts -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/store/bot.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/store/bot.data.ts -------------------------------------------------------------------------------- /app/store/bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/store/bot.ts -------------------------------------------------------------------------------- /app/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/styles/globals.css -------------------------------------------------------------------------------- /app/styles/lib/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/styles/lib/highlight.css -------------------------------------------------------------------------------- /app/styles/lib/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/styles/lib/markdown.css -------------------------------------------------------------------------------- /app/utils/clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/utils/clipboard.ts -------------------------------------------------------------------------------- /app/utils/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/utils/download.ts -------------------------------------------------------------------------------- /app/utils/mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/app/utils/mobile.ts -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/components.json -------------------------------------------------------------------------------- /datasources/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !*.md 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-2048x2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/public/favicon-2048x2048.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/llama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/public/llama.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/public/screenshot.png -------------------------------------------------------------------------------- /public/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/public/serviceWorker.js -------------------------------------------------------------------------------- /public/serviceWorkerRegister.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/public/serviceWorkerRegister.js -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /scripts/create-llama.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/scripts/create-llama.sh -------------------------------------------------------------------------------- /scripts/generate-demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/scripts/generate-demo.sh -------------------------------------------------------------------------------- /scripts/get-demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/scripts/get-demo.sh -------------------------------------------------------------------------------- /sentry.client.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/sentry.client.config.ts -------------------------------------------------------------------------------- /sentry.edge.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/sentry.edge.config.ts -------------------------------------------------------------------------------- /sentry.server.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/sentry.server.config.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /test/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/test/data/.gitignore -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/chat-llamaindex/HEAD/tsconfig.json --------------------------------------------------------------------------------