Skip to content

Commit 8dc53c0

Browse files
docs: document updates
1 parent a7152f3 commit 8dc53c0

File tree

2 files changed

+61
-3
lines changed

2 files changed

+61
-3
lines changed

docs/my-website/docs/proxy/prometheus.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,8 @@ litellm_settings:
221221

222222
2. Make a request with the custom metadata labels
223223

224+
<Tabs>
225+
<TabItem value="Curl" label="Curl Request">
224226
```bash
225227
curl -L -X POST 'http://0.0.0.0:4000/v1/chat/completions' \
226228
-H 'Content-Type: application/json' \
@@ -244,6 +246,34 @@ curl -L -X POST 'http://0.0.0.0:4000/v1/chat/completions' \
244246
}
245247
}'
246248
```
249+
</TabItem>
250+
<TabItem value="openai" label="on Key">
251+
252+
```bash
253+
curl -L -X POST 'http://0.0.0.0:4000/key/generate' \
254+
-H 'Authorization: Bearer sk-1234' \
255+
-H 'Content-Type: application/json' \
256+
-d '{
257+
"metadata": {
258+
"foo": "hello world"
259+
}
260+
}'
261+
```
262+
</TabItem>
263+
<TabItem value="openai" label="on Team">
264+
265+
```bash
266+
curl -L -X POST 'http://0.0.0.0:4000/team/new' \
267+
-H 'Authorization: Bearer sk-1234' \
268+
-H 'Content-Type: application/json' \
269+
-d '{
270+
"metadata": {
271+
"foo": "hello world"
272+
}
273+
}'
274+
```
275+
</TabItem>
276+
</Tabs>
247277

248278
3. Check your `/metrics` endpoint for the custom metrics
249279

docs/my-website/release_notes/v1.77.7-stable/index.md

Lines changed: 31 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,8 @@ pip install litellm==1.77.7.rc.1
163163
#### Features
164164

165165
- **Virtual Keys**
166-
- Fix Session Token Cookie Infinite Logout Loop - [PR #15146](https://github.com/BerriAI/litellm/pull/15146)
167166
- Ensure LLM_API_KEYs can access pass through routes - [PR #15115](https://github.com/BerriAI/litellm/pull/15115)
167+
- Support 'guaranteed_throughput' when setting limits on keys belonging to a team - [PR #15120](https://github.com/BerriAI/litellm/pull/15120)
168168

169169
- **Models + Endpoints**
170170
- Ensure OCI secret fields not shared on /models and /v1/models endpoints - [PR #15085](https://github.com/BerriAI/litellm/pull/15085)
@@ -175,9 +175,34 @@ pip install litellm==1.77.7.rc.1
175175
- Ensure OTEL settings are saved in DB after set on UI - [PR #15118](https://github.com/BerriAI/litellm/pull/15118)
176176
- Top api key tags - [PR #15151](https://github.com/BerriAI/litellm/pull/15151), [PR #15156](https://github.com/BerriAI/litellm/pull/15156)
177177

178-
#### Bugs
178+
- **MCP**
179+
- show health status of MCP servers - [PR #15185](https://github.com/BerriAI/litellm/pull/15185)
180+
- allow setting extra headers on the UI - [PR #15185](https://github.com/BerriAI/litellm/pull/15185)
181+
- allow editing allowed tools on the UI - [PR #15185](https://github.com/BerriAI/litellm/pull/15185)
182+
183+
### Bug Fixes
184+
185+
- **Virtual Keys**
186+
- (security) prevent user key from updating other user keys - [PR #15201](https://github.com/BerriAI/litellm/pull/15201)
187+
- (security) don't return all keys with blank key alias on /v2/key/info - [PR #15201](https://github.com/BerriAI/litellm/pull/15201)
188+
- Fix Session Token Cookie Infinite Logout Loop - [PR #15146](https://github.com/BerriAI/litellm/pull/15146)
189+
190+
- **Models + Endpoints**
191+
- Make UI theme settings publicly accessible for custom branding - [PR #15074](https://github.com/BerriAI/litellm/pull/15074)
192+
193+
- **Teams**
194+
- fix failed copy to clipboard for http ui - [PR #15195](https://github.com/BerriAI/litellm/pull/15195)
195+
196+
- **Logs**
197+
- fix logs page render logs on filter lookup - [PR #15195](https://github.com/BerriAI/litellm/pull/15195)
198+
- fix lookup list of end users (migrate to more efficient /customers/list lookup) - [PR #15195](https://github.com/BerriAI/litellm/pull/15195)
199+
200+
- **Test key**
201+
- update selected model on key change - [PR #15197](https://github.com/BerriAI/litellm/pull/15197)
202+
203+
- **Dashboard**
204+
- Fix LiteLLM model name fallback in dashboard overview - [PR #14998](https://github.com/BerriAI/litellm/pull/14998)
179205

180-
- **Dashboard** - Fix LiteLLM model name fallback in dashboard overview - [PR #14998](https://github.com/BerriAI/litellm/pull/14998)
181206

182207
---
183208

@@ -190,6 +215,9 @@ pip install litellm==1.77.7.rc.1
190215
- **[Langfuse](../../docs/proxy/logging#langfuse)**
191216
- Handle non-serializable objects in Langfuse logging - [PR #15148](https://github.com/BerriAI/litellm/pull/15148)
192217
- Set usage_details.total in langfuse integration - [PR #15015](https://github.com/BerriAI/litellm/pull/15015)
218+
- **[Prometheus](../../docs/proxy/prometheus)**
219+
- support custom metadata labels on key/team - [PR #15094](https://github.com/BerriAI/litellm/pull/15094)
220+
193221

194222
#### Guardrails
195223

0 commit comments

Comments
 (0)