chore: rename llm handle field to model in create agent req (#718)

This commit is contained in:
cthomas
2025-01-21 17:55:39 -08:00
committed by GitHub
parent a7b603ed57
commit 48642b484d
9 changed files with 36 additions and 33 deletions

View File

@@ -18,7 +18,7 @@ agent_state = client.agents.create(
),
],
# set automatic defaults for LLM/embedding config
llm="openai/gpt-4",
model="openai/gpt-4",
embedding="openai/text-embedding-ada-002",
)
print(f"Created agent with name {agent_state.name} and unique ID {agent_state.id}")