We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c7faf4 commit 64c7a9bCopy full SHA for 64c7a9b
tests/test_chat_clients.py
@@ -209,7 +209,13 @@ def test_empty_base_url_parameters(self):
209
210
with patch('ps_fuzz.chat_clients.chat_models_info', test_chat_models_info):
211
# Create client with empty ollama_base_url
212
-
+ client = ClientLangChain(
213
+ backend='ollama',
214
+ model='llama2',
215
+ temperature=0.7,
216
+ ollama_base_url=''
217
+ )
218
+
219
# Verify empty base URL parameters are passed through unchanged
220
# (implementation only processes truthy values)
221
call_args = mock_model_cls.call_args
0 commit comments