import { Autocomplete, AutocompleteItem } from "@nextui-org/react"; import { useTranslation } from "react-i18next"; import { I18nKey } from "#/i18n/declaration"; interface AgentInputProps { isDisabled: boolean; defaultValue: string; agents: string[]; } export function AgentInput({ isDisabled, defaultValue, agents, }: AgentInputProps) { const { t } = useTranslation(); return (
{agents.map((agent) => ( {agent} ))}
); }