@@ -161,7 +161,7 @@ while (true) {
161161
162162## Update chat settings
163163
164- <RouteHighlighter method = " PUT " path = " /chats/{workspace}/settings" />
164+ <RouteHighlighter method = " PATCH " path = " /chats/{workspace}/settings" />
165165
166166Configure the LLM provider and settings for a chat workspace.
167167
@@ -195,7 +195,7 @@ Returns the updated settings object. Note that `apiKey` is write-only and will n
195195
196196``` bash openAi
197197curl \
198- -X PUT ' http://localhost:7700/chats/customer-support/settings' \
198+ -X PATCH ' http://localhost:7700/chats/customer-support/settings' \
199199 -H ' Authorization: Bearer MASTER_KEY' \
200200 -H ' Content-Type: application/json' \
201201 --data-binary ' {
@@ -209,7 +209,7 @@ curl \
209209
210210``` bash azureOpenAi
211211curl \
212- -X PUT ' http://localhost:7700/chats/customer-support/settings' \
212+ -X PATCH ' http://localhost:7700/chats/customer-support/settings' \
213213 -H ' Authorization: Bearer MASTER_KEY' \
214214 -H ' Content-Type: application/json' \
215215 --data-binary ' {
@@ -224,7 +224,7 @@ curl \
224224
225225``` bash mistral
226226curl \
227- -X PUT ' http://localhost:7700/chats/customer-support/settings' \
227+ -X PATCH ' http://localhost:7700/chats/customer-support/settings' \
228228 -H ' Authorization: Bearer MASTER_KEY' \
229229 -H ' Content-Type: application/json' \
230230 --data-binary ' {
@@ -238,7 +238,7 @@ curl \
238238
239239``` bash gemini
240240curl \
241- -X PUT ' http://localhost:7700/chats/customer-support/settings' \
241+ -X PATCH ' http://localhost:7700/chats/customer-support/settings' \
242242 -H ' Authorization: Bearer MASTER_KEY' \
243243 -H ' Content-Type: application/json' \
244244 --data-binary ' {
@@ -252,7 +252,7 @@ curl \
252252
253253``` bash vLlm
254254curl \
255- -X PUT ' http://localhost:7700/chats/customer-support/settings' \
255+ -X PATCH ' http://localhost:7700/chats/customer-support/settings' \
256256 -H ' Authorization: Bearer MASTER_KEY' \
257257 -H ' Content-Type: application/json' \
258258 --data-binary ' {
0 commit comments