We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 954c98e commit 4a5026aCopy full SHA for 4a5026a
tests/test_agent_runtime.py
@@ -99,7 +99,8 @@ def test_init_with_backend(self) -> None:
99
assert runtime.backend is backend
100
assert runtime.tracer is tracer
101
assert runtime.step_id is None
102
- assert runtime.step_index == 0
+ # 0-based step ids: first begin_step() will produce "step-0"
103
+ assert runtime.step_index == -1
104
assert runtime.last_snapshot is None
105
assert runtime.is_task_done is False
106
0 commit comments