Python
Python Integration
Installation
pip install openaiUsage
from openai import OpenAI
# Initialize the client
client = OpenAI(
api_key="your-api-key", # Use your Agent ID as the API Key
base_url="https://api-quicksilver.iotex.ai/v1", # QuickSilver API endpoint
)
# Prepare Actor input
run_input = {
"model": "gpt-3.5-turbo",
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Tell me about OpenAPI schemas."}
],
"temperature": 0.7
}
# Run the conversation
response = client.chat.completions.create(**run_input)
# Process the response
print(response.choices[0].message.content)Tips
Last updated

