Replies: 4 comments 7 replies
-
same here! langfuse and sentry configured as callback. |
Beta Was this translation helpful? Give feedback.
-
Similar problem here when code: class DeepSeekCascadeLLM(CustomLLM):
# outer acompletion call
async def acompletion(
self,
api_base: str,
api_key: str,
model: str,
messages: list,
optional_params: dict,
litellm_params=None,
**kwargs
) -> litellm.ModelResponse:
...
# internal acompletion call
deepseek_response = await litellm.acompletion(
model=f"deepseek/{model}",
messages=messages,
base_url=api_base,
api_key=api_key,
extra_headers=auth_headers,
**passthrough_body
) An error was raised after the internal call finished:
I tried to figure it out and found that the
Maybe some extra parameters need to be passed in the internal |
Beta Was this translation helpful? Give feedback.
-
oh, i missed the |
Beta Was this translation helpful? Give feedback.
-
Hi, i have the same problem when i call the healthcheck from the admin page (docker image v1.72.6-stable): {"message": "Error in tracking cost callback - User API key and team id and user id missing from custom callback.", "level": "ERROR", "timestamp": "2025-06-25T09:07:30.998802", "stacktrace": "Traceback (most recent call last):\n File "/usr/lib/python3.13/site-packages/litellm/proxy/hooks/proxy_track_cost_callback.py", line 178, in _PROXY_track_cost_callback\n raise Exception(\n "User API key and team id and user id missing from custom callback."\n )\nException: User API key and team id and user id missing from custom callback."} How do you fix it ? thanks |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I am just taking my first steps with litellm so please bear with my noob questions.
I am trying to debug a problem, but my logs are just overwhelming me, so I started getting rid of the issues from the logs one by one.
I am running litellm via a docker-compose file and have created my own config.yaml
I only added 3 OpenAI models, no routing, nothing, trying to stay pretty basic.
Currently, I see this error repeating almost every second in my logs. Google did not yield any results for me. :-(
I mean I do understand what the error is saying, but obviously my API key is set and requests are actually working. No idea where or why I would need to set a team and user ID?
Beta Was this translation helpful? Give feedback.
All reactions