├── .env.example ├── .gitignore ├── .prettierignore ├── LICENSE ├── README.md ├── codeguide-backdrop.svg ├── package.json ├── prettier.config.mjs ├── report.md ├── src ├── ai │ ├── providers.ts │ ├── text-splitter.test.ts │ └── text-splitter.ts ├── api │ ├── middleware │ │ └── auth.ts │ ├── server.ts │ └── swagger.ts ├── deep-research.ts ├── feedback.ts ├── prompt.ts └── run.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeGuide-dev/deep-research-api/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeGuide-dev/deep-research-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.hbs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeGuide-dev/deep-research-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeGuide-dev/deep-research-api/HEAD/README.md -------------------------------------------------------------------------------- /codeguide-backdrop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeGuide-dev/deep-research-api/HEAD/codeguide-backdrop.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeGuide-dev/deep-research-api/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeGuide-dev/deep-research-api/HEAD/prettier.config.mjs -------------------------------------------------------------------------------- /report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeGuide-dev/deep-research-api/HEAD/report.md -------------------------------------------------------------------------------- /src/ai/providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeGuide-dev/deep-research-api/HEAD/src/ai/providers.ts -------------------------------------------------------------------------------- /src/ai/text-splitter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeGuide-dev/deep-research-api/HEAD/src/ai/text-splitter.test.ts -------------------------------------------------------------------------------- /src/ai/text-splitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeGuide-dev/deep-research-api/HEAD/src/ai/text-splitter.ts -------------------------------------------------------------------------------- /src/api/middleware/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeGuide-dev/deep-research-api/HEAD/src/api/middleware/auth.ts -------------------------------------------------------------------------------- /src/api/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeGuide-dev/deep-research-api/HEAD/src/api/server.ts -------------------------------------------------------------------------------- /src/api/swagger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeGuide-dev/deep-research-api/HEAD/src/api/swagger.ts -------------------------------------------------------------------------------- /src/deep-research.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeGuide-dev/deep-research-api/HEAD/src/deep-research.ts -------------------------------------------------------------------------------- /src/feedback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeGuide-dev/deep-research-api/HEAD/src/feedback.ts -------------------------------------------------------------------------------- /src/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeGuide-dev/deep-research-api/HEAD/src/prompt.ts -------------------------------------------------------------------------------- /src/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeGuide-dev/deep-research-api/HEAD/src/run.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeGuide-dev/deep-research-api/HEAD/tsconfig.json --------------------------------------------------------------------------------