You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .claude/CLAUDE.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,10 +100,10 @@ Follow the existing format — newest version first, grouped by date:
100
100
Before every commit and before opening a PR, always run:
101
101
102
102
```bash
103
-
ruff check && ruff format --check&& pytest tests
103
+
ruff check && ruff format .&& pyright&& pytest tests
104
104
```
105
105
106
-
All three must pass. Fix any lint, format, or test failures before committing. This applies when working as an AI assistant too — run the checks, fix failures, then commit and push.
106
+
All four must pass. Fix any lint, format, type, or test failures before committing. This applies when working as an AI assistant too — run the checks, fix failures, then commit and push.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+33-25Lines changed: 33 additions & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,24 +2,32 @@
2
2
3
3
All notable changes to `uipath_llm_client` (core package) will be documented in this file.
4
4
5
+
## [1.6.0] - 2026-04-03
6
+
7
+
### Fixed
8
+
- Set `api_flavor` to `None` for ANTHROPIC and AZURE vendor types
9
+
- Add ANTHROPIC/AZURE cases to validator and remove unused `original_message` parameter
10
+
- Fix VertexAI `default_headers` consistency and demo import path
11
+
- Fix LLMGateway singleton cache key to include `base_url`
12
+
5
13
## [1.5.10] - 2026-03-26
6
14
7
15
### Changed
8
16
- Removed `X-UiPath-LLMGateway-AllowFull4xxResponse` from default request headers to avoid PII leakage in logs
9
17
10
18
## [1.5.9] - 2026-03-26
11
19
12
-
### Fix
20
+
### Fixed
13
21
- Use `availableOperationCodes` field (instead of `operationCodes`) when validating BYOM operation codes
14
22
15
23
## [1.5.8] - 2026-03-26
16
24
17
-
### Fix
25
+
### Fixed
18
26
- Pass `base_url` to `OpenAI` and `AsyncOpenAI` constructors in `UiPathOpenAI` and `UiPathAsyncOpenAI` to ensure the correct endpoint is forwarded to the underlying SDK clients
19
27
20
28
## [1.5.7] - 2026-03-23
21
29
22
-
### Fix
30
+
### Fixed
23
31
- Added mapping api_flavor to vendor_type
24
32
25
33
## [1.5.6] - 2026-03-21
@@ -30,22 +38,22 @@ All notable changes to `uipath_llm_client` (core package) will be documented in
30
38
31
39
## [1.5.5] - 2026-03-19
32
40
33
-
### Fix
41
+
### Fixed
34
42
- Fix headers for Platform Settings
35
43
36
44
## [1.5.3] - 2026-03-18
37
45
38
-
### Fix
46
+
### Fixed
39
47
- Factory function fix
40
48
41
49
## [1.5.2] - 2026-03-18
42
50
43
-
### Fix
51
+
### Fixed
44
52
- Factory function fix
45
53
46
54
## [1.5.1] - 2026-03-17
47
55
48
-
### Fix
56
+
### Fixed
49
57
- Added error message for normalized embeddings on UiPath Platform (AgentHub/Orchestrator) as there is no supported endpoint
50
58
- Fix endpoints for platform to remove api version
51
59
@@ -67,7 +75,7 @@ All notable changes to `uipath_llm_client` (core package) will be documented in
67
75
- test updates
68
76
- new cassettes
69
77
70
-
### Fixes
78
+
### Fixed
71
79
- Added constants for VendorType and ApiFlavor
72
80
73
81
## [1.3.0] - 2026-03-10
@@ -89,41 +97,41 @@ All notable changes to `uipath_llm_client` (core package) will be documented in
89
97
90
98
## [1.2.2] - 2026-02-23
91
99
92
-
### Fix
100
+
### Fixed
93
101
- Fixes to discovery endpoint on LLMGW
94
102
95
103
## [1.2.1] - 2026-02-18
96
104
97
-
### Fix
98
-
-TImeout fixes, change typing from int to float
105
+
### Fixed
106
+
-Timeout fixes, change typing from int to float
99
107
- remove timeout=None from all clients -> caused overriding the default timeout set up on the UiPathHttpxClient
100
108
101
109
## [1.2.0] - 2026-02-18
102
110
103
111
### Stable release
104
112
105
-
### Fix
106
-
- Fixed agenhub auth when token already exists
113
+
### Fixed
114
+
- Fixed agenthub auth when token already exists
107
115
108
116
## [1.1.1] - 2026-02-12
109
117
110
-
### Fix
118
+
### Fixed
111
119
- Small fixes on openai client
112
120
113
121
## [1.1.0] - 2026-02-11
114
122
115
123
### Stable release
116
-
-Adeed BYOM validation for settings
124
+
-Added BYOM validation for settings
117
125
- Stable release
118
126
119
127
## [1.0.13] - 2026-02-05
120
128
121
-
### Fix
129
+
### Fixed
122
130
- Fixed headers on llmgw settings
123
131
124
132
## [1.0.12] - 2026-02-05
125
133
126
-
### Fix
134
+
### Fixed
127
135
- Added 295 as default llmgateway timeout to avoid problems on the backend side
128
136
129
137
## [1.0.11] - 2026-02-05
@@ -133,25 +141,25 @@ All notable changes to `uipath_llm_client` (core package) will be documented in
133
141
134
142
## [1.0.10] - 2026-02-04
135
143
136
-
### Type fix
144
+
### Fixed
137
145
- Import TypedDict from typing_extension
138
146
139
-
### Typing Fix
147
+
### Fixed
140
148
- import @override from typing_extension
141
149
142
150
## [1.0.8] - 2026-02-04
143
151
144
-
### Bug Fix
152
+
### Fixed
145
153
- Fixed a typing issue of Singleton
146
154
147
155
## [1.0.7] - 2026-02-04
148
156
149
-
### Fix
157
+
### Fixed
150
158
- Added py.typed to the package
151
159
152
160
## [1.0.6]
153
161
154
-
### Bug Fix
162
+
### Fixed
155
163
- Fixed model discovery on AgentHub Settings.
156
164
157
165
## [1.0.5] - 2026-02-03
@@ -161,7 +169,7 @@ All notable changes to `uipath_llm_client` (core package) will be documented in
161
169
162
170
## [1.0.4] - 2026-02-03
163
171
164
-
### Bug Fix
172
+
### Fixed
165
173
- Adjusted retry logic, now 0 means no retries, 1 means one retry
166
174
167
175
## [1.0.3] - 2026-02-02
@@ -171,12 +179,12 @@ All notable changes to `uipath_llm_client` (core package) will be documented in
171
179
172
180
## [1.0.2] - 2026-02-02
173
181
174
-
### Bug Fixes
182
+
### Fixed
175
183
- Fixed endpoints on AgentHub Settings
176
184
177
185
## [1.0.1] - 2026-01-30
178
186
179
-
### Bug Fixes
187
+
### Fixed
180
188
- Map 400 Bad requests on S2S to 401 Unauthorized for better readability
0 commit comments