11import { useEffect , useState } from 'react' ;
22import { PlusCircleOutlined } from '@ant-design/icons' ;
3- import { Alert , AutoComplete , Button , Form , Input , Modal , notification , Radio , Select } from 'antd' ;
3+ import { Alert , AutoComplete , Button , Form , Input , Modal , notification , Radio , Select , Tooltip } from 'antd' ;
44import type { CheckboxGroupProps } from 'antd/es/checkbox' ;
55import get from 'lodash/get' ;
66import isEqual from 'lodash/isEqual' ;
@@ -18,11 +18,11 @@ export enum ModelProviderType {
1818
1919
2020export const modelProviderTypeOptions : CheckboxGroupProps < string > [ 'options' ] = [
21+ { label : < Tooltip title = "Cloudera AI Inferencing" > 'Cloudera'</ Tooltip > , value : 'caii' } ,
2122 { label : 'OpenAI' , value : 'openai' } ,
2223 { label : 'OpenAI Compatible' , value : 'openai_compatible' } ,
2324 { label : 'Gemini' , value : 'gemini' } ,
24- { label : 'AWS Bedrock' , value : 'aws_bedrock' } ,
25- { label : 'CAII' , value : 'caii' } ,
25+ { label : 'AWS Bedrock' , value : 'aws_bedrock' }
2626] ;
2727
2828const OPENAI_MODELS = [
0 commit comments