mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-17 18:29:50 +00:00
explicit type for trace
This commit is contained in:
parent
dfe152cb97
commit
2dfbb9744d
3 changed files with 23 additions and 18 deletions
|
|
@ -54,9 +54,9 @@ class ConsoleTelemetryImpl(Telemetry):
|
|||
async def get_trace(self, trace_id: str) -> Trace:
|
||||
raise NotImplementedError()
|
||||
|
||||
async def get_traces_for_session(
|
||||
self, session_id: str, lookback: str = "1h", limit: int = 100
|
||||
) -> List[Trace]:
|
||||
async def get_traces_for_agent_eval(
|
||||
self, session_ids: List[str], lookback: str = "1h", limit: int = 100
|
||||
) -> List[EvalTrace]:
|
||||
raise NotImplementedError()
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue