├── .gitignore ├── LICENSE ├── README.md ├── examples ├── chat.py ├── generate.py └── models.py ├── setup.py └── vercel-llm-api └── src └── vercel_ai.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ading2210/vercel-llm-api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ading2210/vercel-llm-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ading2210/vercel-llm-api/HEAD/README.md -------------------------------------------------------------------------------- /examples/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ading2210/vercel-llm-api/HEAD/examples/chat.py -------------------------------------------------------------------------------- /examples/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ading2210/vercel-llm-api/HEAD/examples/generate.py -------------------------------------------------------------------------------- /examples/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ading2210/vercel-llm-api/HEAD/examples/models.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ading2210/vercel-llm-api/HEAD/setup.py -------------------------------------------------------------------------------- /vercel-llm-api/src/vercel_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ading2210/vercel-llm-api/HEAD/vercel-llm-api/src/vercel_ai.py --------------------------------------------------------------------------------