Spaces:
Runtime error
Runtime error
File size: 877 Bytes
f46b416 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
import React, { useState } from 'react';
import { Form, Button, Card, Row, Col } from 'antd';
import ModelSelection from '../../../components/DropdownInput/ModelSelection';
import TextArea from 'antd/es/input/TextArea';
const defaultModel = "GPT35"
function DemoCompliance() {
const [form] = Form.useForm();
const [currModel, setCurrModel] = useState(defaultModel);
const handleSubmit = () => {
// Simulate modifying the prompt
// TODO: handle submit here
};
return (
<div>
<Form form={form} layout="vertical" onFinish={handleSubmit}>
<Form.Item label="Model">
<ModelSelection onSelect={setCurrModel} />
</Form.Item>
<Form.Item>
<Button type="primary" htmlType="submit">
Run
</Button>
</Form.Item>
</Form>
<Card>
</Card>
</div>
);
}
export default DemoCompliance; |