├── .eslintrc.json ├── .gitignore ├── README.md ├── components ├── Answer.tsx ├── Search.tsx └── mongodb.tsx ├── license ├── models └── testModel.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── api │ ├── answer.ts │ ├── get │ │ └── [id].ts │ ├── getAll.ts │ ├── insert.ts │ └── sources.ts └── gallery.tsx ├── postcss.config.js ├── public ├── athena-for-search.gif ├── athena-search-citations.png ├── athena-search-web.png └── favicon.png ├── styles └── globals.css ├── tailwind.config.js ├── tsconfig.json ├── types └── index.ts ├── utils ├── answer.ts ├── connectMongo.ts ├── helpers.ts ├── posthog_init.tsx ├── searchService.ts ├── sources.ts └── workerpool.ts └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/README.md -------------------------------------------------------------------------------- /components/Answer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/components/Answer.tsx -------------------------------------------------------------------------------- /components/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/components/Search.tsx -------------------------------------------------------------------------------- /components/mongodb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/components/mongodb.tsx -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/license -------------------------------------------------------------------------------- /models/testModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/models/testModel.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/api/answer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/pages/api/answer.ts -------------------------------------------------------------------------------- /pages/api/get/[id].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/pages/api/get/[id].ts -------------------------------------------------------------------------------- /pages/api/getAll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/pages/api/getAll.ts -------------------------------------------------------------------------------- /pages/api/insert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/pages/api/insert.ts -------------------------------------------------------------------------------- /pages/api/sources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/pages/api/sources.ts -------------------------------------------------------------------------------- /pages/gallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/pages/gallery.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/athena-for-search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/public/athena-for-search.gif -------------------------------------------------------------------------------- /public/athena-search-citations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/public/athena-search-citations.png -------------------------------------------------------------------------------- /public/athena-search-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/public/athena-search-web.png -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/public/favicon.png -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/types/index.ts -------------------------------------------------------------------------------- /utils/answer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/utils/answer.ts -------------------------------------------------------------------------------- /utils/connectMongo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/utils/connectMongo.ts -------------------------------------------------------------------------------- /utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/utils/helpers.ts -------------------------------------------------------------------------------- /utils/posthog_init.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/utils/posthog_init.tsx -------------------------------------------------------------------------------- /utils/searchService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/utils/searchService.ts -------------------------------------------------------------------------------- /utils/sources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/utils/sources.ts -------------------------------------------------------------------------------- /utils/workerpool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/utils/workerpool.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Athena-for-Search/HEAD/yarn.lock --------------------------------------------------------------------------------