├── .gitignore ├── .prettierrc ├── README.md ├── bun.lockb ├── dashboard ├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.tsx │ ├── assets │ │ └── react.svg │ ├── components │ │ └── ExperimentGraph.tsx │ ├── index.css │ ├── main.tsx │ └── vite-env.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── evals ├── evalTools.ts ├── experiments │ ├── allTools.eval.ts │ ├── dadJoke.eval.ts │ ├── generateImage.eval.ts │ └── reddit.eval.ts ├── run.ts └── scorers.ts ├── index.ts ├── package.json ├── src ├── agent.ts ├── ai.ts ├── llm.ts ├── memory.ts ├── rag │ ├── imdb_movie_dataset.csv │ ├── ingest.ts │ └── query.ts ├── systemPrompt.ts ├── toolRunner.ts ├── tools │ ├── dadJoke.ts │ ├── generateImage.ts │ ├── index.ts │ ├── movieSearch.ts │ └── reddit.ts └── ui.ts ├── tsconfig.json └── types.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/bun.lockb -------------------------------------------------------------------------------- /dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/dashboard/.gitignore -------------------------------------------------------------------------------- /dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/dashboard/README.md -------------------------------------------------------------------------------- /dashboard/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/dashboard/eslint.config.js -------------------------------------------------------------------------------- /dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/dashboard/index.html -------------------------------------------------------------------------------- /dashboard/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/dashboard/package-lock.json -------------------------------------------------------------------------------- /dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/dashboard/package.json -------------------------------------------------------------------------------- /dashboard/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/dashboard/public/vite.svg -------------------------------------------------------------------------------- /dashboard/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/dashboard/src/App.css -------------------------------------------------------------------------------- /dashboard/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/dashboard/src/App.tsx -------------------------------------------------------------------------------- /dashboard/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/dashboard/src/assets/react.svg -------------------------------------------------------------------------------- /dashboard/src/components/ExperimentGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/dashboard/src/components/ExperimentGraph.tsx -------------------------------------------------------------------------------- /dashboard/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/dashboard/src/index.css -------------------------------------------------------------------------------- /dashboard/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/dashboard/src/main.tsx -------------------------------------------------------------------------------- /dashboard/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /dashboard/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/dashboard/tsconfig.app.json -------------------------------------------------------------------------------- /dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/dashboard/tsconfig.json -------------------------------------------------------------------------------- /dashboard/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/dashboard/tsconfig.node.json -------------------------------------------------------------------------------- /dashboard/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/dashboard/vite.config.ts -------------------------------------------------------------------------------- /evals/evalTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/evals/evalTools.ts -------------------------------------------------------------------------------- /evals/experiments/allTools.eval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/evals/experiments/allTools.eval.ts -------------------------------------------------------------------------------- /evals/experiments/dadJoke.eval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/evals/experiments/dadJoke.eval.ts -------------------------------------------------------------------------------- /evals/experiments/generateImage.eval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/evals/experiments/generateImage.eval.ts -------------------------------------------------------------------------------- /evals/experiments/reddit.eval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/evals/experiments/reddit.eval.ts -------------------------------------------------------------------------------- /evals/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/evals/run.ts -------------------------------------------------------------------------------- /evals/scorers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/evals/scorers.ts -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/package.json -------------------------------------------------------------------------------- /src/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/src/agent.ts -------------------------------------------------------------------------------- /src/ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/src/ai.ts -------------------------------------------------------------------------------- /src/llm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/src/llm.ts -------------------------------------------------------------------------------- /src/memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/src/memory.ts -------------------------------------------------------------------------------- /src/rag/imdb_movie_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/src/rag/imdb_movie_dataset.csv -------------------------------------------------------------------------------- /src/rag/ingest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/src/rag/ingest.ts -------------------------------------------------------------------------------- /src/rag/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/src/rag/query.ts -------------------------------------------------------------------------------- /src/systemPrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/src/systemPrompt.ts -------------------------------------------------------------------------------- /src/toolRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/src/toolRunner.ts -------------------------------------------------------------------------------- /src/tools/dadJoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/src/tools/dadJoke.ts -------------------------------------------------------------------------------- /src/tools/generateImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/src/tools/generateImage.ts -------------------------------------------------------------------------------- /src/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/src/tools/index.ts -------------------------------------------------------------------------------- /src/tools/movieSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/src/tools/movieSearch.ts -------------------------------------------------------------------------------- /src/tools/reddit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/src/tools/reddit.ts -------------------------------------------------------------------------------- /src/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/src/ui.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/agents-production/HEAD/types.ts --------------------------------------------------------------------------------