Start building awesome documentation in under 5 minutes
from ironaai import ironaai client = ironaai.Client( # Optional - automatically loads from environment variable api_key='your_ironaai_api_key' ) chat_completions = irona.completions.create( messages=[ {"role": "system", "content": "You are a helpful assistant."}, {"role": "user", "content": "Explain the golden ratio."} ], models=['openai/gpt-4o', 'anthropic/claude-3-5-sonnet-20240620'] ) print('LLM output:', chat_completions.content) print('Selected providers:', chat_completions.providers)
Was this page helpful?