File size: 1,588 Bytes
af3ef26
 
 
6b8fc2c
 
af3ef26
6b8fc2c
 
af3ef26
 
 
 
 
 
6b8fc2c
af3ef26
 
 
 
 
 
 
 
 
 
 
6b8fc2c
af3ef26
 
 
 
 
 
 
 
 
 
 
6b8fc2c
af3ef26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import { Form, Input, Modal } from 'antd';
import { useTranslation } from 'react-i18next';
import { useDispatch, useSelector } from 'umi';

type FieldType = {
  api_key?: string;
};

const SakModal = () => {
  const dispatch = useDispatch();
  const settingModel = useSelector((state: any) => state.settingModel);
  const { isShowSAKModal, llm_factory } = settingModel;
  const { t } = useTranslation();
  const [form] = Form.useForm();

  const handleCancel = () => {
    dispatch({
      type: 'settingModel/updateState',
      payload: {
        isShowSAKModal: false,
      },
    });
  };
  const handleOk = async () => {
    try {
      const values = await form.validateFields();

      dispatch({
        type: 'settingModel/set_api_key',
        payload: {
          api_key: values.api_key,
          llm_factory: llm_factory,
        },
      });
    } catch (errorInfo) {
      console.log('Failed:', errorInfo);
    }
  };

  return (
    <Modal

      title="Basic Modal"

      open={isShowSAKModal}

      onOk={handleOk}

      onCancel={handleCancel}

    >

      <Form

        form={form}

        name="validateOnly"

        labelCol={{ span: 8 }}

        wrapperCol={{ span: 16 }}

        style={{ maxWidth: 600 }}

        autoComplete="off"

      >

        <Form.Item<FieldType>

          label="API Key"

          name="api_key"

          rules={[{ required: true, message: 'Please input ' }]}

        >

          <Input />

        </Form.Item>

      </Form>

    </Modal>

  );

};

export default SakModal;