chore: update ollama model options
This commit is contained in:
@@ -2,11 +2,11 @@ import { StatusMaps } from '@/config';
|
||||
import { EditOutlined } from '@ant-design/icons';
|
||||
|
||||
export const ollamaModelOptions = [
|
||||
{ label: 'llama3.1', value: 'llama3.1' },
|
||||
{ label: 'llama3', value: 'llama3' },
|
||||
{ label: 'gemma', value: 'gemma' },
|
||||
{ label: 'gemma2', value: 'gemma2' },
|
||||
{ label: 'mistral', value: 'mistral' },
|
||||
{ label: 'qwen', value: 'qwen' },
|
||||
{ label: 'llama2', value: 'llama2' },
|
||||
{ label: 'qwen2', value: 'qwen2' },
|
||||
{ label: 'phi3', value: 'phi3' },
|
||||
{ label: 'codellama', value: 'codellama' },
|
||||
{ label: 'deepseek-coder', value: 'deepseek-coder' }
|
||||
@@ -71,41 +71,3 @@ export const ActionList = [
|
||||
icon: EditOutlined
|
||||
}
|
||||
];
|
||||
|
||||
export const columns = [
|
||||
{
|
||||
title: 'models.name',
|
||||
dataIndex: 'name',
|
||||
key: 'name'
|
||||
},
|
||||
{
|
||||
title: 'models.type',
|
||||
dataIndex: 'type',
|
||||
key: 'type'
|
||||
},
|
||||
{
|
||||
title: 'models.source',
|
||||
dataIndex: 'source',
|
||||
key: 'source'
|
||||
},
|
||||
{
|
||||
title: 'models.status',
|
||||
dataIndex: 'status',
|
||||
key: 'status'
|
||||
},
|
||||
{
|
||||
title: 'models.createdat',
|
||||
dataIndex: 'createdAt',
|
||||
key: 'createdAt'
|
||||
},
|
||||
{
|
||||
title: 'models.updatedat',
|
||||
dataIndex: 'updatedAt',
|
||||
key: 'updatedAt'
|
||||
},
|
||||
{
|
||||
title: 'models.action',
|
||||
dataIndex: 'action',
|
||||
key: 'action'
|
||||
}
|
||||
];
|
||||
|
||||
@@ -54,7 +54,7 @@ const ChatFooter: React.FC<ChatFooterProps> = (props) => {
|
||||
return (
|
||||
<div className="chat-footer">
|
||||
<Row style={{ width: '100%' }}>
|
||||
<Col lg={hasTokenResult ? 8 : 12} xs={24} sm={24} md={12}>
|
||||
<Col lg={hasTokenResult ? 8 : 12} xs={24} sm={24} md={24}>
|
||||
<Space size={20}>
|
||||
<Button
|
||||
disabled={disabled}
|
||||
@@ -72,8 +72,21 @@ const ChatFooter: React.FC<ChatFooterProps> = (props) => {
|
||||
</Button>
|
||||
</Space>
|
||||
</Col>
|
||||
<Col span={hasTokenResult ? 8 : 0}>{feedback}</Col>
|
||||
<Col span={hasTokenResult ? 8 : 12} style={{ textAlign: 'right' }}>
|
||||
<Col
|
||||
lg={hasTokenResult ? 8 : 0}
|
||||
xs={hasTokenResult ? 24 : 0}
|
||||
sm={hasTokenResult ? 24 : 0}
|
||||
md={hasTokenResult ? 24 : 0}
|
||||
>
|
||||
{feedback}
|
||||
</Col>
|
||||
<Col
|
||||
lg={hasTokenResult ? 8 : 12}
|
||||
xs={24}
|
||||
sm={24}
|
||||
md={24}
|
||||
style={{ textAlign: 'right' }}
|
||||
>
|
||||
<Space size={20}>
|
||||
<Button
|
||||
icon={
|
||||
|
||||
Reference in New Issue
Block a user