Skip to content

Commit 3867b8c

Browse files
committed
commas? for snapshots
1 parent e4ae362 commit 3867b8c

File tree

3 files changed

+63
-63
lines changed

3 files changed

+63
-63
lines changed

tests/test_history_processor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,15 +192,15 @@ def process_previous_answers(messages: list[ModelMessage]) -> list[ModelMessage]
192192
[
193193
ModelRequest(
194194
parts=[UserPromptPart(content='Question 3', timestamp=IsDatetime())],
195-
run_id=IsStr()
195+
run_id=IsStr(),
196196
),
197197
ModelRequest(parts=[SystemPromptPart(content='Processed answer', timestamp=IsDatetime())]),
198198
ModelResponse(
199199
parts=[TextPart(content='hello')],
200200
usage=RequestUsage(input_tokens=50, output_tokens=1),
201201
model_name='function:capture_model_function:capture_model_stream_function',
202202
timestamp=IsDatetime(),
203-
run_id=IsStr()
203+
run_id=IsStr(),
204204
),
205205
]
206206
)

0 commit comments

Comments
 (0)