├── .github ├── ISSUE_TEMPLATE │ ├── BUG_report_issue_template.yml │ ├── config.yml │ └── feature_request.yml ├── pull_request_template.md └── workflows │ ├── issue-workflow.yml │ ├── pr_merge.yml │ ├── pr_raise.yml │ └── up_for_graps.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEVELOPMENT.md ├── LICENSE ├── README.md ├── app ├── __init__.py ├── ai.py ├── api_routes.py ├── constants.py ├── data_fetcher.py ├── helpers.py └── models.py ├── client ├── .gitignore ├── README.md ├── bun.lockb ├── components.json ├── eslint.config.js ├── index.html ├── package.json ├── postcss.config.js ├── public │ └── vite.svg ├── src │ ├── App.tsx │ ├── assets │ │ └── react.svg │ ├── components │ │ ├── BotsLoading.tsx │ │ ├── ChatbotCard.tsx │ │ ├── Footer.tsx │ │ ├── ImageCard.tsx │ │ ├── LikeAndReport.tsx │ │ ├── Navbar.tsx │ │ ├── ProtectedRoute.tsx │ │ ├── Separator.tsx │ │ ├── modals │ │ │ ├── Tts-magic-modal.tsx │ │ │ ├── command-modal.tsx │ │ │ ├── create-chatbot-modal.tsx │ │ │ ├── delete-chatbot-modal.tsx │ │ │ ├── image-captioning-magic-modal.tsx │ │ │ ├── imgine-modal.tsx │ │ │ ├── ocr-magic-modal.tsx │ │ │ ├── qr-magic-modal.tsx │ │ │ ├── settings-modal.tsx │ │ │ ├── share-modal.tsx │ │ │ ├── translate-magic-modal.tsx │ │ │ ├── ttH-magic-modal.tsx │ │ │ ├── update-chatbot-modal.tsx │ │ │ └── update-profile-modal.tsx │ │ ├── theme-toggle.tsx │ │ ├── transition.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ └── textarea.tsx │ ├── contexts │ │ ├── auth-context.tsx │ │ ├── modals.tsx │ │ └── settings-context.tsx │ ├── hooks │ │ └── useSpeech.tsx │ ├── i18n │ │ ├── i18n.ts │ │ ├── locales │ │ │ ├── en.ts │ │ │ ├── es.ts │ │ │ ├── fr.ts │ │ │ ├── hi.ts │ │ │ └── ja.ts │ │ └── types.ts │ ├── index.css │ ├── lib │ │ ├── custom-switch.tsx │ │ ├── queries.ts │ │ ├── schemas.ts │ │ ├── theme-initializer.ts │ │ └── utils.ts │ ├── main.tsx │ ├── pages │ │ ├── 404.tsx │ │ ├── About.tsx │ │ ├── Anonymous.tsx │ │ ├── Chatbot.tsx │ │ ├── ChatbotView.tsx │ │ ├── Dashboard.tsx │ │ ├── Hub.tsx │ │ ├── Imagine.tsx │ │ ├── Landing.tsx │ │ ├── Leaderboard.tsx │ │ ├── Login.tsx │ │ ├── MyChatbots.tsx │ │ ├── MyImages.tsx │ │ ├── Privacy.tsx │ │ ├── Profile.tsx │ │ ├── Signup.tsx │ │ └── Terms.tsx │ ├── stores │ │ └── modal-store.ts │ ├── types │ │ ├── default-modal-store.ts │ │ └── types.d.ts │ └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── dev-requirements.txt ├── pytest.ini ├── requirements.txt ├── run.py └── tests ├── conftest.py ├── test_errors.py ├── test_routes.py ├── test_run.py └── test_static.py /.github/ISSUE_TEMPLATE/BUG_report_issue_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/.github/ISSUE_TEMPLATE/BUG_report_issue_template.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/issue-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/.github/workflows/issue-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/pr_merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/.github/workflows/pr_merge.yml -------------------------------------------------------------------------------- /.github/workflows/pr_raise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/.github/workflows/pr_raise.yml -------------------------------------------------------------------------------- /.github/workflows/up_for_graps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/.github/workflows/up_for_graps.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/app/ai.py -------------------------------------------------------------------------------- /app/api_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/app/api_routes.py -------------------------------------------------------------------------------- /app/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/app/constants.py -------------------------------------------------------------------------------- /app/data_fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/app/data_fetcher.py -------------------------------------------------------------------------------- /app/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/app/helpers.py -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/app/models.py -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/README.md -------------------------------------------------------------------------------- /client/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/bun.lockb -------------------------------------------------------------------------------- /client/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/components.json -------------------------------------------------------------------------------- /client/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/eslint.config.js -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/index.html -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/package.json -------------------------------------------------------------------------------- /client/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/postcss.config.js -------------------------------------------------------------------------------- /client/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/public/vite.svg -------------------------------------------------------------------------------- /client/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/App.tsx -------------------------------------------------------------------------------- /client/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/assets/react.svg -------------------------------------------------------------------------------- /client/src/components/BotsLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/BotsLoading.tsx -------------------------------------------------------------------------------- /client/src/components/ChatbotCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/ChatbotCard.tsx -------------------------------------------------------------------------------- /client/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/Footer.tsx -------------------------------------------------------------------------------- /client/src/components/ImageCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/ImageCard.tsx -------------------------------------------------------------------------------- /client/src/components/LikeAndReport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/LikeAndReport.tsx -------------------------------------------------------------------------------- /client/src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/Navbar.tsx -------------------------------------------------------------------------------- /client/src/components/ProtectedRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/ProtectedRoute.tsx -------------------------------------------------------------------------------- /client/src/components/Separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/Separator.tsx -------------------------------------------------------------------------------- /client/src/components/modals/Tts-magic-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/modals/Tts-magic-modal.tsx -------------------------------------------------------------------------------- /client/src/components/modals/command-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/modals/command-modal.tsx -------------------------------------------------------------------------------- /client/src/components/modals/create-chatbot-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/modals/create-chatbot-modal.tsx -------------------------------------------------------------------------------- /client/src/components/modals/delete-chatbot-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/modals/delete-chatbot-modal.tsx -------------------------------------------------------------------------------- /client/src/components/modals/image-captioning-magic-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/modals/image-captioning-magic-modal.tsx -------------------------------------------------------------------------------- /client/src/components/modals/imgine-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/modals/imgine-modal.tsx -------------------------------------------------------------------------------- /client/src/components/modals/ocr-magic-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/modals/ocr-magic-modal.tsx -------------------------------------------------------------------------------- /client/src/components/modals/qr-magic-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/modals/qr-magic-modal.tsx -------------------------------------------------------------------------------- /client/src/components/modals/settings-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/modals/settings-modal.tsx -------------------------------------------------------------------------------- /client/src/components/modals/share-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/modals/share-modal.tsx -------------------------------------------------------------------------------- /client/src/components/modals/translate-magic-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/modals/translate-magic-modal.tsx -------------------------------------------------------------------------------- /client/src/components/modals/ttH-magic-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/modals/ttH-magic-modal.tsx -------------------------------------------------------------------------------- /client/src/components/modals/update-chatbot-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/modals/update-chatbot-modal.tsx -------------------------------------------------------------------------------- /client/src/components/modals/update-profile-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/modals/update-profile-modal.tsx -------------------------------------------------------------------------------- /client/src/components/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/theme-toggle.tsx -------------------------------------------------------------------------------- /client/src/components/transition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/transition.tsx -------------------------------------------------------------------------------- /client/src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /client/src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /client/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /client/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /client/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/ui/button.tsx -------------------------------------------------------------------------------- /client/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/ui/card.tsx -------------------------------------------------------------------------------- /client/src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/ui/command.tsx -------------------------------------------------------------------------------- /client/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /client/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /client/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/ui/form.tsx -------------------------------------------------------------------------------- /client/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/ui/input.tsx -------------------------------------------------------------------------------- /client/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/ui/label.tsx -------------------------------------------------------------------------------- /client/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /client/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/ui/select.tsx -------------------------------------------------------------------------------- /client/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /client/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /client/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/ui/table.tsx -------------------------------------------------------------------------------- /client/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /client/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /client/src/contexts/auth-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/contexts/auth-context.tsx -------------------------------------------------------------------------------- /client/src/contexts/modals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/contexts/modals.tsx -------------------------------------------------------------------------------- /client/src/contexts/settings-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/contexts/settings-context.tsx -------------------------------------------------------------------------------- /client/src/hooks/useSpeech.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/hooks/useSpeech.tsx -------------------------------------------------------------------------------- /client/src/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/i18n/i18n.ts -------------------------------------------------------------------------------- /client/src/i18n/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/i18n/locales/en.ts -------------------------------------------------------------------------------- /client/src/i18n/locales/es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/i18n/locales/es.ts -------------------------------------------------------------------------------- /client/src/i18n/locales/fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/i18n/locales/fr.ts -------------------------------------------------------------------------------- /client/src/i18n/locales/hi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/i18n/locales/hi.ts -------------------------------------------------------------------------------- /client/src/i18n/locales/ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/i18n/locales/ja.ts -------------------------------------------------------------------------------- /client/src/i18n/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/i18n/types.ts -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/lib/custom-switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/lib/custom-switch.tsx -------------------------------------------------------------------------------- /client/src/lib/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/lib/queries.ts -------------------------------------------------------------------------------- /client/src/lib/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/lib/schemas.ts -------------------------------------------------------------------------------- /client/src/lib/theme-initializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/lib/theme-initializer.ts -------------------------------------------------------------------------------- /client/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/lib/utils.ts -------------------------------------------------------------------------------- /client/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/main.tsx -------------------------------------------------------------------------------- /client/src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/pages/404.tsx -------------------------------------------------------------------------------- /client/src/pages/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/pages/About.tsx -------------------------------------------------------------------------------- /client/src/pages/Anonymous.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/pages/Anonymous.tsx -------------------------------------------------------------------------------- /client/src/pages/Chatbot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/pages/Chatbot.tsx -------------------------------------------------------------------------------- /client/src/pages/ChatbotView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/pages/ChatbotView.tsx -------------------------------------------------------------------------------- /client/src/pages/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/pages/Dashboard.tsx -------------------------------------------------------------------------------- /client/src/pages/Hub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/pages/Hub.tsx -------------------------------------------------------------------------------- /client/src/pages/Imagine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/pages/Imagine.tsx -------------------------------------------------------------------------------- /client/src/pages/Landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/pages/Landing.tsx -------------------------------------------------------------------------------- /client/src/pages/Leaderboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/pages/Leaderboard.tsx -------------------------------------------------------------------------------- /client/src/pages/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/pages/Login.tsx -------------------------------------------------------------------------------- /client/src/pages/MyChatbots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/pages/MyChatbots.tsx -------------------------------------------------------------------------------- /client/src/pages/MyImages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/pages/MyImages.tsx -------------------------------------------------------------------------------- /client/src/pages/Privacy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/pages/Privacy.tsx -------------------------------------------------------------------------------- /client/src/pages/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/pages/Profile.tsx -------------------------------------------------------------------------------- /client/src/pages/Signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/pages/Signup.tsx -------------------------------------------------------------------------------- /client/src/pages/Terms.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/pages/Terms.tsx -------------------------------------------------------------------------------- /client/src/stores/modal-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/stores/modal-store.ts -------------------------------------------------------------------------------- /client/src/types/default-modal-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/types/default-modal-store.ts -------------------------------------------------------------------------------- /client/src/types/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/src/types/types.d.ts -------------------------------------------------------------------------------- /client/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /client/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/tailwind.config.js -------------------------------------------------------------------------------- /client/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/tsconfig.app.json -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /client/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/tsconfig.node.json -------------------------------------------------------------------------------- /client/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/client/vite.config.ts -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | pythonpath = . 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/run.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/tests/test_errors.py -------------------------------------------------------------------------------- /tests/test_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/tests/test_routes.py -------------------------------------------------------------------------------- /tests/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/tests/test_run.py -------------------------------------------------------------------------------- /tests/test_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k0msenapati/bot-verse/HEAD/tests/test_static.py --------------------------------------------------------------------------------