We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 970deb0 commit f9d2730Copy full SHA for f9d2730
1 file changed
tests/unittests/models/test_litellm.py
@@ -559,26 +559,6 @@ async def test_generate_content_async_with_model_override(
559
role="user", parts=[types.Part.from_text(text="Test prompt")]
560
)
561
],
562
- config=types.GenerateContentConfig(
563
- tools=[
564
- types.Tool(
565
- function_declarations=[
566
- types.FunctionDeclaration(
567
- name="test_function",
568
- description="Test function description",
569
- parameters=types.Schema(
570
- type=types.Type.OBJECT,
571
- properties={
572
- "test_arg": types.Schema(
573
- type=types.Type.STRING
574
- )
575
- },
576
- ),
577
578
- ]
579
580
- ],
581
582
583
584
async for response in lite_llm_instance.generate_content_async(llm_request):
0 commit comments