maximlupey
maximlupey
LLangfuse
Created by maximlupey on 8/14/2024 in #support
Login problem
@Marc
10 replies
LLangfuse
Created by maximlupey on 8/14/2024 in #support
Login problem
also having problems with reseting password
10 replies
LLangfuse
Created by maximlupey on 8/14/2024 in #support
Login problem
I am having problem loging in to US instance again
10 replies
LLangfuse
Created by maximlupey on 8/14/2024 in #support
Login problem
now I am able to log in to my EU region
10 replies
LLangfuse
Created by maximlupey on 8/14/2024 in #support
Login problem
looks like I was in EU region and then landed in US automatically
10 replies
LLangfuse
Created by maximlupey on 8/14/2024 in #support
Summary evaluators. f1 score
Is there support for summary evaluators?
5 replies
LLangfuse
Created by maximlupey on 8/9/2024 in #support
null value traces
@Marc
24 replies
LLangfuse
Created by maximlupey on 8/9/2024 in #support
null value traces
Meaning, do I need to specify it somewhere else also?
24 replies
LLangfuse
Created by maximlupey on 8/9/2024 in #support
null value traces
Isn’t it a name?
24 replies
LLangfuse
Created by maximlupey on 8/9/2024 in #support
null value traces
No description
24 replies
LLangfuse
Created by maximlupey on 8/9/2024 in #support
null value traces
So my current code looks correct?
24 replies
LLangfuse
Created by maximlupey on 8/9/2024 in #support
null value traces
I think we discussed trace.end on the call, might be I misunderstood
24 replies
LLangfuse
Created by maximlupey on 8/9/2024 in #support
null value traces
Do I need to use trace.update or something similar at all?
24 replies
LLangfuse
Created by maximlupey on 8/9/2024 in #support
null value traces
is there any documentation on this method?
24 replies
LLangfuse
Created by maximlupey on 8/9/2024 in #support
null value traces
but trace name disappeared
24 replies
LLangfuse
Created by maximlupey on 8/9/2024 in #support
null value traces
Nulls on input and output are fixed
24 replies
LLangfuse
Created by maximlupey on 8/9/2024 in #support
null value traces
langfuse-2.43.1
24 replies
LLangfuse
Created by maximlupey on 8/9/2024 in #support
null value traces
I've used trace.update as trace.end did not work
24 replies
LLangfuse
Created by maximlupey on 8/9/2024 in #support
null value traces
@Marc def run_my_custom_llm_app(input, system_prompt): print(input) messages = [ {"role":"system", "content": system_prompt}, {"role":"user", "content": input["question"]} ] trace = langfuse.trace(input=input)
generationStartTime = datetime.now() openai_completion = openai.chat.completions.create( model="gpt-3.5-turbo", messages=messages ).choices[0].message.content langfuse_generation = trace.generation( name="bm4", input=messages, output=openai_completion, model="gpt-3.5-turbo", start_time=generationStartTime, end_time=datetime.now() ) print(trace) trace.update(output=openai_completion) return openai_completion, trace
24 replies