interface documentation
class IZMSLLMConnector(Interface): (source)
Undocumented
| Method | chat |
Send messages to the configured LLM provider and get a response. |
| Method | get |
Get information about the currently configured LLM provider. |
| Method | get |
Return a connector configuration property. |
Send messages to the configured LLM provider and get a response.
| Parameters | |
| messages:list or str | List of message dicts [{"role": "user", "content": "..."}] or a plain string for simple single-turn conversations. |
| **kwargs | Additional provider-specific parameters (temperature, top_p, etc.) |
| Returns | |
| dict | Response dict in OpenAI /v1/chat/completions format, or error dict. |