star5o

Results 9 comments of star5o

我这也打不开了

> 我这也打不开了 现在可以打开了

when use model gpt-4o-2024-11-20, meet same problem. I just use case: ``` - import openai + from langfuse.openai import openai completion = openai.chat.completions.create( model="gpt-4o-2024-11-20", messages=[ {"role": "system", "content": "You are...

@hassiebp error occurs when the openai response "usage" object has this format: ``` "usage": { "completion_tokens": 11, "completion_tokens_details": {}, "prompt_tokens": 9, "prompt_tokens_details": {}, "total_tokens": 20 } ``` But the no...

I'm using an AI Gateway to aggregate different LLMs into the OpenAI format, so some models might return the first format.

> when use model gpt-4o-2024-11-20, meet same problem. I just use case: > > ``` > - import openai > + from langfuse.openai import openai > completion = openai.chat.completions.create( >...