Python: Upgrade agentserver packages (#5284)

* Upgrade agentserver packages

* Fix new types
This commit is contained in:
Tao Chen
2026-04-15 14:16:37 -07:00
committed by GitHub
Unverified
parent 9e3983e547
commit 3225a59fd3
4 changed files with 39 additions and 59 deletions
@@ -34,10 +34,6 @@ def main():
"You are an excellent content writer. You create new content and edit contents based on the feedback."
),
name="writer",
# History will be managed by the hosting infrastructure, thus there
# is no need to store history by the service. Learn more at:
# https://developers.openai.com/api/reference/resources/responses/methods/create
default_options={"store": False},
)
reviewer_agent = Agent(
@@ -48,10 +44,6 @@ def main():
"Provide the feedback in the most concise manner possible."
),
name="reviewer",
# History will be managed by the hosting infrastructure, thus there
# is no need to store history by the service. Learn more at:
# https://developers.openai.com/api/reference/resources/responses/methods/create
default_options={"store": False},
)
workflow_agent = (