MCPcopy Create free account
hub / github.com/pgadmin-org/pgadmin4 / LLMClientError

Class LLMClientError

web/pgadmin/llm/client.py:141–146  ·  view source on GitHub ↗

Exception raised for LLM client errors.

Source from the content-addressed store, hash-verified

139
140
141class LLMClientError(Exception):
142 """Exception raised for LLM client errors."""
143
144 def __init__(self, error: LLMError):
145 self.error = error
146 super().__init__(str(error))
147
148
149def get_llm_client(

Callers 15

chatMethod · 0.90
_chat_responsesMethod · 0.90
_make_requestMethod · 0.90
_parse_responseMethod · 0.90
chat_streamMethod · 0.90
_process_streamMethod · 0.90
_read_openai_streamMethod · 0.90
chatMethod · 0.90
_make_requestMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected