lollms-client 0.12.3__py3-none-any.whl → 0.12.4__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.

Potentially problematic release.


This version of lollms-client might be problematic. Click here for more details.

@@ -3,11 +3,19 @@ import requests
3
3
  import json
4
4
  from lollms_client.lollms_llm_binding import LollmsLLMBinding
5
5
  from lollms_client.lollms_types import MSG_TYPE
6
- from lollms_client.lollms_utilities import encode_image
6
+ # encode_image is not strictly needed if ollama-python handles paths, but kept for consistency if ever needed.
7
+ # from lollms_client.lollms_utilities import encode_image
7
8
  from lollms_client.lollms_types import ELF_COMPLETION_FORMAT
8
- from typing import Optional, Callable, List, Union
9
+ from typing import Optional, Callable, List, Union, Dict
10
+
9
11
  from ascii_colors import ASCIIColors, trace_exception
10
12
 
13
+ try:
14
+ import ollama
15
+ except ImportError:
16
+ ASCIIColors.warning("Ollama library not found. Please install it using 'pip install ollama'")
17
+ ollama = None
18
+
11
19
  BindingName = "OllamaBinding"
12
20
 
13
21
 
@@ -15,7 +23,9 @@ def count_tokens_ollama(
15
23
  text_to_tokenize: str,
16
24
  model_name: str,
17
25
  ollama_host: str = "http://localhost:11434",
18
- timeout: int = 30
26
+ timeout: int = 30,
27
+ verify_ssl_certificate: bool = True,
28
+ headers: Optional[Dict[str, str]] = None
19
29
  ) -> int:
20
30
  """
21
31
  Counts the number of tokens in a given text using a specified Ollama model
@@ -26,25 +36,21 @@ def count_tokens_ollama(
26
36
  model_name (str): The name of the Ollama model to use (e.g., "llama3", "mistral").
27
37
  ollama_host (str): The base URL of the Ollama server (default: "http://localhost:11434").
28
38
  timeout (int): Timeout for the request in seconds (default: 30).
39
+ verify_ssl_certificate (bool): Whether to verify SSL.
40
+ headers (Optional[Dict[str, str]]): Optional headers for the request.
29
41
 
30
42
  Returns:
31
43
  int: The number of tokens. Returns -1 if an error occurs.
32
-
33
- Raises:
34
- requests.exceptions.RequestException: For network issues or timeouts.
35
- requests.exceptions.HTTPError: For HTTP error responses (4xx or 5xx).
36
- ValueError: If the response from Ollama is not as expected (e.g., missing 'tokens' key).
37
44
  """
38
- api_url = f"{ollama_host}/api/tokenize"
45
+ api_url = f"{ollama_host.rstrip('/')}/api/tokenize"
39
46
  payload = {
40
47
  "model": model_name,
41
48
  "prompt": text_to_tokenize
42
- # You can add "options" here if needed, but for tokenization, it's usually not required.
43
- # "options": {"num_ctx": 4096} # Example, might influence tokenizer for specific context length
44
49
  }
50
+ request_headers = headers if headers else {}
45
51
 
46
52
  try:
47
- response = requests.post(api_url, json=payload, timeout=timeout)
53
+ response = requests.post(api_url, json=payload, timeout=timeout, verify=verify_ssl_certificate, headers=request_headers)
48
54
  response.raise_for_status() # Raises HTTPError for bad responses (4xx or 5xx)
49
55
 
50
56
  response_data = response.json()
@@ -52,33 +58,28 @@ def count_tokens_ollama(
52
58
  if "tokens" in response_data and isinstance(response_data["tokens"], list):
53
59
  return len(response_data["tokens"])
54
60
  else:
55
- raise ValueError(
56
- f"Ollama response did not contain a 'tokens' list. Response: {response_data}"
61
+ ASCIIColors.warning(
62
+ f"Ollama response for token count did not contain a 'tokens' list. Response: {response_data}"
57
63
  )
64
+ return -1 # Or raise ValueError
58
65
 
59
66
  except requests.exceptions.HTTPError as http_err:
60
- # You might want to inspect http_err.response.text for more details from Ollama
61
- print(f"HTTP error occurred: {http_err} - {http_err.response.text}")
62
- raise # Re-raise the exception
63
- except requests.exceptions.ConnectionError as conn_err:
64
- print(f"Connection error occurred: {conn_err}")
65
- raise
66
- except requests.exceptions.Timeout as timeout_err:
67
- print(f"Timeout error occurred: {timeout_err}")
68
- raise
67
+ ASCIIColors.error(f"HTTP error occurred during token count: {http_err} - {http_err.response.text if http_err.response else 'No response text'}")
68
+ return -1
69
69
  except requests.exceptions.RequestException as req_err:
70
- print(f"An unexpected error occurred with the request: {req_err}")
71
- raise
70
+ ASCIIColors.error(f"Request error occurred during token count: {req_err}")
71
+ return -1
72
72
  except json.JSONDecodeError as json_err:
73
- # This can happen if the server returns non-JSON, e.g., an HTML error page
74
- raise ValueError(
75
- f"Failed to decode JSON response from Ollama: {json_err}. Response text: {response.text}"
76
- ) from json_err
77
- except ValueError as val_err: # Catches the ValueError raised above for missing 'tokens'
78
- print(f"Value error: {val_err}")
79
- raise
73
+ ASCIIColors.error(
74
+ f"Failed to decode JSON response from Ollama during token count: {json_err}. Response text: {response.text if hasattr(response, 'text') else 'No response object'}"
75
+ )
76
+ return -1
77
+ except Exception as e:
78
+ ASCIIColors.error(f"An unexpected error occurred during token count: {e}")
79
+ return -1
80
+
80
81
  class OllamaBinding(LollmsLLMBinding):
81
- """Ollama-specific binding implementation"""
82
+ """Ollama-specific binding implementation using the ollama-python library."""
82
83
 
83
84
  DEFAULT_HOST_ADDRESS = "http://localhost:11434"
84
85
 
@@ -95,282 +96,483 @@ class OllamaBinding(LollmsLLMBinding):
95
96
  Args:
96
97
  host_address (str): Host address for the Ollama service. Defaults to DEFAULT_HOST_ADDRESS.
97
98
  model_name (str): Name of the model to use. Defaults to empty string.
98
- service_key (str): Authentication key for the service. Defaults to None.
99
+ service_key (str): Authentication key for the service (used in Authorization header). Defaults to None.
99
100
  verify_ssl_certificate (bool): Whether to verify SSL certificates. Defaults to True.
100
- personality (Optional[int]): Ignored parameter for compatibility with LollmsLLMBinding.
101
+ default_completion_format (ELF_COMPLETION_FORMAT): Default completion format.
101
102
  """
103
+ _host_address = host_address if host_address is not None else self.DEFAULT_HOST_ADDRESS
102
104
  super().__init__(
103
- binding_name="ollama",
104
- host_address=host_address if host_address is not None else self.DEFAULT_HOST_ADDRESS,
105
+ binding_name=BindingName, # Use the module-level BindingName
106
+ host_address=_host_address,
105
107
  model_name=model_name,
106
108
  service_key=service_key,
107
109
  verify_ssl_certificate=verify_ssl_certificate,
108
110
  default_completion_format=default_completion_format
109
111
  )
110
- self.model = None
112
+ if ollama is None:
113
+ raise ImportError("Ollama library is not installed. Please run 'pip install ollama'.")
114
+
115
+ self.ollama_client_headers = {}
116
+ if self.service_key:
117
+ self.ollama_client_headers['Authorization'] = f'Bearer {self.service_key}'
118
+
119
+ try:
120
+ self.ollama_client = ollama.Client(
121
+ host=self.host_address,
122
+ headers=self.ollama_client_headers if self.ollama_client_headers else None,
123
+ verify=self.verify_ssl_certificate # Passed to httpx.Client
124
+ )
125
+ except Exception as e:
126
+ ASCIIColors.error(f"Failed to initialize Ollama client: {e}")
127
+ self.ollama_client = None # Ensure it's None if initialization fails
128
+ # Optionally re-raise or handle so the binding is clearly unusable
129
+ raise ConnectionError(f"Could not connect or initialize Ollama client at {self.host_address}: {e}") from e
111
130
 
112
131
  def generate_text(self,
113
132
  prompt: str,
114
- images: Optional[List[str]] = None,
133
+ images: Optional[List[str]] = None, # List of image file paths
115
134
  n_predict: Optional[int] = None,
116
135
  stream: bool = False,
117
- temperature: float = 0.1,
118
- top_k: int = 50,
119
- top_p: float = 0.95,
120
- repeat_penalty: float = 0.8,
121
- repeat_last_n: int = 40,
136
+ temperature: float = 0.7, # Ollama default is 0.8, common default 0.7
137
+ top_k: int = 40, # Ollama default is 40
138
+ top_p: float = 0.9, # Ollama default is 0.9
139
+ repeat_penalty: float = 1.1, # Ollama default is 1.1
140
+ repeat_last_n: int = 64, # Ollama default is 64
122
141
  seed: Optional[int] = None,
123
- n_threads: int = 8,
124
- ctx_size: int | None = None,
125
- streaming_callback: Optional[Callable[[str, str], None]] = None) -> Union[str, dict]:
142
+ n_threads: Optional[int] = None, # Ollama calls this num_thread
143
+ ctx_size: Optional[int] = None, # Ollama calls this num_ctx
144
+ streaming_callback: Optional[Callable[[str, int], bool]] = None
145
+ ) -> Union[str, Dict[str, any]]:
126
146
  """
127
147
  Generate text using the Ollama service, with optional image support.
128
148
 
129
149
  Args:
130
150
  prompt (str): The input prompt for text generation.
131
151
  images (Optional[List[str]]): List of image file paths for multimodal generation.
132
- If provided, uses the /api endpoint with message format.
133
- n_predict (Optional[int]): Maximum number of tokens to generate.
152
+ n_predict (Optional[int]): Maximum number of tokens to generate (num_predict).
134
153
  stream (bool): Whether to stream the output. Defaults to False.
135
- temperature (float): Sampling temperature. Defaults to 0.1.
136
- top_k (int): Top-k sampling parameter. Defaults to 50 (not used in Ollama API directly).
137
- top_p (float): Top-p sampling parameter. Defaults to 0.95 (not used in Ollama API directly).
138
- repeat_penalty (float): Penalty for repeated tokens. Defaults to 0.8 (not used in Ollama API directly).
139
- repeat_last_n (int): Number of previous tokens to consider for repeat penalty. Defaults to 40 (not used).
154
+ temperature (float): Sampling temperature.
155
+ top_k (int): Top-k sampling parameter.
156
+ top_p (float): Top-p sampling parameter.
157
+ repeat_penalty (float): Penalty for repeated tokens.
158
+ repeat_last_n (int): Number of previous tokens to consider for repeat penalty.
140
159
  seed (Optional[int]): Random seed for generation.
141
- n_threads (int): Number of threads to use. Defaults to 8 (not used in Ollama API directly).
142
- streaming_callback (Optional[Callable[[str, str], None]]): Callback for streaming output.
160
+ n_threads (Optional[int]): Number of threads to use (num_thread).
161
+ ctx_size (Optional[int]): Context window size (num_ctx).
162
+ streaming_callback (Optional[Callable[[str, int], bool]]): Callback for streaming output.
143
163
  - First parameter (str): The chunk of text received from the stream.
144
- - Second parameter (str): The message type (typically MSG_TYPE.MSG_TYPE_CHUNK).
164
+ - Second parameter (int): The message type (typically MSG_TYPE.MSG_TYPE_CHUNK).
165
+ Return False to stop streaming.
145
166
 
146
167
  Returns:
147
- Union[str, dict]: Generated text if successful, or a dictionary with status and error if failed.
148
-
149
- Note:
150
- Some parameters (top_k, top_p, repeat_penalty, repeat_last_n, n_threads) are included for interface
151
- consistency but are not directly used in the Ollama API implementation.
168
+ Union[str, Dict[str, any]]: Generated text if successful, or a dictionary with status and error if failed.
152
169
  """
153
- # Set headers
154
- headers = {
155
- 'Content-Type': 'application/json',
156
- }
157
- if self.service_key:
158
- headers['Authorization'] = f'Bearer {self.service_key}'
159
-
160
- # Clean host address
161
- host_address = self.host_address.rstrip('/')
162
-
163
- # Prepare data based on whether images are provided
164
- if images:
165
- # Multimodal generation using /api endpoint
166
- images_list = [encode_image(image_path) for image_path in images]
167
- data = {
168
- 'model': self.model_name,
169
- 'messages': [{
170
- "role": "user",
171
- "content": [
172
- {"type": "text", "text": prompt}
173
- ] + [
174
- {
175
- "type": "image_url",
176
- "image_url": {"url": f"data:image/jpeg;base64,{img}"}
177
- } for img in images_list
178
- ]
179
- }],
180
- "stream": stream,
181
- "temperature": float(temperature),
182
- "max_tokens": n_predict,
183
- }
184
- if ctx_size is not None:
185
- data["num_ctx"] = ctx_size
186
- url = f'{host_address}/api/chat'
187
- else:
188
- # Text-only generation using /api/generate endpoint
189
- data = {
190
- 'model': self.model_name,
191
- 'prompt': prompt,
192
- "stream": stream,
193
- "temperature": float(temperature),
194
- "max_tokens": n_predict
195
- }
196
- url = f'{host_address}/api/generate'
197
-
198
- # Make the request
199
- response = requests.post(url, json=data, headers=headers, stream=stream)
200
-
201
- # Handle response
202
- if not stream:
203
- if response.status_code == 200:
204
- try:
205
- if images:
206
- # For multimodal, response is in chat format
207
- return response.json()["message"]["content"]
208
- else:
209
- # For text-only
210
- return response.json()["response"]
211
- except Exception as ex:
212
- return {"status": False, "error": str(ex)}
213
- elif response.status_code == 404:
214
- ASCIIColors.error(response.content.decode("utf-8", errors='ignore'))
215
- return {"status": False, "error": "404 Not Found"}
216
- else:
217
- return {"status": False, "error": response.text}
218
- else:
219
- text = ""
220
- if response.status_code == 200:
221
- try:
222
- for line in response.iter_lines():
223
- decoded = line.decode("utf-8")
224
- if images:
225
- # Streaming with images (chat format)
226
- if decoded.startswith("data: "):
227
- json_data = json.loads(decoded[5:].strip())
228
- chunk = json_data["message"]["content"] if "message" in json_data else ""
229
- else:
230
- continue
231
- else:
232
- # Streaming without images (generate format)
233
- json_data = json.loads(decoded)
234
- chunk = json_data["response"]
235
-
236
- text += chunk
237
- if streaming_callback:
238
- if not streaming_callback(chunk, MSG_TYPE.MSG_TYPE_CHUNK):
239
- break
240
- return text
241
- except Exception as ex:
242
- return {"status": False, "error": str(ex)}
243
- elif response.status_code == 404:
244
- ASCIIColors.error(response.content.decode("utf-8", errors='ignore'))
245
- return {"status": False, "error": "404 Not Found"}
246
- elif response.status_code == 400:
247
- try:
248
- content = json.loads(response.content.decode("utf8"))
249
- return {"status": False, "error": content.get("error", {}).get("message", content.get("message", "Unknown error"))}
250
- except:
251
- return {"status": False, "error": response.content.decode("utf8")}
252
- else:
253
- return {"status": False, "error": response.text}
170
+ if not self.ollama_client:
171
+ return {"status": False, "error": "Ollama client not initialized."}
172
+
173
+ options = {}
174
+ if n_predict is not None: options['num_predict'] = n_predict
175
+ if temperature is not None: options['temperature'] = float(temperature)
176
+ if top_k is not None: options['top_k'] = top_k
177
+ if top_p is not None: options['top_p'] = top_p
178
+ if repeat_penalty is not None: options['repeat_penalty'] = repeat_penalty
179
+ if repeat_last_n is not None: options['repeat_last_n'] = repeat_last_n
180
+ if seed is not None: options['seed'] = seed
181
+ if n_threads is not None: options['num_thread'] = n_threads
182
+ if ctx_size is not None: options['num_ctx'] = ctx_size
183
+
184
+ full_response_text = ""
185
+
186
+ try:
187
+ if images: # Multimodal
188
+ # ollama-python expects paths or bytes for images
189
+ processed_images = []
190
+ for img_path in images:
191
+ # Assuming img_path is a file path. ollama-python will read and encode it.
192
+ # If images were base64 strings, they would need decoding to bytes first.
193
+ processed_images.append(img_path)
194
+
195
+ messages = [{'role': 'user', 'content': prompt, 'images': processed_images if processed_images else None}]
196
+
197
+ if stream:
198
+ response_stream = self.ollama_client.chat(
199
+ model=self.model_name,
200
+ messages=messages,
201
+ stream=True,
202
+ options=options if options else None
203
+ )
204
+ for chunk_dict in response_stream:
205
+ chunk_content = chunk_dict.get('message', {}).get('content', '')
206
+ if chunk_content: # Ensure there is content to process
207
+ full_response_text += chunk_content
208
+ if streaming_callback:
209
+ if not streaming_callback(chunk_content, MSG_TYPE.MSG_TYPE_CHUNK):
210
+ break # Callback requested stop
211
+ return full_response_text
212
+ else: # Not streaming
213
+ response_dict = self.ollama_client.chat(
214
+ model=self.model_name,
215
+ messages=messages,
216
+ stream=False,
217
+ options=options if options else None
218
+ )
219
+ return response_dict.get('message', {}).get('content', '')
220
+ else: # Text-only
221
+ if stream:
222
+ response_stream = self.ollama_client.generate(
223
+ model=self.model_name,
224
+ prompt=prompt,
225
+ stream=True,
226
+ options=options if options else None
227
+ )
228
+ for chunk_dict in response_stream:
229
+ chunk_content = chunk_dict.get('response', '')
230
+ if chunk_content:
231
+ full_response_text += chunk_content
232
+ if streaming_callback:
233
+ if not streaming_callback(chunk_content, MSG_TYPE.MSG_TYPE_CHUNK):
234
+ break
235
+ return full_response_text
236
+ else: # Not streaming
237
+ response_dict = self.ollama_client.generate(
238
+ model=self.model_name,
239
+ prompt=prompt,
240
+ stream=False,
241
+ options=options if options else None
242
+ )
243
+ return response_dict.get('response', '')
244
+ except ollama.ResponseError as e:
245
+ error_message = f"Ollama API ResponseError: {e.error or 'Unknown error'} (status code: {e.status_code})"
246
+ ASCIIColors.error(error_message)
247
+ return {"status": False, "error": error_message, "status_code": e.status_code}
248
+ except ollama.RequestError as e: # Covers connection errors, timeouts during request
249
+ error_message = f"Ollama API RequestError: {str(e)}"
250
+ ASCIIColors.error(error_message)
251
+ return {"status": False, "error": error_message}
252
+ except Exception as ex:
253
+ error_message = f"An unexpected error occurred: {str(ex)}"
254
+ trace_exception(ex)
255
+ return {"status": False, "error": error_message}
254
256
 
255
- def tokenize(self, text: str) -> list:
257
+ def tokenize(self, text: str) -> List[Union[int, str]]:
256
258
  """
257
- Tokenize the input text into a list of characters.
259
+ Tokenize the input text. For Ollama, this is complex as tokenization is model-specific
260
+ and best done by the server. This method provides a basic character-level tokenization
261
+ as a fallback or placeholder, or one could attempt to call /api/tokenize if desired.
262
+ The `count_tokens` method is more accurate for Ollama.
258
263
 
259
264
  Args:
260
265
  text (str): The text to tokenize.
261
266
 
262
267
  Returns:
263
- list: List of individual characters.
268
+ list: List of tokens (characters or token IDs if /api/tokenize is used).
264
269
  """
265
- return list(text)
266
-
267
- def detokenize(self, tokens: list) -> str:
270
+ # Basic character-level tokenization
271
+ # return list(text)
272
+
273
+ # For actual token IDs (slower, makes a network request):
274
+ api_url = f"{self.host_address.rstrip('/')}/api/tokenize"
275
+ payload = {"model": self.model_name, "prompt": text}
276
+ try:
277
+ response = requests.post(api_url, json=payload, timeout=10, verify=self.verify_ssl_certificate, headers=self.ollama_client_headers)
278
+ response.raise_for_status()
279
+ return response.json().get("tokens", [])
280
+ except Exception as e:
281
+ ASCIIColors.warning(f"Failed to tokenize text with Ollama server, falling back to char tokens: {e}")
282
+ return list(text)
283
+
284
+ def detokenize(self, tokens: List[Union[int,str]]) -> str:
268
285
  """
269
- Convert a list of tokens back to text.
286
+ Convert a list of tokens back to text. If tokens are characters, joins them.
287
+ If tokens are IDs, this is non-trivial without the model's tokenizer.
270
288
 
271
289
  Args:
272
- tokens (list): List of tokens (characters) to detokenize.
290
+ tokens (list): List of tokens to detokenize.
273
291
 
274
292
  Returns:
275
293
  str: Detokenized text.
276
294
  """
277
- return "".join(tokens)
295
+ if not tokens:
296
+ return ""
297
+ if isinstance(tokens[0], str): # Assuming character tokens
298
+ return "".join(tokens)
299
+ else:
300
+ # Detokenizing IDs from Ollama is not straightforward client-side without specific tokenizer.
301
+ # This is a placeholder. For Ollama, detokenization usually happens server-side.
302
+ ASCIIColors.warning("Detokenizing integer tokens is not accurately supported by this Ollama client binding. Returning joined string of token IDs.")
303
+ return "".join(map(str, tokens))
278
304
 
279
305
  def count_tokens(self, text: str) -> int:
280
306
  """
281
- Count tokens from a text.
307
+ Count tokens from a text using the Ollama server's /api/tokenize endpoint.
282
308
 
283
309
  Args:
284
- tokens (list): List of tokens to detokenize.
310
+ text (str): Text to count tokens from.
285
311
 
286
312
  Returns:
287
- int: Number of tokens in text.
313
+ int: Number of tokens in text. Returns -1 on error.
288
314
  """
289
- return count_tokens_ollama(text, self.model_name, self.host_address)
315
+ if not self.model_name:
316
+ ASCIIColors.warning("Cannot count tokens, model_name is not set.")
317
+ return -1
318
+ return count_tokens_ollama(text, self.model_name, self.host_address, verify_ssl_certificate=self.verify_ssl_certificate, headers=self.ollama_client_headers)
290
319
 
291
- def embed(self, text: str, **kwargs) -> list:
320
+ def embed(self, text: str, **kwargs) -> List[float]:
292
321
  """
293
- Get embeddings for the input text using Ollama API
322
+ Get embeddings for the input text using Ollama API.
294
323
 
295
324
  Args:
296
- text (str or List[str]): Input text to embed
297
- **kwargs: Additional arguments like model, truncate, options, keep_alive
325
+ text (str): Input text to embed.
326
+ **kwargs: Optional arguments. Can include 'model' to override self.model_name,
327
+ and 'options' dictionary for Ollama embedding options.
298
328
 
299
329
  Returns:
300
- dict: Response containing embeddings
301
- """
302
- import requests
303
-
304
- url = f"{self.base_url}/api/embed"
305
-
306
- # Prepare the request payload
307
- payload = {
308
- "input": text,
309
- "model": kwargs.get("model", "llama2") # default model
310
- }
311
-
312
- # Add optional parameters if provided
313
- if "truncate" in kwargs:
314
- payload["truncate"] = kwargs["truncate"]
315
- if "options" in kwargs:
316
- payload["options"] = kwargs["options"]
317
- if "keep_alive" in kwargs:
318
- payload["keep_alive"] = kwargs["keep_alive"]
330
+ List[float]: The embedding vector.
319
331
 
332
+ Raises:
333
+ Exception: if embedding fails or Ollama client is not available.
334
+ """
335
+ if not self.ollama_client:
336
+ raise Exception("Ollama client not initialized.")
337
+
338
+ model_to_use = kwargs.get("model", self.model_name)
339
+ if not model_to_use:
340
+ raise ValueError("Model name for embedding must be specified either in init or via kwargs.")
341
+
342
+ ollama_options = kwargs.get("options", None)
320
343
  try:
321
- response = requests.post(url, json=payload)
322
- response.raise_for_status() # Raise exception for bad status codes
323
- return response.json()
324
- except requests.exceptions.RequestException as e:
325
- raise Exception(f"Embedding request failed: {str(e)}")
344
+ response = self.ollama_client.embeddings(
345
+ model=model_to_use,
346
+ prompt=text,
347
+ options=ollama_options
348
+ )
349
+ return response['embedding']
350
+ except ollama.ResponseError as e:
351
+ error_message = f"Ollama API Embeddings ResponseError: {e.error or 'Unknown error'} (status code: {e.status_code})"
352
+ ASCIIColors.error(error_message)
353
+ raise Exception(error_message) from e
354
+ except ollama.RequestError as e:
355
+ error_message = f"Ollama API Embeddings RequestError: {str(e)}"
356
+ ASCIIColors.error(error_message)
357
+ raise Exception(error_message) from e
358
+ except Exception as ex:
359
+ trace_exception(ex)
360
+ raise Exception(f"Embedding failed: {str(ex)}") from ex
326
361
 
327
-
328
362
  def get_model_info(self) -> dict:
329
363
  """
330
- Return information about the current Ollama model.
364
+ Return information about the current Ollama model setup.
331
365
 
332
366
  Returns:
333
- dict: Dictionary containing model name, version, and host address.
367
+ dict: Dictionary containing binding name, version, host address, and model name.
334
368
  """
335
369
  return {
336
- "name": "ollama",
337
- "version": "2.0",
370
+ "name": self.binding_name, # from super class
371
+ "version": ollama.__version__ if ollama else "unknown", # Ollama library version
338
372
  "host_address": self.host_address,
339
- "model_name": self.model_name
373
+ "model_name": self.model_name,
374
+ "supports_structured_output": False, # Ollama primarily supports text/chat
375
+ "supports_vision": True # Many Ollama models (e.g. llava, bakllava) support vision
340
376
  }
341
- def listModels(self):
342
- """ Lists available models """
343
- url = f'{self.host_address}/api/tags'
344
- headers = {
345
- 'accept': 'application/json',
346
- 'Authorization': f'Bearer {self.service_key}'
347
- }
348
- response = requests.get(url, headers=headers, verify= self.verify_ssl_certificate)
349
- try:
350
- ASCIIColors.debug("Listing ollama models")
351
- data = response.json()
352
- model_info = []
353
377
 
354
- for model in data['models']:
355
- model_name = model['name']
356
- owned_by = ""
357
- created_datetime = model["modified_at"]
358
- model_info.append({'model_name': model_name, 'owned_by': owned_by, 'created_datetime': created_datetime})
359
-
360
- return model_info
378
+ def listModels(self) -> List[Dict[str, str]]:
379
+ """
380
+ Lists available models from the Ollama service using the ollama-python library.
381
+ The returned list of dictionaries matches the format of the original template.
382
+
383
+ Returns:
384
+ List[Dict[str, str]]: A list of model information dictionaries.
385
+ Each dict has 'model_name', 'owned_by', 'created_datetime'.
386
+ """
387
+ if not self.ollama_client:
388
+ ASCIIColors.error("Ollama client not initialized. Cannot list models.")
389
+ return []
390
+ try:
391
+ ASCIIColors.debug(f"Listing ollama models from {self.host_address}")
392
+ response_data = self.ollama_client.list() # This returns {'models': [{'name':..., 'modified_at':..., ...}]}
393
+
394
+ model_info_list = []
395
+ if 'models' in response_data:
396
+ for model_entry in response_data['models']:
397
+ model_info_list.append({
398
+ 'model_name': model_entry.get('model'),
399
+ 'owned_by': "", # Ollama API doesn't provide a direct "owned_by" field.
400
+ 'created_datetime': model_entry.get('modified_at')
401
+ })
402
+ return model_info_list
403
+ except ollama.ResponseError as e:
404
+ ASCIIColors.error(f"Ollama API listModels ResponseError: {e.error or 'Unknown error'} (status code: {e.status_code}) from {self.host_address}")
405
+ return []
406
+ except ollama.RequestError as e: # Covers connection errors, timeouts during request
407
+ ASCIIColors.error(f"Ollama API listModels RequestError: {str(e)} from {self.host_address}")
408
+ return []
361
409
  except Exception as ex:
362
410
  trace_exception(ex)
363
411
  return []
412
+
364
413
  def load_model(self, model_name: str) -> bool:
365
414
  """
366
- Load a specific model into the Ollama binding.
415
+ Set the model name for subsequent operations. Ollama loads models on demand.
416
+ This method can be used to verify if a model exists by attempting a small operation,
417
+ but for now, it just sets the name.
367
418
 
368
419
  Args:
369
- model_name (str): Name of the model to load.
420
+ model_name (str): Name of the model to set.
370
421
 
371
422
  Returns:
372
- bool: True if model loaded successfully.
423
+ bool: True if model name is set.
373
424
  """
374
- self.model = model_name
375
425
  self.model_name = model_name
426
+ # Optionally, you could try a quick self.ollama_client.show(model_name) to verify existence.
427
+ # For simplicity, we just set it.
428
+ ASCIIColors.info(f"Ollama model set to: {model_name}. It will be loaded by the server on first use.")
376
429
  return True
430
+
431
+ if __name__ == '__main__':
432
+ global full_streamed_text
433
+ # Example Usage (requires an Ollama server running)
434
+ ASCIIColors.yellow("Testing OllamaBinding...")
435
+
436
+ # --- Configuration ---
437
+ # Replace with your Ollama server details if not localhost
438
+ ollama_host = "http://localhost:11434"
439
+ # Common model, pull it first: `ollama pull llama3` or `ollama pull llava` for vision
440
+ test_model_name = "llama3"
441
+ test_vision_model_name = "llava" # or another vision model you have
442
+
443
+ try:
444
+ # --- Initialization ---
445
+ ASCIIColors.cyan("\n--- Initializing Binding ---")
446
+ binding = OllamaBinding(host_address=ollama_host, model_name=test_model_name)
447
+ ASCIIColors.green("Binding initialized successfully.")
448
+ ASCIIColors.info(f"Using Ollama client version: {ollama.__version__ if ollama else 'N/A'}")
449
+
450
+ # --- List Models ---
451
+ ASCIIColors.cyan("\n--- Listing Models ---")
452
+ models = binding.listModels()
453
+ if models:
454
+ ASCIIColors.green(f"Found {len(models)} models. First 5:")
455
+ for m in models[:5]:
456
+ print(m)
457
+ else:
458
+ ASCIIColors.warning("No models found or failed to list models. Ensure Ollama is running and has models.")
459
+
460
+ # --- Load Model (sets active model) ---
461
+ ASCIIColors.cyan(f"\n--- Setting model to: {test_model_name} ---")
462
+ binding.load_model(test_model_name)
463
+
464
+ # --- Count Tokens ---
465
+ ASCIIColors.cyan("\n--- Counting Tokens ---")
466
+ sample_text = "Hello, world! This is a test."
467
+ token_count = binding.count_tokens(sample_text)
468
+ ASCIIColors.green(f"Token count for '{sample_text}': {token_count}")
469
+
470
+ # --- Tokenize/Detokenize (using server for tokenize) ---
471
+ ASCIIColors.cyan("\n--- Tokenize/Detokenize ---")
472
+ tokens = binding.tokenize(sample_text)
473
+ ASCIIColors.green(f"Tokens for '{sample_text}': {tokens[:10]}...") # Print first 10
474
+ detokenized_text = binding.detokenize(tokens)
475
+ # Note: detokenize might not be perfect if tokens are IDs and not chars
476
+ ASCIIColors.green(f"Detokenized text (may vary based on tokenization type): {detokenized_text}")
477
+
478
+
479
+ # --- Text Generation (Non-Streaming) ---
480
+ ASCIIColors.cyan("\n--- Text Generation (Non-Streaming) ---")
481
+ prompt_text = "Why is the sky blue?"
482
+ ASCIIColors.info(f"Prompt: {prompt_text}")
483
+ generated_text = binding.generate_text(prompt_text, n_predict=50, stream=False)
484
+ if isinstance(generated_text, str):
485
+ ASCIIColors.green(f"Generated text: {generated_text}")
486
+ else:
487
+ ASCIIColors.error(f"Generation failed: {generated_text}")
488
+
489
+ # --- Text Generation (Streaming) ---
490
+ ASCIIColors.cyan("\n--- Text Generation (Streaming) ---")
491
+ full_streamed_text = ""
492
+ def stream_callback(chunk: str, msg_type: int):
493
+ global full_streamed_text
494
+ print(f"{ASCIIColors.GREEN}Stream chunk: {chunk}{ASCIIColors.RESET}", end="", flush=True)
495
+ full_streamed_text += chunk
496
+ if len(full_streamed_text) > 100: # Example: stop after 100 chars for test
497
+ # print("\nStopping stream early for test.")
498
+ # return False # uncomment to test early stop
499
+ pass
500
+ return True
501
+
502
+ ASCIIColors.info(f"Prompt: {prompt_text}")
503
+ result = binding.generate_text(prompt_text, n_predict=100, stream=True, streaming_callback=stream_callback)
504
+ print("\n--- End of Stream ---")
505
+ if isinstance(result, str):
506
+ ASCIIColors.green(f"Full streamed text: {result}") # 'result' is the full_streamed_text
507
+ else:
508
+ ASCIIColors.error(f"Streaming generation failed: {result}")
509
+
510
+
511
+ # --- Embeddings ---
512
+ ASCIIColors.cyan("\n--- Embeddings ---")
513
+ # Ensure you have an embedding model like 'mxbai-embed-large' or 'nomic-embed-text'
514
+ # Or use a general model if it supports embedding (some do implicitly)
515
+ # For this test, we'll try with the current test_model_name,
516
+ # but ideally use a dedicated embedding model.
517
+ # binding.load_model("mxbai-embed-large") # if you have it
518
+ try:
519
+ embedding_text = "Lollms is a cool project."
520
+ embedding_vector = binding.embed(embedding_text) # Uses current self.model_name
521
+ ASCIIColors.green(f"Embedding for '{embedding_text}' (first 5 dims): {embedding_vector[:5]}...")
522
+ ASCIIColors.info(f"Embedding vector dimension: {len(embedding_vector)}")
523
+ except Exception as e:
524
+ ASCIIColors.warning(f"Could not get embedding with '{binding.model_name}': {e}. Some models don't support /api/embeddings or may need to be specified.")
525
+ ASCIIColors.warning("Try `ollama pull mxbai-embed-large` and set it as model for embedding.")
526
+
527
+
528
+ # --- Vision Model Test (if llava or similar is available) ---
529
+ # Create a dummy image file for testing
530
+ dummy_image_path = "dummy_test_image.png"
531
+ try:
532
+ from PIL import Image, ImageDraw
533
+ img = Image.new('RGB', (100, 30), color = ('red'))
534
+ d = ImageDraw.Draw(img)
535
+ d.text((10,10), "Hello", fill=('white'))
536
+ img.save(dummy_image_path)
537
+ ASCIIColors.info(f"Created dummy image: {dummy_image_path}")
538
+
539
+ ASCIIColors.cyan(f"\n--- Vision Generation (using {test_vision_model_name}) ---")
540
+ # Check if vision model exists
541
+ vision_model_exists = any(m['model_name'].startswith(test_vision_model_name) for m in models)
542
+ if not vision_model_exists:
543
+ ASCIIColors.warning(f"Vision model '{test_vision_model_name}' not found in pulled models. Skipping vision test.")
544
+ ASCIIColors.warning(f"Try: `ollama pull {test_vision_model_name}`")
545
+ else:
546
+ binding.load_model(test_vision_model_name) # Switch to vision model
547
+ vision_prompt = "What is written in this image?"
548
+ ASCIIColors.info(f"Vision Prompt: {vision_prompt} with image {dummy_image_path}")
549
+
550
+ vision_response = binding.generate_text(
551
+ prompt=vision_prompt,
552
+ images=[dummy_image_path],
553
+ n_predict=50,
554
+ stream=False
555
+ )
556
+ if isinstance(vision_response, str):
557
+ ASCIIColors.green(f"Vision model response: {vision_response}")
558
+ else:
559
+ ASCIIColors.error(f"Vision generation failed: {vision_response}")
560
+ except ImportError:
561
+ ASCIIColors.warning("Pillow library not found. Cannot create dummy image for vision test. `pip install Pillow`")
562
+ except Exception as e:
563
+ ASCIIColors.error(f"Error during vision test: {e}")
564
+ finally:
565
+ import os
566
+ if os.path.exists(dummy_image_path):
567
+ os.remove(dummy_image_path)
568
+
569
+
570
+ except ConnectionRefusedError:
571
+ ASCIIColors.error("Connection to Ollama server refused. Is Ollama running?")
572
+ except ImportError as e:
573
+ ASCIIColors.error(f"Import error: {e}. Make sure 'ollama' library is installed ('pip install ollama').")
574
+ except Exception as e:
575
+ ASCIIColors.error(f"An error occurred during testing: {e}")
576
+ trace_exception(e)
577
+
578
+ ASCIIColors.yellow("\nOllamaBinding test finished.")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lollms_client
3
- Version: 0.12.3
3
+ Version: 0.12.4
4
4
  Summary: A client library for LoLLMs generate endpoint
5
5
  Home-page: https://github.com/ParisNeo/lollms_client
6
6
  Author: ParisNeo
@@ -21,7 +21,7 @@ lollms_client/lollms_types.py,sha256=cfc1sremM8KR4avkYX99fIVkkdRvXErrCWKGjLrgv50
21
21
  lollms_client/lollms_utilities.py,sha256=YAgamfp0pBVApR68AHKjhp1lh6isMNF8iadwWLl63c0,7045
22
22
  lollms_client/llm_bindings/__init__.py,sha256=9sWGpmWSSj6KQ8H4lKGCjpLYwhnVdL_2N7gXCphPqh4,14
23
23
  lollms_client/llm_bindings/lollms/__init__.py,sha256=H1Vw6trTzinS_xaeNWZ7Aq-3XngbzoYxtA4Se2IeCpQ,12213
24
- lollms_client/llm_bindings/ollama/__init__.py,sha256=oOSWM7eVpDPTBGulRdHukOxpIwvA1x5VNsJEVgT2jFk,15843
24
+ lollms_client/llm_bindings/ollama/__init__.py,sha256=o2FVeOXVSV28Rqt4cGLyFEOtV47hkwD8DOImMYVVR30,28509
25
25
  lollms_client/llm_bindings/openai/__init__.py,sha256=n8y14j6MAkaZSGMsvvUogr8LRgLsNz4S6QJJdB6H0lQ,10763
26
26
  lollms_client/llm_bindings/transformers/__init__.py,sha256=UyaiQcJQricBZJGe1zfNIVy6Cb3QpHSvImSoE9FhgC0,12771
27
27
  lollms_client/stt_bindings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -34,8 +34,8 @@ lollms_client/tts_bindings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
34
34
  lollms_client/tts_bindings/lollms/__init__.py,sha256=8x2_T9XscvISw2TiaLoFxvrS7TIsVLdqbwSc04cX-wc,7164
35
35
  lollms_client/ttv_bindings/__init__.py,sha256=UZ8o2izQOJLQgtZ1D1cXoNST7rzqW22rL2Vufc7ddRc,3141
36
36
  lollms_client/ttv_bindings/lollms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
- lollms_client-0.12.3.dist-info/licenses/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
38
- lollms_client-0.12.3.dist-info/METADATA,sha256=t92LRON5mw051xnzqLrPRyagxWEklQZrnaOJwEXy9OM,6866
39
- lollms_client-0.12.3.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
40
- lollms_client-0.12.3.dist-info/top_level.txt,sha256=Bk_kz-ri6Arwsk7YG-T5VsRorV66uVhcHGvb_g2WqgE,14
41
- lollms_client-0.12.3.dist-info/RECORD,,
37
+ lollms_client-0.12.4.dist-info/licenses/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
38
+ lollms_client-0.12.4.dist-info/METADATA,sha256=1rYfyIfrUvJz3Sj_sAvV2ZE-G4E7Se0KZL5tipmZO0o,6866
39
+ lollms_client-0.12.4.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
40
+ lollms_client-0.12.4.dist-info/top_level.txt,sha256=Bk_kz-ri6Arwsk7YG-T5VsRorV66uVhcHGvb_g2WqgE,14
41
+ lollms_client-0.12.4.dist-info/RECORD,,