feat: provider add baichuan (#1298)

This commit is contained in:
zxhlyh
2023-10-10 12:10:43 +08:00
committed by GitHub
parent 4ab4bcc074
commit df07fb5951
25 changed files with 435 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
.wrapper {
display: inline-flex;
background: url(~@/app/components/base/icons/assets/image/llm/baichuan-text-cn.png) center center no-repeat;
background-size: contain;
}

View File

@@ -0,0 +1,15 @@
// GENERATE BY script
// DON NOT EDIT IT MANUALLY
import * as React from 'react'
import cn from 'classnames'
import s from './BaichuanTextCn.module.css'
const Icon = React.forwardRef<HTMLSpanElement, React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>>((
{ className, ...restProps },
ref,
) => <span className={cn(s.wrapper, className)} {...restProps} ref={ref} />)
Icon.displayName = 'BaichuanTextCn'
export default Icon

View File

@@ -10,4 +10,6 @@ const Icon = React.forwardRef<HTMLSpanElement, React.DetailedHTMLProps<React.HTM
ref,
) => <span className={cn(s.wrapper, className)} {...restProps} ref={ref} />)
Icon.displayName = 'Minimax'
export default Icon

View File

@@ -10,4 +10,6 @@ const Icon = React.forwardRef<HTMLSpanElement, React.DetailedHTMLProps<React.HTM
ref,
) => <span className={cn(s.wrapper, className)} {...restProps} ref={ref} />)
Icon.displayName = 'MinimaxText'
export default Icon

View File

@@ -10,4 +10,6 @@ const Icon = React.forwardRef<HTMLSpanElement, React.DetailedHTMLProps<React.HTM
ref,
) => <span className={cn(s.wrapper, className)} {...restProps} ref={ref} />)
Icon.displayName = 'Tongyi'
export default Icon

View File

@@ -10,4 +10,6 @@ const Icon = React.forwardRef<HTMLSpanElement, React.DetailedHTMLProps<React.HTM
ref,
) => <span className={cn(s.wrapper, className)} {...restProps} ref={ref} />)
Icon.displayName = 'TongyiText'
export default Icon

View File

@@ -10,4 +10,6 @@ const Icon = React.forwardRef<HTMLSpanElement, React.DetailedHTMLProps<React.HTM
ref,
) => <span className={cn(s.wrapper, className)} {...restProps} ref={ref} />)
Icon.displayName = 'TongyiTextCn'
export default Icon

View File

@@ -10,4 +10,6 @@ const Icon = React.forwardRef<HTMLSpanElement, React.DetailedHTMLProps<React.HTM
ref,
) => <span className={cn(s.wrapper, className)} {...restProps} ref={ref} />)
Icon.displayName = 'Wxyy'
export default Icon

View File

@@ -10,4 +10,6 @@ const Icon = React.forwardRef<HTMLSpanElement, React.DetailedHTMLProps<React.HTM
ref,
) => <span className={cn(s.wrapper, className)} {...restProps} ref={ref} />)
Icon.displayName = 'WxyyText'
export default Icon

View File

@@ -10,4 +10,6 @@ const Icon = React.forwardRef<HTMLSpanElement, React.DetailedHTMLProps<React.HTM
ref,
) => <span className={cn(s.wrapper, className)} {...restProps} ref={ref} />)
Icon.displayName = 'WxyyTextCn'
export default Icon

View File

@@ -1,3 +1,4 @@
export { default as BaichuanTextCn } from './BaichuanTextCn'
export { default as MinimaxText } from './MinimaxText'
export { default as Minimax } from './Minimax'
export { default as TongyiTextCn } from './TongyiTextCn'