|
28 | 28 | filter_dict={
|
29 | 29 | "api_type": ["openai"],
|
30 | 30 | "model": [
|
| 31 | + "gpt-4o", |
31 | 32 | "gpt-4-turbo",
|
32 | 33 | "gpt-4-turbo-preview",
|
33 | 34 | "gpt-4-0125-preview",
|
@@ -313,7 +314,7 @@ def test_assistant_retrieval() -> None:
|
313 | 314 | "description": "This is a test function 1",
|
314 | 315 | }
|
315 | 316 | function_2_schema = {
|
316 |
| - "name": "call_function_1", |
| 317 | + "name": "call_function_2", |
317 | 318 | "parameters": {"type": "object", "properties": {}, "required": []},
|
318 | 319 | "description": "This is a test function 2",
|
319 | 320 | }
|
@@ -383,12 +384,12 @@ def test_assistant_mismatch_retrieval() -> None:
|
383 | 384 | name = f"For test_assistant_retrieval {uuid.uuid4()}"
|
384 | 385 |
|
385 | 386 | function_1_schema = {
|
386 |
| - "name": "call_function", |
| 387 | + "name": "call_function_1", |
387 | 388 | "parameters": {"type": "object", "properties": {}, "required": []},
|
388 | 389 | "description": "This is a test function 1",
|
389 | 390 | }
|
390 | 391 | function_2_schema = {
|
391 |
| - "name": "call_function", |
| 392 | + "name": "call_function_2", |
392 | 393 | "parameters": {"type": "object", "properties": {}, "required": []},
|
393 | 394 | "description": "This is a test function 2",
|
394 | 395 | }
|
|
0 commit comments