├── .example.env ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── deepresearch ├── apiClients.ts ├── config.ts ├── models.ts └── research-pipeline.ts ├── demo.ts ├── package.json ├── pnpm-lock.yaml └── tsconfig.json /.example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/deep-research/HEAD/.example.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/deep-research/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "doubleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/deep-research/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/deep-research/HEAD/README.md -------------------------------------------------------------------------------- /deepresearch/apiClients.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/deep-research/HEAD/deepresearch/apiClients.ts -------------------------------------------------------------------------------- /deepresearch/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/deep-research/HEAD/deepresearch/config.ts -------------------------------------------------------------------------------- /deepresearch/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/deep-research/HEAD/deepresearch/models.ts -------------------------------------------------------------------------------- /deepresearch/research-pipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/deep-research/HEAD/deepresearch/research-pipeline.ts -------------------------------------------------------------------------------- /demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/deep-research/HEAD/demo.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/deep-research/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/deep-research/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/deep-research/HEAD/tsconfig.json --------------------------------------------------------------------------------