-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Expand file tree
/
Copy pathtest_litellm.py
More file actions
4337 lines (3770 loc) · 134 KB
/
test_litellm.py
File metadata and controls
4337 lines (3770 loc) · 134 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright 2026 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License
import contextlib
import json
import logging
import os
import sys
import tempfile
import unittest
from unittest.mock import ANY
from unittest.mock import AsyncMock
from unittest.mock import Mock
import warnings
from google.adk.models.lite_llm import _append_fallback_user_content_if_missing
from google.adk.models.lite_llm import _content_to_message_param
from google.adk.models.lite_llm import _enforce_strict_openai_schema
from google.adk.models.lite_llm import _FILE_ID_REQUIRED_PROVIDERS
from google.adk.models.lite_llm import _FINISH_REASON_MAPPING
from google.adk.models.lite_llm import _function_declaration_to_tool_param
from google.adk.models.lite_llm import _get_completion_inputs
from google.adk.models.lite_llm import _get_content
from google.adk.models.lite_llm import _get_provider_from_model
from google.adk.models.lite_llm import _message_to_generate_content_response
from google.adk.models.lite_llm import _MISSING_TOOL_RESULT_MESSAGE
from google.adk.models.lite_llm import _model_response_to_chunk
from google.adk.models.lite_llm import _model_response_to_generate_content_response
from google.adk.models.lite_llm import _parse_tool_calls_from_text
from google.adk.models.lite_llm import _redirect_litellm_loggers_to_stdout
from google.adk.models.lite_llm import _schema_to_dict
from google.adk.models.lite_llm import _split_message_content_and_tool_calls
from google.adk.models.lite_llm import _to_litellm_response_format
from google.adk.models.lite_llm import _to_litellm_role
from google.adk.models.lite_llm import FunctionChunk
from google.adk.models.lite_llm import LiteLlm
from google.adk.models.lite_llm import LiteLLMClient
from google.adk.models.lite_llm import ReasoningChunk
from google.adk.models.lite_llm import TextChunk
from google.adk.models.lite_llm import UsageMetadataChunk
from google.adk.models.llm_request import LlmRequest
from google.genai import types
import litellm
from litellm import ChatCompletionAssistantMessage
from litellm import ChatCompletionMessageToolCall
from litellm import Function
from litellm.types.utils import ChatCompletionDeltaToolCall
from litellm.types.utils import Choices
from litellm.types.utils import Delta
from litellm.types.utils import ModelResponse
from litellm.types.utils import ModelResponseStream
from litellm.types.utils import StreamingChoices
from pydantic import BaseModel
from pydantic import Field
import pytest
LLM_REQUEST_WITH_FUNCTION_DECLARATION = LlmRequest(
contents=[
types.Content(
role="user", parts=[types.Part.from_text(text="Test prompt")]
)
],
config=types.GenerateContentConfig(
tools=[
types.Tool(
function_declarations=[
types.FunctionDeclaration(
name="test_function",
description="Test function description",
parameters=types.Schema(
type=types.Type.OBJECT,
properties={
"test_arg": types.Schema(
type=types.Type.STRING
),
"array_arg": types.Schema(
type=types.Type.ARRAY,
items={
"type": types.Type.STRING,
},
),
"nested_arg": types.Schema(
type=types.Type.OBJECT,
properties={
"nested_key1": types.Schema(
type=types.Type.STRING
),
"nested_key2": types.Schema(
type=types.Type.STRING
),
},
),
},
),
)
]
)
],
),
)
FILE_URI_TEST_CASES = [
pytest.param("gs://bucket/document.pdf", "application/pdf", id="pdf"),
pytest.param("gs://bucket/data.json", "application/json", id="json"),
pytest.param("gs://bucket/data.txt", "text/plain", id="txt"),
]
FILE_BYTES_TEST_CASES = [
pytest.param(
b"test_pdf_data",
"application/pdf",
"data:application/pdf;base64,dGVzdF9wZGZfZGF0YQ==",
id="pdf",
),
pytest.param(
b'{"hello":"world"}',
"application/json",
"data:application/json;base64,eyJoZWxsbyI6IndvcmxkIn0=",
id="json",
),
]
STREAMING_MODEL_RESPONSE = [
ModelResponseStream(
model="test_model",
choices=[
StreamingChoices(
finish_reason=None,
delta=Delta(
role="assistant",
content="zero, ",
),
)
],
),
ModelResponseStream(
model="test_model",
choices=[
StreamingChoices(
finish_reason=None,
delta=Delta(
role="assistant",
content="one, ",
),
)
],
),
ModelResponseStream(
model="test_model",
choices=[
StreamingChoices(
finish_reason=None,
delta=Delta(
role="assistant",
content="two:",
),
)
],
),
ModelResponseStream(
model="test_model",
choices=[
StreamingChoices(
finish_reason=None,
delta=Delta(
role="assistant",
tool_calls=[
ChatCompletionDeltaToolCall(
type="function",
id="test_tool_call_id",
function=Function(
name="test_function",
arguments='{"test_arg": "test_',
),
index=0,
)
],
),
)
],
),
ModelResponseStream(
model="test_model",
choices=[
StreamingChoices(
finish_reason=None,
delta=Delta(
role="assistant",
tool_calls=[
ChatCompletionDeltaToolCall(
type="function",
id=None,
function=Function(
name=None,
arguments='value"}',
),
index=0,
)
],
),
)
],
),
ModelResponseStream(
model="test_model",
choices=[
StreamingChoices(
finish_reason="tool_use",
)
],
),
]
class _StructuredOutput(BaseModel):
value: int = Field(description="Value to emit")
class _ModelDumpOnly:
"""Test helper that mimics objects exposing only model_dump."""
def __init__(self):
self._schema = {
"type": "object",
"properties": {"foo": {"type": "string"}},
}
def model_dump(self, *, exclude_none=True, mode="json"):
# The method signature matches pydantic BaseModel.model_dump to simulate
# google.genai schema-like objects.
del exclude_none
del mode
return self._schema
async def test_get_completion_inputs_formats_pydantic_schema_for_litellm():
llm_request = LlmRequest(
config=types.GenerateContentConfig(response_schema=_StructuredOutput)
)
_, _, response_format, _ = await _get_completion_inputs(
llm_request, model="gemini/gemini-2.0-flash"
)
assert response_format == {
"type": "json_object",
"response_schema": _StructuredOutput.model_json_schema(),
}
def test_to_litellm_response_format_passes_preformatted_dict():
response_format = {
"type": "json_object",
"response_schema": {
"type": "object",
"properties": {"foo": {"type": "string"}},
},
}
assert (
_to_litellm_response_format(
response_format, model="gemini/gemini-2.0-flash"
)
== response_format
)
def test_to_litellm_response_format_wraps_json_schema_dict():
schema = {
"type": "object",
"properties": {"foo": {"type": "string"}},
}
formatted = _to_litellm_response_format(
schema, model="gemini/gemini-2.0-flash"
)
assert formatted["type"] == "json_object"
assert formatted["response_schema"] == schema
def test_to_litellm_response_format_handles_model_dump_object():
schema_obj = _ModelDumpOnly()
formatted = _to_litellm_response_format(
schema_obj, model="gemini/gemini-2.0-flash"
)
assert formatted["type"] == "json_object"
assert formatted["response_schema"] == schema_obj.model_dump()
def test_to_litellm_response_format_handles_genai_schema_instance():
schema_instance = types.Schema(
type=types.Type.OBJECT,
properties={"foo": types.Schema(type=types.Type.STRING)},
required=["foo"],
)
formatted = _to_litellm_response_format(
schema_instance, model="gemini/gemini-2.0-flash"
)
assert formatted["type"] == "json_object"
assert formatted["response_schema"] == schema_instance.model_dump(
exclude_none=True, mode="json"
)
def test_to_litellm_response_format_uses_json_schema_for_openai_model():
"""Test that OpenAI models use json_schema format instead of response_schema."""
formatted = _to_litellm_response_format(
_StructuredOutput, model="gpt-4o-mini"
)
assert formatted["type"] == "json_schema"
assert "json_schema" in formatted
assert formatted["json_schema"]["name"] == "_StructuredOutput"
assert formatted["json_schema"]["strict"] is True
assert formatted["json_schema"]["schema"]["additionalProperties"] is False
assert "additionalProperties" in formatted["json_schema"]["schema"]
def test_to_litellm_response_format_uses_response_schema_for_gemini_model():
"""Test that Gemini models continue to use response_schema format."""
formatted = _to_litellm_response_format(
_StructuredOutput, model="gemini/gemini-2.0-flash"
)
assert formatted["type"] == "json_object"
assert "response_schema" in formatted
assert formatted["response_schema"] == _StructuredOutput.model_json_schema()
def test_to_litellm_response_format_uses_response_schema_for_vertex_gemini():
"""Test that Vertex AI Gemini models use response_schema format."""
formatted = _to_litellm_response_format(
_StructuredOutput, model="vertex_ai/gemini-2.0-flash"
)
assert formatted["type"] == "json_object"
assert "response_schema" in formatted
assert formatted["response_schema"] == _StructuredOutput.model_json_schema()
def test_to_litellm_response_format_uses_json_schema_for_azure_openai():
"""Test that Azure OpenAI models use json_schema format."""
formatted = _to_litellm_response_format(
_StructuredOutput, model="azure/gpt-4o"
)
assert formatted["type"] == "json_schema"
assert "json_schema" in formatted
assert formatted["json_schema"]["name"] == "_StructuredOutput"
assert formatted["json_schema"]["strict"] is True
assert formatted["json_schema"]["schema"]["additionalProperties"] is False
assert "additionalProperties" in formatted["json_schema"]["schema"]
def test_to_litellm_response_format_uses_json_schema_for_anthropic():
"""Test that Anthropic models use json_schema format."""
formatted = _to_litellm_response_format(
_StructuredOutput, model="anthropic/claude-3-5-sonnet"
)
assert formatted["type"] == "json_schema"
assert "json_schema" in formatted
assert formatted["json_schema"]["name"] == "_StructuredOutput"
assert formatted["json_schema"]["strict"] is True
assert formatted["json_schema"]["schema"]["additionalProperties"] is False
assert "additionalProperties" in formatted["json_schema"]["schema"]
def test_to_litellm_response_format_with_dict_schema_for_openai():
"""Test dict schema with OpenAI model uses json_schema format."""
schema = {
"type": "object",
"properties": {"foo": {"type": "string"}},
}
formatted = _to_litellm_response_format(schema, model="gpt-4o")
assert formatted["type"] == "json_schema"
assert formatted["json_schema"]["name"] == "response"
assert formatted["json_schema"]["strict"] is True
assert formatted["json_schema"]["schema"]["additionalProperties"] is False
class _InnerModel(BaseModel):
value: str = Field(description="A value")
optional_field: str | None = Field(default=None, description="Optional")
class _OuterModel(BaseModel):
inner: _InnerModel = Field(description="Nested model")
name: str
class _WithList(BaseModel):
items: list[_InnerModel] = Field(description="List of items")
label: str
def test_enforce_strict_openai_schema_adds_additional_properties_recursively():
"""additionalProperties: false must appear on all object schemas."""
schema = _OuterModel.model_json_schema()
_enforce_strict_openai_schema(schema)
# Root level
assert schema["additionalProperties"] is False
# Nested model in $defs
inner_def = schema["$defs"]["_InnerModel"]
assert inner_def["additionalProperties"] is False
def test_enforce_strict_openai_schema_marks_all_properties_required():
"""All properties must appear in 'required', including optional fields."""
schema = _InnerModel.model_json_schema()
_enforce_strict_openai_schema(schema)
assert sorted(schema["required"]) == ["optional_field", "value"]
def test_enforce_strict_openai_schema_strips_ref_sibling_keywords():
"""$ref nodes must have no sibling keywords like 'description'."""
schema = _OuterModel.model_json_schema()
# Pydantic v2 generates {"$ref": "...", "description": "..."} for nested models
inner_prop = schema["properties"]["inner"]
assert "$ref" in inner_prop, "Expected Pydantic to generate a $ref property"
assert len(inner_prop) > 1, "Expected sibling keywords alongside $ref"
_enforce_strict_openai_schema(schema)
inner_prop = schema["properties"]["inner"]
assert list(inner_prop.keys()) == ["$ref"]
def test_enforce_strict_openai_schema_handles_array_items():
"""Array item schemas should also be recursively transformed."""
schema = _WithList.model_json_schema()
_enforce_strict_openai_schema(schema)
assert schema["additionalProperties"] is False
inner_def = schema["$defs"]["_InnerModel"]
assert inner_def["additionalProperties"] is False
assert sorted(inner_def["required"]) == ["optional_field", "value"]
def test_enforce_strict_openai_schema_preserves_anyof_and_default():
"""anyOf structure and default value for Optional fields must be preserved."""
schema = _InnerModel.model_json_schema()
_enforce_strict_openai_schema(schema)
opt_prop = schema["properties"]["optional_field"]
assert opt_prop["anyOf"] == [{"type": "string"}, {"type": "null"}]
assert opt_prop["default"] is None
def test_to_litellm_response_format_dict_input_not_mutated():
"""Passing a raw dict should not mutate the caller's original dict."""
schema = {
"type": "object",
"properties": {
"nested": {
"type": "object",
"properties": {"x": {"type": "string"}},
}
},
}
import copy
original = copy.deepcopy(schema)
_to_litellm_response_format(schema, model="gpt-4o")
assert schema == original, "Caller's input dict was mutated"
def test_to_litellm_response_format_instance_input_for_openai():
"""Passing a BaseModel instance should produce a valid strict schema."""
instance = _OuterModel(
inner=_InnerModel(value="test", optional_field=None), name="foo"
)
formatted = _to_litellm_response_format(instance, model="gpt-4o")
assert formatted["type"] == "json_schema"
schema = formatted["json_schema"]["schema"]
assert schema["additionalProperties"] is False
inner_def = schema["$defs"]["_InnerModel"]
assert inner_def["additionalProperties"] is False
assert sorted(inner_def["required"]) == ["optional_field", "value"]
def test_to_litellm_response_format_nested_pydantic_for_openai():
"""Nested Pydantic model should produce a valid OpenAI strict schema."""
formatted = _to_litellm_response_format(_OuterModel, model="gpt-4o")
assert formatted["type"] == "json_schema"
assert formatted["json_schema"]["strict"] is True
schema = formatted["json_schema"]["schema"]
assert schema["additionalProperties"] is False
assert sorted(schema["required"]) == ["inner", "name"]
# $defs inner model must also be strict
inner_def = schema["$defs"]["_InnerModel"]
assert inner_def["additionalProperties"] is False
assert sorted(inner_def["required"]) == ["optional_field", "value"]
def test_to_litellm_response_format_nested_pydantic_for_gemini_unchanged():
"""Gemini models should NOT get the strict OpenAI transformations."""
formatted = _to_litellm_response_format(
_OuterModel, model="gemini/gemini-2.0-flash"
)
assert formatted["type"] == "json_object"
schema = formatted["response_schema"]
# Gemini path should pass through the raw Pydantic schema untouched
assert schema == _OuterModel.model_json_schema()
async def test_get_completion_inputs_uses_openai_format_for_openai_model():
"""Test that _get_completion_inputs produces OpenAI-compatible format."""
llm_request = LlmRequest(
model="gpt-4o-mini",
config=types.GenerateContentConfig(response_schema=_StructuredOutput),
)
_, _, response_format, _ = await _get_completion_inputs(
llm_request, model="gpt-4o-mini"
)
assert response_format["type"] == "json_schema"
assert "json_schema" in response_format
assert response_format["json_schema"]["name"] == "_StructuredOutput"
assert response_format["json_schema"]["strict"] is True
assert (
response_format["json_schema"]["schema"]["additionalProperties"] is False
)
async def test_get_completion_inputs_uses_gemini_format_for_gemini_model():
"""Test that _get_completion_inputs produces Gemini-compatible format."""
llm_request = LlmRequest(
model="gemini/gemini-2.0-flash",
config=types.GenerateContentConfig(response_schema=_StructuredOutput),
)
_, _, response_format, _ = await _get_completion_inputs(
llm_request, model="gemini/gemini-2.0-flash"
)
assert response_format["type"] == "json_object"
assert "response_schema" in response_format
async def test_get_completion_inputs_uses_passed_model_for_response_format():
"""Test that _get_completion_inputs uses the passed model parameter for response format.
This verifies that when llm_request.model is None, the explicit model parameter
is used to determine the correct response format (Gemini vs OpenAI).
"""
llm_request = LlmRequest(
model=None, # No model in request
config=types.GenerateContentConfig(response_schema=_StructuredOutput),
)
# Pass OpenAI model explicitly - should use json_schema format
_, _, response_format, _ = await _get_completion_inputs(
llm_request, model="gpt-4o-mini"
)
assert response_format["type"] == "json_schema"
assert "json_schema" in response_format
assert response_format["json_schema"]["name"] == "_StructuredOutput"
assert response_format["json_schema"]["strict"] is True
assert (
response_format["json_schema"]["schema"]["additionalProperties"] is False
)
async def test_get_completion_inputs_uses_passed_model_for_gemini_format():
"""Test that _get_completion_inputs uses passed model for Gemini response format.
This verifies that when self.model is a Gemini model and passed explicitly,
the response format uses the Gemini-specific format.
"""
llm_request = LlmRequest(
model=None, # No model in request
config=types.GenerateContentConfig(response_schema=_StructuredOutput),
)
# Pass Gemini model explicitly - should use response_schema format
_, _, response_format, _ = await _get_completion_inputs(
llm_request, model="gemini/gemini-2.0-flash"
)
assert response_format["type"] == "json_object"
assert "response_schema" in response_format
@pytest.mark.asyncio
async def test_get_completion_inputs_inserts_missing_tool_results():
user_content = types.Content(
role="user", parts=[types.Part.from_text(text="Hi")]
)
assistant_content = types.Content(
role="assistant",
parts=[
types.Part.from_text(text="Calling tool."),
types.Part.from_function_call(
name="get_weather", args={"location": "Seoul"}
),
],
)
assistant_content.parts[1].function_call.id = "tool_call_1"
followup_user = types.Content(
role="user", parts=[types.Part.from_text(text="Next question.")]
)
llm_request = LlmRequest(
contents=[user_content, assistant_content, followup_user]
)
messages, _, _, _ = await _get_completion_inputs(
llm_request, model="openai/gpt-4o"
)
assert [message["role"] for message in messages] == [
"user",
"assistant",
"tool",
"user",
]
tool_message = messages[2]
assert tool_message["tool_call_id"] == "tool_call_1"
assert tool_message["content"] == _MISSING_TOOL_RESULT_MESSAGE
def test_schema_to_dict_filters_none_enum_values():
# Use model_construct to bypass strict enum validation.
top_level_schema = types.Schema.model_construct(
type=types.Type.STRING,
enum=["ACTIVE", None, "INACTIVE"],
)
nested_schema = types.Schema.model_construct(
type=types.Type.OBJECT,
properties={
"status": types.Schema.model_construct(
type=types.Type.STRING, enum=["READY", None, "DONE"]
),
},
)
assert _schema_to_dict(top_level_schema)["enum"] == ["ACTIVE", "INACTIVE"]
assert _schema_to_dict(nested_schema)["properties"]["status"]["enum"] == [
"READY",
"DONE",
]
MULTIPLE_FUNCTION_CALLS_STREAM = [
ModelResponseStream(
choices=[
StreamingChoices(
finish_reason=None,
delta=Delta(
role="assistant",
tool_calls=[
ChatCompletionDeltaToolCall(
type="function",
id="call_1",
function=Function(
name="function_1",
arguments='{"arg": "val',
),
index=0,
)
],
),
)
]
),
ModelResponseStream(
choices=[
StreamingChoices(
finish_reason=None,
delta=Delta(
role="assistant",
tool_calls=[
ChatCompletionDeltaToolCall(
type="function",
id=None,
function=Function(
name=None,
arguments='ue1"}',
),
index=0,
)
],
),
)
]
),
ModelResponseStream(
choices=[
StreamingChoices(
finish_reason=None,
delta=Delta(
role="assistant",
tool_calls=[
ChatCompletionDeltaToolCall(
type="function",
id="call_2",
function=Function(
name="function_2",
arguments='{"arg": "val',
),
index=1,
)
],
),
)
]
),
ModelResponseStream(
choices=[
StreamingChoices(
finish_reason=None,
delta=Delta(
role="assistant",
tool_calls=[
ChatCompletionDeltaToolCall(
type="function",
id=None,
function=Function(
name=None,
arguments='ue2"}',
),
index=1,
)
],
),
)
]
),
ModelResponseStream(
choices=[
StreamingChoices(
finish_reason="tool_calls",
)
]
),
]
STREAM_WITH_EMPTY_CHUNK = [
ModelResponseStream(
choices=[
StreamingChoices(
finish_reason=None,
delta=Delta(
role="assistant",
tool_calls=[
ChatCompletionDeltaToolCall(
type="function",
id="call_abc",
function=Function(
name="test_function",
arguments='{"test_arg":',
),
index=0,
)
],
),
)
]
),
ModelResponseStream(
choices=[
StreamingChoices(
finish_reason=None,
delta=Delta(
role="assistant",
tool_calls=[
ChatCompletionDeltaToolCall(
type="function",
id=None,
function=Function(
name=None,
arguments=' "value"}',
),
index=0,
)
],
),
)
]
),
# This is the problematic empty chunk that should be ignored.
ModelResponseStream(
choices=[
StreamingChoices(
finish_reason=None,
delta=Delta(
role="assistant",
tool_calls=[
ChatCompletionDeltaToolCall(
type="function",
id=None,
function=Function(
name=None,
arguments="",
),
index=0,
)
],
),
)
]
),
ModelResponseStream(
choices=[StreamingChoices(finish_reason="tool_calls", delta=Delta())]
),
]
@pytest.fixture
def mock_response():
return ModelResponse(
model="test_model",
choices=[
Choices(
message=ChatCompletionAssistantMessage(
role="assistant",
content="Test response",
tool_calls=[
ChatCompletionMessageToolCall(
type="function",
id="test_tool_call_id",
function=Function(
name="test_function",
arguments='{"test_arg": "test_value"}',
),
)
],
)
)
],
)
# Test case reflecting litellm v1.71.2, ollama v0.9.0 streaming response
# no tool call ids
# indices all 0
# finish_reason stop instead of tool_calls
NON_COMPLIANT_MULTIPLE_FUNCTION_CALLS_STREAM = [
ModelResponseStream(
choices=[
StreamingChoices(
finish_reason=None,
delta=Delta(
role="assistant",
tool_calls=[
ChatCompletionDeltaToolCall(
type="function",
id=None,
function=Function(
name="function_1",
arguments='{"arg": "val',
),
index=0,
)
],
),
)
]
),
ModelResponseStream(
choices=[
StreamingChoices(
finish_reason=None,
delta=Delta(
role="assistant",
tool_calls=[
ChatCompletionDeltaToolCall(
type="function",
id=None,
function=Function(
name=None,
arguments='ue1"}',
),
index=0,
)
],
),
)
]
),
ModelResponseStream(
choices=[
StreamingChoices(
finish_reason=None,
delta=Delta(
role="assistant",
tool_calls=[
ChatCompletionDeltaToolCall(
type="function",
id=None,
function=Function(
name="function_2",
arguments='{"arg": "val',
),
index=0,
)
],
),
)
]
),
ModelResponseStream(
choices=[
StreamingChoices(
finish_reason=None,
delta=Delta(
role="assistant",
tool_calls=[
ChatCompletionDeltaToolCall(
type="function",
id=None,
function=Function(
name=None,
arguments='ue2"}',
),
index=0,
)
],
),
)
]
),
ModelResponseStream(
choices=[
StreamingChoices(
finish_reason="stop",
)
]
),
]
@pytest.fixture
def mock_acompletion(mock_response):
return AsyncMock(return_value=mock_response)
@pytest.fixture
def mock_completion(mock_response):
return Mock(return_value=mock_response)
@pytest.fixture
def mock_client(mock_acompletion, mock_completion):
return MockLLMClient(mock_acompletion, mock_completion)
@pytest.fixture
def lite_llm_instance(mock_client):
return LiteLlm(model="test_model", llm_client=mock_client)
class MockLLMClient(LiteLLMClient):
def __init__(self, acompletion_mock, completion_mock):
self.acompletion_mock = acompletion_mock
self.completion_mock = completion_mock
async def acompletion(self, model, messages, tools, **kwargs):
if kwargs.get("stream", False):
kwargs_copy = dict(kwargs)
kwargs_copy.pop("stream", None)
async def stream_generator():
stream_data = self.completion_mock(
model=model,
messages=messages,
tools=tools,