Getting Started with Any-LLM
Why Any-LLM?
Installation
%pip install any-llm-sdk[all] nest-asyncio -q
# nest_asyncio allows us to use 'await' directly in Jupyter notebooks
# This is needed because any-llm uses async functions for API calls
import nest_asyncio
nest_asyncio.apply()Setting Up API Keys
List Models Across Providers
Expected output
Generate Text
Expected Output
Last updated