remove beta tags

This commit is contained in:
ramnique 2025-03-10 16:56:16 +05:30
parent 41bed1f677
commit 374f66daf9
3 changed files with 5 additions and 12 deletions

View file

@ -1,21 +1,14 @@
'use client'; 'use client';
import { Dropdown, DropdownItem, DropdownMenu, DropdownTrigger, Spinner } from "@heroui/react"; import { useState } from "react";
import { useEffect, useState, useMemo, useCallback } from "react";
import { z } from "zod"; import { z } from "zod";
import { PlaygroundChat } from "../../../lib/types/types"; import { PlaygroundChat } from "../../../lib/types/types";
import { Workflow } from "../../../lib/types/workflow_types"; import { Workflow } from "../../../lib/types/workflow_types";
import { Chat } from "./chat"; import { Chat } from "./chat";
import { useSearchParams, useRouter } from "next/navigation";
import { ActionButton, Pane } from "../workflow/pane"; import { ActionButton, Pane } from "../workflow/pane";
import { apiV1 } from "rowboat-shared"; import { apiV1 } from "rowboat-shared";
import { EllipsisVerticalIcon, MessageSquarePlusIcon, PlayIcon } from "lucide-react"; import { MessageSquarePlusIcon } from "lucide-react";
import { getScenario } from "../../../actions/testing_actions"; import { TestProfile } from "@/app/lib/types/testing_types";
import clsx from "clsx";
import { TestProfile, TestScenario } from "@/app/lib/types/testing_types";
import { WithStringId } from "@/app/lib/types/types"; import { WithStringId } from "@/app/lib/types/types";
function SimulateLabel() {
return <span>Simulate<sup className="pl-1">beta</sup></span>;
}
const defaultSystemMessage = ''; const defaultSystemMessage = '';

View file

@ -39,7 +39,7 @@ export function SourcesList({
return <div className="flex flex-col h-full"> return <div className="flex flex-col h-full">
<div className="shrink-0 flex justify-between items-center pb-4 border-b border-border"> <div className="shrink-0 flex justify-between items-center pb-4 border-b border-border">
<div className="flex flex-col"> <div className="flex flex-col">
<h1 className="text-lg">Data sources <sup>(beta)</sup></h1> <h1 className="text-lg">Data sources</h1>
</div> </div>
<div className="flex items-center gap-2"> <div className="flex items-center gap-2">
<Button <Button

View file

@ -161,7 +161,7 @@ export function AgentConfig({
/> />
</FormSection> </FormSection>
{useRag && <FormSection label="RAG (beta)" showDivider> {useRag && <FormSection label="RAG" showDivider>
<div className="flex flex-col gap-3"> <div className="flex flex-col gap-3">
<Dropdown> <Dropdown>
<DropdownTrigger> <DropdownTrigger>