Interact with Groq as you normally would. Our Instrumentor will automatically trace and send the telemetry data to our platform.
Copy
from groq import Groqclient = Groq()chat_completion = client.chat.completions.create( messages=[ { "role": "system", "content": "you are a helpful assistant." }, { "role": "user", "content": "Explain the importance of fast language models", } ], model="llama-3.3-70b-versatile",)print(chat_completion.choices[0].message.content)