python
0
requests
Start making API calls to LLM services and watch as anyprompt automatically captures and visualizes your conversations.
from openai import OpenAI
import anyprompt
client = OpenAI()
response = client.chat.completions.create(
model="gpt-4o-mini",
messages=[{"role": "user", "content": "Hello, world!"}]
)