fixing lint issues
This commit is contained in:
parent
536d7826d5
commit
65546703cb
1 changed files with 3 additions and 3 deletions
|
|
@ -3,9 +3,9 @@ from agents import Agent, Runner
|
||||||
agent = Agent(name="Assistant", instructions="You are a helpful assistant")
|
agent = Agent(name="Assistant", instructions="You are a helpful assistant")
|
||||||
|
|
||||||
# Intended for Jupyter notebooks where there's an existing event loop
|
# Intended for Jupyter notebooks where there's an existing event loop
|
||||||
result = await Runner.run(agent, "Write a haiku about recursion in programming.")
|
result = await Runner.run(agent, "Write a haiku about recursion in programming.") # noqa: F704
|
||||||
print(result.final_output)
|
print(result.final_output)
|
||||||
|
|
||||||
# Code within code loops,
|
# Code within code loops,
|
||||||
# Infinite mirrors reflect—
|
# Infinite mirrors reflect—
|
||||||
# Logic folds on self.
|
# Logic folds on self.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue