uipath-llm-client 1.0.3__py3-none-any.whl → 1.0.5__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.
@@ -20,7 +20,7 @@ Quick Start:
20
20
  ... client_type="passthrough",
21
21
  ... vendor_type="openai",
22
22
  ... ),
23
- ... client_settings=settings,
23
+ ... settings=settings,
24
24
  ... )
25
25
  >>> response = client.uipath_request(request_body={...})
26
26
  """
@@ -1,3 +1,3 @@
1
1
  __titile__ = "UiPath LLM Client"
2
2
  __description__ = "A Python client for interacting with UiPath's LLM services."
3
- __version__ = "1.0.3"
3
+ __version__ = "1.0.5"
@@ -51,7 +51,7 @@ class UiPathOpenAI(OpenAI):
51
51
  super().__init__(
52
52
  api_key="PLACEHOLDER",
53
53
  timeout=None,
54
- max_retries=1,
54
+ max_retries=0,
55
55
  http_client=httpx_client,
56
56
  )
57
57
 
@@ -91,7 +91,7 @@ class UiPathAsyncOpenAI(AsyncOpenAI):
91
91
  super().__init__(
92
92
  api_key="PLACEHOLDER",
93
93
  timeout=None,
94
- max_retries=1,
94
+ max_retries=0,
95
95
  http_client=httpx_client,
96
96
  )
97
97
 
@@ -133,7 +133,7 @@ class UiPathAzureOpenAI(AzureOpenAI):
133
133
  api_version="PLACEHOLDER",
134
134
  api_key="PLACEHOLDER",
135
135
  timeout=None,
136
- max_retries=1,
136
+ max_retries=0,
137
137
  http_client=httpx_client,
138
138
  )
139
139
 
@@ -175,6 +175,6 @@ class UiPathAsyncAzureOpenAI(AsyncAzureOpenAI):
175
175
  api_version="PLACEHOLDER",
176
176
  api_key="PLACEHOLDER",
177
177
  timeout=None,
178
- max_retries=1,
178
+ max_retries=0,
179
179
  http_client=httpx_client,
180
180
  )
@@ -152,7 +152,7 @@ class UiPathHttpxClient(Client):
152
152
  # Setup retry transport if not provided
153
153
  if transport is None:
154
154
  transport = RetryableHTTPTransport(
155
- max_retries=max_retries or 1,
155
+ max_retries=max_retries or 0,
156
156
  retry_config=retry_config,
157
157
  logger=logger,
158
158
  )
@@ -272,7 +272,7 @@ class UiPathHttpxAsyncClient(AsyncClient):
272
272
  # Setup retry transport if not provided
273
273
  if transport is None:
274
274
  transport = RetryableAsyncHTTPTransport(
275
- max_retries=max_retries or 1,
275
+ max_retries=max_retries or 0,
276
276
  retry_config=retry_config,
277
277
  logger=logger,
278
278
  )
@@ -108,7 +108,7 @@ def _build_retryer(
108
108
  Returns:
109
109
  A configured Retrying/AsyncRetrying instance, or None if retries disabled.
110
110
  """
111
- if max_retries <= 1:
111
+ if max_retries < 1:
112
112
  return None
113
113
 
114
114
  cfg = retry_config or {}
