Skip to content

Commit

Permalink
remove test
Browse files Browse the repository at this point in the history
  • Loading branch information
CShorten committed Jan 11, 2025
1 parent 300624d commit 7601cf8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_lm.py → tests/test_lm.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```python
import pytest
from unittest.mock import Mock, patch, MagicMock
from src.lm.lm import LMService, LMModelProvider
Expand Down Expand Up @@ -167,4 +168,5 @@ def test_openai_structured_outputs(mock_openai):
)]

response = service.call_tools_with_structured_outputs("Use the test function", tools)
assert response == {"function": "test", "arguments": {"arg": "value"}}
assert response == {"function": "test", "arguments": {"arg": "value"}}
```

0 comments on commit 7601cf8

Please sign in to comment.