Feat/provider add zhipuai (#1192)
Co-authored-by: Joel <iamjoel007@gmail.com>
This commit is contained in:
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 13 KiB |
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 13 KiB |
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 10 KiB |
53
web/app/components/base/icons/src/public/llm/Zhipuai.json
Normal file
53
web/app/components/base/icons/src/public/llm/Zhipuai.json
Normal file
File diff suppressed because one or more lines are too long
16
web/app/components/base/icons/src/public/llm/Zhipuai.tsx
Normal file
16
web/app/components/base/icons/src/public/llm/Zhipuai.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
// GENERATE BY script
|
||||
// DON NOT EDIT IT MANUALLY
|
||||
|
||||
import * as React from 'react'
|
||||
import data from './Zhipuai.json'
|
||||
import IconBase from '@/app/components/base/icons/IconBase'
|
||||
import type { IconBaseProps, IconData } from '@/app/components/base/icons/IconBase'
|
||||
|
||||
const Icon = React.forwardRef<React.MutableRefObject<SVGElement>, Omit<IconBaseProps, 'data'>>((
|
||||
props,
|
||||
ref,
|
||||
) => <IconBase {...props} ref={ref} data={data as IconData} />)
|
||||
|
||||
Icon.displayName = 'Zhipuai'
|
||||
|
||||
export default Icon
|
File diff suppressed because one or more lines are too long
16
web/app/components/base/icons/src/public/llm/ZhipuaiText.tsx
Normal file
16
web/app/components/base/icons/src/public/llm/ZhipuaiText.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
// GENERATE BY script
|
||||
// DON NOT EDIT IT MANUALLY
|
||||
|
||||
import * as React from 'react'
|
||||
import data from './ZhipuaiText.json'
|
||||
import IconBase from '@/app/components/base/icons/IconBase'
|
||||
import type { IconBaseProps, IconData } from '@/app/components/base/icons/IconBase'
|
||||
|
||||
const Icon = React.forwardRef<React.MutableRefObject<SVGElement>, Omit<IconBaseProps, 'data'>>((
|
||||
props,
|
||||
ref,
|
||||
) => <IconBase {...props} ref={ref} data={data as IconData} />)
|
||||
|
||||
Icon.displayName = 'ZhipuaiText'
|
||||
|
||||
export default Icon
|
File diff suppressed because one or more lines are too long
@@ -0,0 +1,16 @@
|
||||
// GENERATE BY script
|
||||
// DON NOT EDIT IT MANUALLY
|
||||
|
||||
import * as React from 'react'
|
||||
import data from './ZhipuaiTextCn.json'
|
||||
import IconBase from '@/app/components/base/icons/IconBase'
|
||||
import type { IconBaseProps, IconData } from '@/app/components/base/icons/IconBase'
|
||||
|
||||
const Icon = React.forwardRef<React.MutableRefObject<SVGElement>, Omit<IconBaseProps, 'data'>>((
|
||||
props,
|
||||
ref,
|
||||
) => <IconBase {...props} ref={ref} data={data as IconData} />)
|
||||
|
||||
Icon.displayName = 'ZhipuaiTextCn'
|
||||
|
||||
export default Icon
|
@@ -29,3 +29,6 @@ export { default as ReplicateText } from './ReplicateText'
|
||||
export { default as Replicate } from './Replicate'
|
||||
export { default as XorbitsInferenceText } from './XorbitsInferenceText'
|
||||
export { default as XorbitsInference } from './XorbitsInference'
|
||||
export { default as ZhipuaiTextCn } from './ZhipuaiTextCn'
|
||||
export { default as ZhipuaiText } from './ZhipuaiText'
|
||||
export { default as Zhipuai } from './Zhipuai'
|
||||
|
Reference in New Issue
Block a user