-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Expand file tree
/
Copy pathstructured_output_1.py
More file actions
38 lines (34 loc) · 1.04 KB
/
structured_output_1.py
File metadata and controls
38 lines (34 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import anthropic
import json
client = anthropic.Anthropic()
response = client.messages.create(
model="claude-sonnet-4-6",
max_tokens=1024,
system="You are a Python coding assistant.",
messages=[
{
"role": "user",
"content": "Write a Python function that adds two numbers.",
}
],
output_config={
"format": {
"type": "json_schema",
"schema": {
"type": "object",
"properties": {
"function_name": {"type": "string"},
"code": {"type": "string"},
"explanation": {"type": "string"},
},
"required": ["function_name", "code", "explanation"],
"additionalProperties": False,
},
}
},
)
result = json.loads(response.content[0].text)
print("--- Approach 1: Hand-written JSON schema ---")
print(f"Function: {result['function_name']}")
print(f"\nCode:\n{result['code']}")
print(f"\nExplanation: {result['explanation']}")