├── .gitignore ├── LICENSE ├── README.md ├── anthropic.js ├── anthropic.test.js ├── anthropic_test.js ├── asyncllm.d.ts ├── asyncllm.js ├── gemini.js ├── gemini.test.js ├── gemini_test.js ├── package.json ├── samples ├── anthropic-tools.txt ├── anthropic-tools2.txt ├── anthropic.txt ├── errors.txt ├── gemini-tools.txt ├── gemini-tools2.txt ├── gemini.txt ├── openai-responses-tools.txt ├── openai-responses-tools2.txt ├── openai-responses.txt ├── openai-tools.txt ├── openai-tools2.txt ├── openai.txt ├── openrouter.txt └── output.txt └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/README.md -------------------------------------------------------------------------------- /anthropic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/anthropic.js -------------------------------------------------------------------------------- /anthropic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/anthropic.test.js -------------------------------------------------------------------------------- /anthropic_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/anthropic_test.js -------------------------------------------------------------------------------- /asyncllm.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/asyncllm.d.ts -------------------------------------------------------------------------------- /asyncllm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/asyncllm.js -------------------------------------------------------------------------------- /gemini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/gemini.js -------------------------------------------------------------------------------- /gemini.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/gemini.test.js -------------------------------------------------------------------------------- /gemini_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/gemini_test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/package.json -------------------------------------------------------------------------------- /samples/anthropic-tools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/samples/anthropic-tools.txt -------------------------------------------------------------------------------- /samples/anthropic-tools2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/samples/anthropic-tools2.txt -------------------------------------------------------------------------------- /samples/anthropic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/samples/anthropic.txt -------------------------------------------------------------------------------- /samples/errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/samples/errors.txt -------------------------------------------------------------------------------- /samples/gemini-tools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/samples/gemini-tools.txt -------------------------------------------------------------------------------- /samples/gemini-tools2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/samples/gemini-tools2.txt -------------------------------------------------------------------------------- /samples/gemini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/samples/gemini.txt -------------------------------------------------------------------------------- /samples/openai-responses-tools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/samples/openai-responses-tools.txt -------------------------------------------------------------------------------- /samples/openai-responses-tools2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/samples/openai-responses-tools2.txt -------------------------------------------------------------------------------- /samples/openai-responses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/samples/openai-responses.txt -------------------------------------------------------------------------------- /samples/openai-tools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/samples/openai-tools.txt -------------------------------------------------------------------------------- /samples/openai-tools2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/samples/openai-tools2.txt -------------------------------------------------------------------------------- /samples/openai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/samples/openai.txt -------------------------------------------------------------------------------- /samples/openrouter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/samples/openrouter.txt -------------------------------------------------------------------------------- /samples/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/samples/output.txt -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramener/asyncllm/HEAD/test.js --------------------------------------------------------------------------------