├── .gitignore ├── LICENSE ├── README.md ├── bun.lock ├── package.json ├── src └── index.ts ├── tsconfig.json └── wrangler.toml.example /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acoyfellow/ai-research-agent/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acoyfellow/ai-research-agent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acoyfellow/ai-research-agent/HEAD/README.md -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acoyfellow/ai-research-agent/HEAD/bun.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acoyfellow/ai-research-agent/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acoyfellow/ai-research-agent/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acoyfellow/ai-research-agent/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wrangler.toml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acoyfellow/ai-research-agent/HEAD/wrangler.toml.example --------------------------------------------------------------------------------