Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
poc-fe
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
poc
poc-fe
Commits
3194e4e4
Commit
3194e4e4
authored
Mar 13, 2025
by
nick zheng
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'beta' into 'master'
fix: 多模型调试页知识库切片抽屉定位区域ID不能数字开头 See merge request
!185
parents
49ac0799
8846cb1a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
multi-model-dialogue.vue
src/views/multi-model-dialogue/multi-model-dialogue.vue
+5
-3
No files found.
src/views/multi-model-dialogue/multi-model-dialogue.vue
View file @
3194e4e4
...
...
@@ -90,7 +90,7 @@ const handleSavePersonalAppConfig = useThrottleFn(
function
modelDialogueFactory
()
{
return
{
id
:
nanoid
(),
id
:
'dialogue_'
+
nanoid
(),
icon
:
''
,
modelNickName
:
''
,
topP
:
0.1
,
...
...
@@ -121,7 +121,7 @@ async function handleGetApplicationDetail() {
multiModelDialogueList
.
value
=
[
currentModelConfig
,
cloneDeep
({
...
currentModelConfig
,
id
:
nanoid
(),
modelNickName
:
''
}),
cloneDeep
({
...
currentModelConfig
,
id
:
'dialogue_'
+
nanoid
(),
modelNickName
:
''
}),
]
handleGetLargeModelInfo
()
...
...
@@ -173,7 +173,9 @@ function handleBackAgentSetting() {
// 添加模型
function
handleAddModelDialogue
()
{
handleBlockMessageResponse
()
multiModelDialogueList
.
value
.
push
(
cloneDeep
({
...
multiModelDialogueList
.
value
[
0
],
id
:
nanoid
(),
modelNickName
:
''
}))
multiModelDialogueList
.
value
.
push
(
cloneDeep
({
...
multiModelDialogueList
.
value
[
0
],
id
:
'dialogue_'
+
nanoid
(),
modelNickName
:
''
}),
)
}
// 更新应用配置
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment