mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-24 07:26:47 +08:00
### What problem does this PR solve? Feat: Make the agent dialog window exposed to the outside world fill in the begin form #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
29 lines
659 B
TypeScript
29 lines
659 B
TypeScript
import { getLLMIconName, getLlmNameAndFIdByLlmId } from '@/utils/llm-util';
|
|
import { memo } from 'react';
|
|
import { LlmIcon } from '../svg-icon';
|
|
|
|
interface IProps {
|
|
id?: string;
|
|
value?: string;
|
|
onChange?: (value: string) => void;
|
|
disabled?: boolean;
|
|
}
|
|
|
|
const LLMLabel = ({ value }: IProps) => {
|
|
const { llmName, fId } = getLlmNameAndFIdByLlmId(value);
|
|
|
|
return (
|
|
<div className="flex items-center gap-1">
|
|
<LlmIcon
|
|
name={getLLMIconName(fId, llmName)}
|
|
width={20}
|
|
height={20}
|
|
size={'small'}
|
|
/>
|
|
<span className="flex-1 truncate"> {llmName}</span>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default memo(LLMLabel);
|