lollms-client 1.7.10__py3-none-any.whl → 1.8.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
lollms_client/__init__.py CHANGED
@@ -8,7 +8,7 @@ from lollms_client.lollms_utilities import PromptReshaper # Keep general utiliti
8
8
  from lollms_client.lollms_mcp_binding import LollmsMCPBinding, LollmsMCPBindingManager
9
9
  from lollms_client.lollms_llm_binding import LollmsLLMBindingManager
10
10
 
11
- __version__ = "1.7.10" # Updated version
11
+ __version__ = "1.8.3" # Updated version
12
12
 
13
13
  # Optionally, you could define __all__ if you want to be explicit about exports
14
14
  __all__ = [
@@ -469,7 +469,6 @@ class ClaudeBinding(LollmsLLMBinding):
469
469
  url = f"{ANTHROPIC_API_BASE_URL}/models"
470
470
 
471
471
  try:
472
- ASCIIColors.info("Fetching available models from Anthropic API...")
473
472
  response = requests.get(url, headers=headers, timeout=15)
474
473
  response.raise_for_status()
475
474
 
@@ -418,7 +418,6 @@ class GrokBinding(LollmsLLMBinding):
418
418
  return self._cached_models
419
419
 
420
420
  try:
421
- ASCIIColors.info("Fetching available models from xAI API...")
422
421
  response = requests.get(f"{self.base_url}/models", headers=self.headers, timeout=15)
423
422
  response.raise_for_status()
424
423