A dummy schema class with a model_json_schema method.
| 240 | |
| 241 | |
| 242 | class DummySchema: |
| 243 | """A dummy schema class with a model_json_schema method.""" |
| 244 | |
| 245 | def model_json_schema(self): |
| 246 | return "dummy_schema_json" |
| 247 | |
| 248 | |
| 249 | def test_init_chat_ollama_format(): |
no outgoing calls