import { TemplateAPI } from "@/types/chatstore"; import { Tr } from "@/translate"; interface Props { tmps: TemplateAPI[]; setTmps: (tmps: TemplateAPI[]) => void; label: string; endpoint: string; APIkey: string; } export function SetAPIsTemplate({ endpoint, APIkey, tmps, setTmps, label, }: Props) { return ( ); }