Skip to content

Instantly share code, notes, and snippets.

@fluidog
fluidog / example_OpenAI_formated_output.py
Last active September 2, 2025 08:28
OpenAI API 结构化输出 配置示例
response = client.chat.completions.create(
model=model,
messages=messages,
response_format={
"type": "json_schema",
"json_schema": {
"name": "calendar_event",
"schema": {
"type": "object",
"properties": {