Groq Python SDK Support for Responses API

Hi there! We don’t currently have any plans to update our SDKs to support the Responses API. Is there any reason you want it in the Groq SDK instead of using the OpenAI SDK pointed to the Groq endpoint? For example, to use the Responses API with Groq in Python, you can use the OpenAI SDK like this: import openai
client = openai.OpenAI(
api_key=“your-groq-api-key”,
base_url=“https://api.groq.com/openai/v1
)
response = client.responses.create(
model=“llama-3.3-70b-versatile”,
input=“Tell me a fun fact about the moon in one sentence.”,
)
print(response.output_text)