mirror of https://github.com/aliasrobotics/cai.git
Fix pretty print
This commit is contained in:
parent
9e02077d62
commit
8a6200775e
|
|
@ -47,7 +47,7 @@ async def test_pretty_run_result_streaming():
|
||||||
RunResultStreaming:
|
RunResultStreaming:
|
||||||
- Current agent: Agent(name="test_agent", ...)
|
- Current agent: Agent(name="test_agent", ...)
|
||||||
- Current turn: 1
|
- Current turn: 1
|
||||||
- Max turns: 10
|
- Max turns: inf
|
||||||
- Is complete: True
|
- Is complete: True
|
||||||
- Final output (str):
|
- Final output (str):
|
||||||
Hi there
|
Hi there
|
||||||
|
|
@ -111,7 +111,7 @@ async def test_pretty_run_result_streaming_structured_output():
|
||||||
RunResultStreaming:
|
RunResultStreaming:
|
||||||
- Current agent: Agent(name="test_agent", ...)
|
- Current agent: Agent(name="test_agent", ...)
|
||||||
- Current turn: 1
|
- Current turn: 1
|
||||||
- Max turns: 10
|
- Max turns: inf
|
||||||
- Is complete: True
|
- Is complete: True
|
||||||
- Final output (Foo):
|
- Final output (Foo):
|
||||||
{
|
{
|
||||||
|
|
@ -189,7 +189,7 @@ async def test_pretty_run_result_streaming_list_structured_output():
|
||||||
RunResultStreaming:
|
RunResultStreaming:
|
||||||
- Current agent: Agent(name="test_agent", ...)
|
- Current agent: Agent(name="test_agent", ...)
|
||||||
- Current turn: 1
|
- Current turn: 1
|
||||||
- Max turns: 10
|
- Max turns: inf
|
||||||
- Is complete: True
|
- Is complete: True
|
||||||
- Final output (list):
|
- Final output (list):
|
||||||
[Foo(bar='Test'), Foo(bar='Test 2')]
|
[Foo(bar='Test'), Foo(bar='Test 2')]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue