/** * This file is part of the NocoBase (R) project. * Copyright (c) 2020-2024 NocoBase Co., Ltd. * Authors: NocoBase Team. * * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License. * For more information, please refer to: https://www.nocobase.com/agreement. */ import React from 'react'; import { SchemaComponent } from '@nocobase/client'; import { tval } from '@nocobase/utils/client'; import { namespace, useT } from '../../locale'; import { Collapse } from 'antd'; import { WorkflowVariableRawTextArea } from '@nocobase/plugin-workflow/client'; import { ModelSelect } from '../components/ModelSelect'; import { Chat } from '../components/Chat'; const Options: React.FC = () => { const t = useT(); return (
), }, ]} />
); }; export const ModelSettingsForm: React.FC = () => { return ( ); };