mirror of
https://github.com/tiennm99/litellm.git
synced 2026-08-07 04:24:12 +00:00
Litellm dev 01 22 2025 p1 (#7933)
* docs(docker_quick_start.md): add more troubleshooting guides * test(test_fallbacks.py): add e2e test for proxy with fallbacks + custom fallback message * test(test_bedrock_completion.py): skip test now that bedrock supports this behaviour * test(test_fireworks_ai_translation.py): mock fireworks ai test
This commit is contained in:
@@ -1048,3 +1048,4 @@ export DATABASE_SCHEMA="schema-name" # skip to use the default "public" schema
|
||||
```bash
|
||||
litellm --config /path/to/config.yaml --iam_token_db_auth
|
||||
```
|
||||
|
||||
|
||||
@@ -382,6 +382,56 @@ litellm_settings:
|
||||
ssl_verify: false # 👈 KEY CHANGE
|
||||
```
|
||||
|
||||
|
||||
### (DB) All connection attempts failed
|
||||
|
||||
|
||||
If you see:
|
||||
|
||||
```
|
||||
httpx.ConnectError: All connection attempts failed
|
||||
|
||||
ERROR: Application startup failed. Exiting.
|
||||
3:21:43 - LiteLLM Proxy:ERROR: utils.py:2207 - Error getting LiteLLM_SpendLogs row count: All connection attempts failed
|
||||
```
|
||||
|
||||
This might be a DB permission issue.
|
||||
|
||||
1. Validate db user permission issue
|
||||
|
||||
Try creating a new database.
|
||||
|
||||
```bash
|
||||
STATEMENT: CREATE DATABASE "litellm"
|
||||
```
|
||||
|
||||
If you get:
|
||||
|
||||
```
|
||||
ERROR: permission denied to create
|
||||
```
|
||||
|
||||
This indicates you have a permission issue.
|
||||
|
||||
2. Grant permissions to your DB user
|
||||
|
||||
It should look something like this:
|
||||
|
||||
```
|
||||
psql -U postgres
|
||||
```
|
||||
|
||||
```
|
||||
CREATE DATABASE litellm;
|
||||
```
|
||||
|
||||
On CloudSQL, this is:
|
||||
|
||||
```
|
||||
GRANT ALL PRIVILEGES ON DATABASE litellm TO your_username;
|
||||
```
|
||||
|
||||
|
||||
**What is `litellm_settings`?**
|
||||
|
||||
LiteLLM Proxy uses the [LiteLLM Python SDK](https://docs.litellm.ai/docs/routing) for handling LLM API calls.
|
||||
@@ -398,3 +448,5 @@ LiteLLM Proxy uses the [LiteLLM Python SDK](https://docs.litellm.ai/docs/routing
|
||||
|
||||
[](https://wa.link/huol9n) [](https://discord.gg/wuPM9dRgDw)
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -111,3 +111,53 @@ async def test_chat_completion_client_fallbacks(has_access):
|
||||
except Exception as e:
|
||||
if has_access:
|
||||
pytest.fail("Expected this to work: {}".format(str(e)))
|
||||
|
||||
|
||||
@pytest.mark.parametrize("has_access", [True, False])
|
||||
@pytest.mark.asyncio
|
||||
async def test_chat_completion_client_fallbacks_with_custom_message(has_access):
|
||||
"""
|
||||
make chat completion call with prompt > context window. expect it to work with fallback
|
||||
"""
|
||||
|
||||
async with aiohttp.ClientSession() as session:
|
||||
models = ["gpt-3.5-turbo"]
|
||||
|
||||
if has_access:
|
||||
models.append("gpt-instruct")
|
||||
|
||||
## CREATE KEY WITH MODELS
|
||||
generated_key = await generate_key(session=session, i=0, models=models)
|
||||
calling_key = generated_key["key"]
|
||||
model = "gpt-3.5-turbo"
|
||||
messages = [
|
||||
{"role": "user", "content": "Who was Alexander?"},
|
||||
]
|
||||
|
||||
## CALL PROXY
|
||||
try:
|
||||
await chat_completion(
|
||||
session=session,
|
||||
key=calling_key,
|
||||
model=model,
|
||||
messages=messages,
|
||||
mock_testing_fallbacks=True,
|
||||
fallbacks=[
|
||||
{
|
||||
"model": "gpt-instruct",
|
||||
"messages": [
|
||||
{
|
||||
"role": "assistant",
|
||||
"content": "This is a custom message",
|
||||
}
|
||||
],
|
||||
}
|
||||
],
|
||||
)
|
||||
if not has_access:
|
||||
pytest.fail(
|
||||
"Expected this to fail, submitted fallback model that key did not have access to"
|
||||
)
|
||||
except Exception as e:
|
||||
if has_access:
|
||||
pytest.fail("Expected this to work: {}".format(str(e)))
|
||||
|
||||
Reference in New Issue
Block a user