Skip to content

Commit

Permalink
increase readability
Browse files Browse the repository at this point in the history
  • Loading branch information
zhengfeiwang committed Apr 25, 2024
1 parent 8cd0da7 commit be25688
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion docs/how-to-guides/tracing/trace-ui.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,16 @@ Trace UI supports simple Python expression for search experience, which is demon

![advanced_search](../../media/trace/advanced-search.gif)

Currently it supports bool operator `and` and `or`, compare operator `==`, `!=`, `>`, `>=`, `<`, `<=`; and the fields that are searchable: `name`, `kind`, `status`, `start_time`, `cumulative_token_count.total`, `cumulative_token_count.prompt` and `cumulative_token_count.completion`. You can find the hints by clicking the button right to the search edit box.
Currently it supports:

- Operators:
- bool: `and` and `or`
- compare: `==`, `!=`, `>`, `>=`, `<` and `<=`
- Searchable fields:
- metadata: `name`, `kind` and `status`
- time: `start_time`
- token count: `cumulative_token_count.total`, `cumulative_token_count.prompt` and `cumulative_token_count.completion`

You can also find the hints by clicking the button right to the search edit box:

![search_hint](../../media/trace/trace-ui-search-hint.png)

0 comments on commit be25688

Please sign in to comment.