├── .github └── workflows │ └── compile.yml ├── .gitignore ├── .idx ├── .gitignore └── dev.nix ├── README.md ├── bots ├── chatgpt.ts ├── claude_3.ts ├── gemini.ts ├── gpt_4.ts ├── gpt_4o.ts ├── llama_3.ts └── mixtral.ts ├── changelog.md ├── client.ts ├── lib ├── eval.ts ├── eval_worker.js ├── importLLMFile.ts └── sanity_check.ts ├── main.d.ts ├── main.ts ├── prototype ├── README.md └── fixGPTCode.ts ├── slashcode.ts └── vdb.ts /.github/workflows/compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eris-webserv/llm-bot/HEAD/.github/workflows/compile.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.env 2 | /.vscode 3 | db.* 4 | bots/rpgpt_* 5 | llmbot.* -------------------------------------------------------------------------------- /.idx/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | gc/ 3 | -------------------------------------------------------------------------------- /.idx/dev.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eris-webserv/llm-bot/HEAD/.idx/dev.nix -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eris-webserv/llm-bot/HEAD/README.md -------------------------------------------------------------------------------- /bots/chatgpt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eris-webserv/llm-bot/HEAD/bots/chatgpt.ts -------------------------------------------------------------------------------- /bots/claude_3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eris-webserv/llm-bot/HEAD/bots/claude_3.ts -------------------------------------------------------------------------------- /bots/gemini.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eris-webserv/llm-bot/HEAD/bots/gemini.ts -------------------------------------------------------------------------------- /bots/gpt_4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eris-webserv/llm-bot/HEAD/bots/gpt_4.ts -------------------------------------------------------------------------------- /bots/gpt_4o.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eris-webserv/llm-bot/HEAD/bots/gpt_4o.ts -------------------------------------------------------------------------------- /bots/llama_3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eris-webserv/llm-bot/HEAD/bots/llama_3.ts -------------------------------------------------------------------------------- /bots/mixtral.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eris-webserv/llm-bot/HEAD/bots/mixtral.ts -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eris-webserv/llm-bot/HEAD/changelog.md -------------------------------------------------------------------------------- /client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eris-webserv/llm-bot/HEAD/client.ts -------------------------------------------------------------------------------- /lib/eval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eris-webserv/llm-bot/HEAD/lib/eval.ts -------------------------------------------------------------------------------- /lib/eval_worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eris-webserv/llm-bot/HEAD/lib/eval_worker.js -------------------------------------------------------------------------------- /lib/importLLMFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eris-webserv/llm-bot/HEAD/lib/importLLMFile.ts -------------------------------------------------------------------------------- /lib/sanity_check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eris-webserv/llm-bot/HEAD/lib/sanity_check.ts -------------------------------------------------------------------------------- /main.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eris-webserv/llm-bot/HEAD/main.d.ts -------------------------------------------------------------------------------- /main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eris-webserv/llm-bot/HEAD/main.ts -------------------------------------------------------------------------------- /prototype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eris-webserv/llm-bot/HEAD/prototype/README.md -------------------------------------------------------------------------------- /prototype/fixGPTCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eris-webserv/llm-bot/HEAD/prototype/fixGPTCode.ts -------------------------------------------------------------------------------- /slashcode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eris-webserv/llm-bot/HEAD/slashcode.ts -------------------------------------------------------------------------------- /vdb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eris-webserv/llm-bot/HEAD/vdb.ts --------------------------------------------------------------------------------