docs update

This commit is contained in:
ishaan-jaff 2023-10-04 10:20:07 -07:00
parent fa86d9c6e2
commit 0f7256533f
4 changed files with 20 additions and 13 deletions

View file

@ -1,7 +1,6 @@
# OpenAI Proxy Servers (ChatCompletion) # Custom API Server (OpenAI Format)
LiteLLM allows you to call your OpenAI ChatCompletion proxy server
LiteLLM allows you to call your custom endpoint in the OpenAI ChatCompletion format
### API KEYS ### API KEYS
No api keys required No api keys required

View file

@ -1,11 +1,20 @@
# Troubleshooting # Support & Talk with founders
[Schedule Demo 👋](https://calendly.com/d/4mp-gd3-k5k/berriai-1-1-onboarding-litellm-hosted-version)
[Community Discord 💭](https://discord.gg/wuPM9dRgDw)
Our numbers 📞 +1 (770) 8783-106 / +1 (412) 618-6238
Our emails ✉️ ishaan@berri.ai / krrish@berri.ai
[![Chat on WhatsApp](https://img.shields.io/static/v1?label=Chat%20on&message=WhatsApp&color=success&logo=WhatsApp&style=flat-square)](https://wa.link/huol9n) [![Chat on Discord](https://img.shields.io/static/v1?label=Chat%20on&message=Discord&color=blue&logo=Discord&style=flat-square)](https://discord.gg/wuPM9dRgDw)
## Stable Version ## Stable Version
If you're running into problems with installation / Usage If you're running into problems with installation / Usage
Use the stable version of litellm Use the stable version of litellm
``` ```shell
pip install litellm==0.1.345 pip install litellm==0.1.819
``` ```

View file

@ -37,6 +37,8 @@ const sidebars = {
"completion/config", "completion/config",
"completion/batching", "completion/batching",
"completion/mock_requests", "completion/mock_requests",
"completion/token_usage",
"exception_mapping",
], ],
}, },
{ {
@ -46,7 +48,7 @@ const sidebars = {
}, },
{ {
type: "category", type: "category",
label: "Supported Models + Providers", label: "Supported Models & Providers",
link: { link: {
type: 'generated-index', type: 'generated-index',
title: 'Providers', title: 'Providers',
@ -73,17 +75,14 @@ const sidebars = {
"providers/aleph_alpha", "providers/aleph_alpha",
"providers/baseten", "providers/baseten",
"providers/openrouter", "providers/openrouter",
"providers/custom", // "providers/custom",
"providers/custom_openai_proxy", "providers/custom_openai_proxy",
"providers/petals", "providers/petals",
] ]
}, },
"set_keys", "set_keys",
"token_usage",
"exception_mapping",
'debugging/local_debugging',
"budget_manager",
"proxy_server", "proxy_server",
"budget_manager",
{ {
type: 'category', type: 'category',
label: 'Tutorials', label: 'Tutorials',
@ -141,6 +140,7 @@ const sidebars = {
items: [ items: [
'extras/contributing', 'extras/contributing',
'debugging/hosted_debugging', 'debugging/hosted_debugging',
'debugging/local_debugging',
{ {
type: "category", type: "category",
label: "❤️ 🚅 Projects built on LiteLLM", label: "❤️ 🚅 Projects built on LiteLLM",
@ -168,7 +168,6 @@ const sidebars = {
], ],
}, },
"troubleshoot", "troubleshoot",
"contact",
], ],
}; };