├── .envrc.example ├── .github └── workflows │ ├── build.yaml │ ├── preview.yaml │ └── update.yaml ├── .gitignore ├── App.tsx ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── app.json ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png └── splash.png ├── babel.config.js ├── components ├── CustomAppBar.tsx ├── Dashboard.tsx └── PageContainer.tsx ├── config.ts ├── eas.json ├── lib ├── context │ └── BrainConfigProvider │ │ ├── brain-config-provider.tsx │ │ ├── helpers │ │ ├── brainConfigLocalStorage.ts │ │ └── getApiUrl.ts │ │ ├── hooks │ │ └── useBrainConfig.ts │ │ └── types.ts ├── helpers │ └── setEmptyStringsUndefined.ts ├── localStorage.ts ├── types.ts └── useAxios.ts ├── package.json ├── pages ├── Manager.tsx ├── auth │ ├── Login.tsx │ └── Signup.tsx └── dashboard │ ├── Chat │ ├── components │ │ ├── ChatMessage.tsx │ │ └── ChatMessages.tsx │ ├── hooks │ │ └── useQuestion.ts │ └── index.tsx │ ├── Explore │ ├── DocumentItem │ │ ├── DocumentData.tsx │ │ └── index.tsx │ ├── index.tsx │ └── types.ts │ ├── Upload │ ├── hooks │ │ └── useFileUploader.ts │ ├── index.tsx │ └── types.ts │ └── User │ └── index.tsx ├── providers ├── Paper.tsx └── supabase-provider.tsx ├── tsconfig.json └── yarn.lock /.envrc.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/.envrc.example -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/preview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/.github/workflows/preview.yaml -------------------------------------------------------------------------------- /.github/workflows/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/.github/workflows/update.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/.gitignore -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/App.tsx -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/CustomAppBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/components/CustomAppBar.tsx -------------------------------------------------------------------------------- /components/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/components/Dashboard.tsx -------------------------------------------------------------------------------- /components/PageContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/components/PageContainer.tsx -------------------------------------------------------------------------------- /config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/config.ts -------------------------------------------------------------------------------- /eas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/eas.json -------------------------------------------------------------------------------- /lib/context/BrainConfigProvider/brain-config-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/lib/context/BrainConfigProvider/brain-config-provider.tsx -------------------------------------------------------------------------------- /lib/context/BrainConfigProvider/helpers/brainConfigLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/lib/context/BrainConfigProvider/helpers/brainConfigLocalStorage.ts -------------------------------------------------------------------------------- /lib/context/BrainConfigProvider/helpers/getApiUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/lib/context/BrainConfigProvider/helpers/getApiUrl.ts -------------------------------------------------------------------------------- /lib/context/BrainConfigProvider/hooks/useBrainConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/lib/context/BrainConfigProvider/hooks/useBrainConfig.ts -------------------------------------------------------------------------------- /lib/context/BrainConfigProvider/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/lib/context/BrainConfigProvider/types.ts -------------------------------------------------------------------------------- /lib/helpers/setEmptyStringsUndefined.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/lib/helpers/setEmptyStringsUndefined.ts -------------------------------------------------------------------------------- /lib/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/lib/localStorage.ts -------------------------------------------------------------------------------- /lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/lib/types.ts -------------------------------------------------------------------------------- /lib/useAxios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/lib/useAxios.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/package.json -------------------------------------------------------------------------------- /pages/Manager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/pages/Manager.tsx -------------------------------------------------------------------------------- /pages/auth/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/pages/auth/Login.tsx -------------------------------------------------------------------------------- /pages/auth/Signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/pages/auth/Signup.tsx -------------------------------------------------------------------------------- /pages/dashboard/Chat/components/ChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/pages/dashboard/Chat/components/ChatMessage.tsx -------------------------------------------------------------------------------- /pages/dashboard/Chat/components/ChatMessages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/pages/dashboard/Chat/components/ChatMessages.tsx -------------------------------------------------------------------------------- /pages/dashboard/Chat/hooks/useQuestion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/pages/dashboard/Chat/hooks/useQuestion.ts -------------------------------------------------------------------------------- /pages/dashboard/Chat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/pages/dashboard/Chat/index.tsx -------------------------------------------------------------------------------- /pages/dashboard/Explore/DocumentItem/DocumentData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/pages/dashboard/Explore/DocumentItem/DocumentData.tsx -------------------------------------------------------------------------------- /pages/dashboard/Explore/DocumentItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/pages/dashboard/Explore/DocumentItem/index.tsx -------------------------------------------------------------------------------- /pages/dashboard/Explore/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/pages/dashboard/Explore/index.tsx -------------------------------------------------------------------------------- /pages/dashboard/Explore/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/pages/dashboard/Explore/types.ts -------------------------------------------------------------------------------- /pages/dashboard/Upload/hooks/useFileUploader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/pages/dashboard/Upload/hooks/useFileUploader.ts -------------------------------------------------------------------------------- /pages/dashboard/Upload/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/pages/dashboard/Upload/index.tsx -------------------------------------------------------------------------------- /pages/dashboard/Upload/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/pages/dashboard/Upload/types.ts -------------------------------------------------------------------------------- /pages/dashboard/User/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/pages/dashboard/User/index.tsx -------------------------------------------------------------------------------- /providers/Paper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/providers/Paper.tsx -------------------------------------------------------------------------------- /providers/supabase-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/providers/supabase-provider.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityanandanx/quivr-mobile/HEAD/yarn.lock --------------------------------------------------------------------------------