mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-23 23:16:58 +08:00
### What problem does this PR solve? Feat: Add ChatBasicSetting component #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
16
web/src/pages/next-chats/chat/app-settings/index.tsx
Normal file
16
web/src/pages/next-chats/chat/app-settings/index.tsx
Normal file
@ -0,0 +1,16 @@
|
||||
import ChatBasicSetting from './chat-basic-settings';
|
||||
import { ChatModelSettings } from './chat-model-settings';
|
||||
import { ChatPromptEngine } from './chat-prompt-engine';
|
||||
|
||||
export function AppSettings() {
|
||||
return (
|
||||
<section className="p-6 w-[500px] max-w-[25%]">
|
||||
<div className="text-2xl font-bold mb-4 text-colors-text-neutral-strong">
|
||||
App settings
|
||||
</div>
|
||||
<ChatBasicSetting></ChatBasicSetting>
|
||||
<ChatPromptEngine></ChatPromptEngine>
|
||||
<ChatModelSettings></ChatModelSettings>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user