Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ agent = client.agents.create(
{"key": "text", "data_type": "text/plain", "description": "Item description"},
],
engine_config={
"model": "gpt-4.1-2025-04-14",
"model": "gpt-5.5-2026-04-23",
"text": "${text}",
"instruction": "Analyze this product listing. Is it counterfeit?",
"output_schema": {
Expand Down Expand Up @@ -176,7 +176,7 @@ agent = client.agents.create(
{"key": "pdf_files", "data_type": "application/pdf", "description": "Resume PDF"},
],
engine_config={
"model": "gpt-4.1-2025-04-14",
"model": "gpt-5.5-2026-04-23",
"pdf_files": "${pdf_files}",
"instructions": "Extract candidate information from this resume.",
"output_schema": {
Expand Down Expand Up @@ -207,7 +207,7 @@ agent = client.agents.create(
],
engine_config={
"url": "${url}",
"model": "gpt-4.1-2025-04-14",
"model": "gpt-5.5-2026-04-23",
"instruction": "Extract company information from this website.",
"vision_mode": False,
"crawl_config": {
Expand Down
4 changes: 2 additions & 2 deletions SDK_EXAMPLES.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ result = client.agents.create(
name="name", # required
engine_class_id="engine_class_id", # required
input_definitions=[{"key": "text", "data_type": "text/plain"}], # optional
engine_config={"model": "gpt-4.1"}, # optional
engine_config={"model": "gpt-5.5-2026-04-23"}, # optional
version_name="version_name", # optional
description="description", # optional
)
Expand Down Expand Up @@ -343,7 +343,7 @@ client = RoeClient()
result = client.agents.versions.create(
agent_id="agent_id", # required
input_definitions=[{"key": "text", "data_type": "text/plain"}], # optional
engine_config={"model": "gpt-4.1"}, # optional
engine_config={"model": "gpt-5.5-2026-04-23"}, # optional
version_name="version_name", # optional
description="description", # optional
)
Expand Down
2 changes: 1 addition & 1 deletion examples/create_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def main():
},
],
engine_config={
"model": "gpt-4.1-2025-04-14",
"model": "gpt-5.5-2026-04-23",
"instruction": "Summarize the key points of this document.",
"output_schema": {
"type": "object",
Expand Down
2 changes: 1 addition & 1 deletion examples/manage_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def main():
},
],
engine_config={
"model": "gpt-4.1-2025-04-14",
"model": "gpt-5.5-2026-04-23",
"instruction": "Extract structured data from the text.",
"temperature": "0",
},
Expand Down
2 changes: 1 addition & 1 deletion openapi/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,7 @@ paths:
accepts_multiple_files: null
engine_config:
text: ${text}
model: gpt-4.1-2025-04-14
model: gpt-5.5-2026-04-23
instruction: Process the text
temperature: '0.0'
output_schema: '{"type":"string","description":"The result"}'
Expand Down
Loading