agentic-ai / trace.py
bstraehle's picture
Update trace.py
1e2660b
raw
history blame
No virus
1.12 kB
import os, wandb
from wandb.sdk.data_types.trace_tree import Trace
WANDB_API_KEY = os.environ["WANDB_API_KEY"]
def trace_wandb(config,
agent_option,
prompt,
completion,
result,
callback,
err_msg,
start_time_ms,
end_time_ms):
wandb.init(project = "openai-llm-agent")
trace = Trace(
kind = "LLM",
name = "Real-Time Reasoning Application",
status_code = "success" if (str(err_msg) == "") else "error",
status_message = str(err_msg),
inputs = {"prompt": prompt,
"agent_option": agent_option,
"config": str(config)
} if (str(err_msg) == "") else {},
outputs = {"result": str(result),
"callback": str(callback),
"completion": str(completion)
} if (str(err_msg) == "") else {},
start_time_ms = start_time_ms,
end_time_ms = end_time_ms
)
trace.log("evaluation")
wandb.finish()