From 62e5665b22c8de8583b881f2ed022c3c0ca61304 Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Mon, 21 Oct 2024 06:58:01 -0700 Subject: [PATCH] Remove confidence score from UI (#1015) --- .../tasks/detail/ScrollableActionList.tsx | 22 ------------------- 1 file changed, 22 deletions(-) diff --git a/skyvern-frontend/src/routes/tasks/detail/ScrollableActionList.tsx b/skyvern-frontend/src/routes/tasks/detail/ScrollableActionList.tsx index bbce1464..fe812c2e 100644 --- a/skyvern-frontend/src/routes/tasks/detail/ScrollableActionList.tsx +++ b/skyvern-frontend/src/routes/tasks/detail/ScrollableActionList.tsx @@ -2,12 +2,6 @@ import { getClient } from "@/api/AxiosClient"; import { Action, ActionTypes } from "@/api/types"; import { ScrollArea, ScrollAreaViewport } from "@/components/ui/scroll-area"; import { Separator } from "@/components/ui/separator"; -import { - Tooltip, - TooltipContent, - TooltipProvider, - TooltipTrigger, -} from "@/components/ui/tooltip"; import { useCredentialGetter } from "@/hooks/useCredentialGetter"; import { cn } from "@/util/utils"; import { @@ -117,24 +111,8 @@ function ScrollableActionList({ Fail )} - {typeof action.confidence === "number" && ( - - - -
- - {action.confidence} - - CS -
-
- Confidence Score -
-
- )} -
{action.reasoning}
{action.type === ActionTypes.InputText && ( <>