@@ -152,7 +152,7 @@ class RetryableHTTPTransport(HTTPTransport):
152
152
  def __init__(
153
153
  self,
154
154
  *args: Any,
155
- max_retries: int = 1,
155
+ max_retries: int = 0,
156
156
  retry_config: RetryConfig | None = None,
157
157
  logger: logging.Logger | None = None,
158
158
  **kwargs: Any,
@@ -216,7 +216,7 @@ class RetryableAsyncHTTPTransport(AsyncHTTPTransport):
216
216
  def __init__(
217
217
  self,
218
218
  *args: Any,
219
- max_retries: int = 1,
219
+ max_retries: int = 0,
220
220
  retry_config: RetryConfig | None = None,
221
221
  logger: logging.Logger | None = None,
222
222
  **kwargs: Any,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: uipath-llm-client
3
- Version: 1.0.3
3
+ Version: 1.0.5
4
4
  Summary: UiPath LLM Client
5
5
  Author-email: Cosmin Maria <cosmin.maria@uipath.com>, Dragos Bobolea <dragos.bobolea@uipath.com>
6
6
  License-File: LICENSE
@@ -272,7 +272,7 @@ response = chat_model.invoke("What is the capital of France?")
272
272
  print(response.content)
273
273
 
274
274
  # Create an embeddings model
275
- embeddings_model = get_embedding_model(model="text-embedding-3-large", client_settings=settings)
275
+ embeddings_model = get_embedding_model(model_name="text-embedding-3-large", client_settings=settings)
276
276
  vectors = embeddings_model.embed_documents(["Hello world", "How are you?"])
277
277
  ```
278
278
 
@@ -484,7 +484,7 @@ settings = LLMGatewaySettings(
484
484
  # Use with OpenAI/Azure chat model
485
485
  openai_chat = UiPathAzureChatOpenAI(
486
486
  model="gpt-4o-2024-11-20",
487
- client_settings=settings,
487
+ settings=settings,
488
488
  )
489
489
  response = openai_chat.invoke("Hello!")
490
490
  print(response.content)
@@ -492,7 +492,7 @@ print(response.content)
492
492
  # Use with Google Gemini
493
493
  gemini_chat = UiPathChatGoogleGenerativeAI(
494
494
  model="gemini-2.5-flash",
495
- client_settings=settings,
495
+ settings=settings,
496
496
  )
497
497
  response = gemini_chat.invoke("Hello!")
498
498
  print(response.content)
@@ -500,7 +500,7 @@ print(response.content)
500
500
  # Use with embeddings
501
501
  embeddings = UiPathAzureOpenAIEmbeddings(
502
502
  model="text-embedding-3-large",
503
- client_settings=settings,
503
+ settings=settings,
504
504
  )
505
505
  vectors = embeddings.embed_documents(["Hello world"])
506
506
  ```
@@ -541,7 +541,7 @@ print(response.content)
541
541
 
542
542
  # Embeddings with factory
543
543
  embeddings = get_embedding_model(
544
- model="text-embedding-3-large",
544
+ model_name="text-embedding-3-large",
545
545
  client_settings=settings,
546
546
  )
547
547
  vectors = embeddings.embed_documents(["Hello", "World"])
@@ -589,7 +589,7 @@ byo_embeddings = UiPathAzureOpenAIEmbeddings(
589
589
  # Clone and install with dev dependencies
590
590
  git clone https://github.com/UiPath/uipath-llm-client.git
591
591
  cd uipath-llm-client
592
- uv sync --dev
592
+ uv sync
593
593
 
594
594
  # Run tests
595
595
  uv run pytest
@@ -1,12 +1,12 @@
1
- uipath_llm_client/__init__.py,sha256=K7pMecLOblh6GWVBkoOalC-ho5ozlw3WG6loiJNzSFo,2363
2
- uipath_llm_client/__version__.py,sha256=MlmzOSirL7w4RNOuT9_Z54kuvZOTZ4YXnsxVWwTrUR8,135
3
- uipath_llm_client/httpx_client.py,sha256=yh9AT5_1jJzcrDfpfLmG3Th6r8Rps2zLwSTQMyI9lBg,12760
1
+ uipath_llm_client/__init__.py,sha256=P1E8IThDCxIonWFj56NbxUwkSRlBjBbbagWwdflKZhs,2356
2
+ uipath_llm_client/__version__.py,sha256=YGKqqlusqqdpl4dA7_JdiXtnI92uDgNDl3ezpJlsWDU,135
3
+ uipath_llm_client/httpx_client.py,sha256=kr7zKv0GwntCgxjvqN-3x35-OTMw2VthY9o7WNUKzZQ,12760
4
4
  uipath_llm_client/clients/anthropic/__init__.py,sha256=0KxbVGKSVWwC89PYPM7IXkP3qhJa2J0zyW6xsr0efWM,546
5
5
  uipath_llm_client/clients/anthropic/client.py,sha256=UjrXzsgOOgoIRjo7SiLThWtXAJIEH-BHuPy3umNcmC0,17967
6
6
  uipath_llm_client/clients/google/__init__.py,sha256=_JRzU_RdUnWvpPdeAOpWjUb-ccN2TBcReXCFF34Ouyw,100
7
7
  uipath_llm_client/clients/google/client.py,sha256=tQSvQ6VF5sG1UGHtnMSEzXXMwiMl2wQi12BotP-pkF4,3103
8
8
  uipath_llm_client/clients/openai/__init__.py,sha256=aopqE4oac6lukGxp46t7ZlsOebeavkneGvYln5zUddc,263
9
- uipath_llm_client/clients/openai/client.py,sha256=aEM2HkYLqzVW0z7q3nHxwAdOeFm03FxVypZPNoyCGhE,6198
9
+ uipath_llm_client/clients/openai/client.py,sha256=GkmMRwqJcqqZa-NfQJP7-3tuhHdTmWC6Y2f8zwYReZw,6198
10
10
  uipath_llm_client/clients/openai/utils.py,sha256=pZibM2buLiKRrLd1oa1uGtelJEACl65ZOLjF8azz70w,2863
11
11
  uipath_llm_client/settings/__init__.py,sha256=dTXrUcOHH6WhLZouWVVSKy8RVb8hoGosbmNYEmL51Sw,2870
12
12
  uipath_llm_client/settings/base.py,sha256=rVloAQCvbhY-bBdKEOH5WuB-pay91BZ9gpNXT0uQFIA,4620
@@ -20,9 +20,9 @@ uipath_llm_client/settings/llmgateway/settings.py,sha256=ZhKk94UP2yJ6MNR8mSRWmoq
20
20
  uipath_llm_client/settings/llmgateway/utils.py,sha256=gqyZXulcG0ifvlaxqdOGkf24jOtjCAalBme26BmoV3Q,527
21
21
  uipath_llm_client/utils/exceptions.py,sha256=IcHPQIf-Jzir_rG7gaD7ByD25Thcl-QpAjnC6xvZ0qQ,5973
22
22
  uipath_llm_client/utils/logging.py,sha256=pmC00QAt4LVXFb6PCHQDPoX7iLE9N2GeEytuAkUiQ1w,4641
23
- uipath_llm_client/utils/retry.py,sha256=cvM-OBEvga6mufCQ5G9rmxVzd33wOJOO6UGOHs9IWgk,8603
23
+ uipath_llm_client/utils/retry.py,sha256=dCWjucI6RtXrjvE0i4YpwQOOwd3d89FZ7MFLwxRSs_s,8602
24
24
  uipath_llm_client/utils/ssl_config.py,sha256=N-XGdZ93bWLJLwgIHkI9YD58QiB6lzVvgNT97q0dmF8,1777
25
- uipath_llm_client-1.0.3.dist-info/METADATA,sha256=UKoUMKlX-LC5FtFERWW4ESUXPckj5iRmnmlnWQVPi3Y,22964
26
- uipath_llm_client-1.0.3.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
27
- uipath_llm_client-1.0.3.dist-info/licenses/LICENSE,sha256=r4HMU0pdnVI7BlSYgDUCszn7IrCXJiN8o3yt2U1aOpc,375
28
- uipath_llm_client-1.0.3.dist-info/RECORD,,
25
+ uipath_llm_client-1.0.5.dist-info/METADATA,sha256=KvKOmiOoWiLrT7UAh_RKePKkxfLi0QziH9Pd2kfHMz8,22947
26
+ uipath_llm_client-1.0.5.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
27
+ uipath_llm_client-1.0.5.dist-info/licenses/LICENSE,sha256=r4HMU0pdnVI7BlSYgDUCszn7IrCXJiN8o3yt2U1aOpc,375
28
+ uipath_llm_client-1.0.5.dist-info/RECORD,,