feat: add LocalAI local embedding model support (#1021)
Co-authored-by: StyleZhang <jasonapring2015@outlook.com>
This commit is contained in:
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 76 KiB |
15
web/app/components/base/icons/assets/public/llm/localai.svg
Normal file
15
web/app/components/base/icons/assets/public/llm/localai.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 73 KiB |
107
web/app/components/base/icons/src/public/llm/Localai.json
Normal file
107
web/app/components/base/icons/src/public/llm/Localai.json
Normal file
File diff suppressed because one or more lines are too long
14
web/app/components/base/icons/src/public/llm/Localai.tsx
Normal file
14
web/app/components/base/icons/src/public/llm/Localai.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
// GENERATE BY script
|
||||
// DON NOT EDIT IT MANUALLY
|
||||
|
||||
import * as React from 'react'
|
||||
import data from './Localai.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} />)
|
||||
|
||||
export default Icon
|
||||
170
web/app/components/base/icons/src/public/llm/LocalaiText.json
Normal file
170
web/app/components/base/icons/src/public/llm/LocalaiText.json
Normal file
File diff suppressed because one or more lines are too long
14
web/app/components/base/icons/src/public/llm/LocalaiText.tsx
Normal file
14
web/app/components/base/icons/src/public/llm/LocalaiText.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
// GENERATE BY script
|
||||
// DON NOT EDIT IT MANUALLY
|
||||
|
||||
import * as React from 'react'
|
||||
import data from './LocalaiText.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} />)
|
||||
|
||||
export default Icon
|
||||
@@ -14,6 +14,8 @@ export { default as Huggingface } from './Huggingface'
|
||||
export { default as IflytekSparkTextCn } from './IflytekSparkTextCn'
|
||||
export { default as IflytekSparkText } from './IflytekSparkText'
|
||||
export { default as IflytekSpark } from './IflytekSpark'
|
||||
export { default as LocalaiText } from './LocalaiText'
|
||||
export { default as Localai } from './Localai'
|
||||
export { default as Microsoft } from './Microsoft'
|
||||
export { default as OpenaiBlack } from './OpenaiBlack'
|
||||
export { default as OpenaiBlue } from './OpenaiBlue'
|
||||
|
||||
Reference in New Issue
Block a user