Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
admin
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
ca2b7202
authored
May 17, 2024
by
cherishsince
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
【调整】AI 对话调整,提示词发送
parent
b6c654f0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
7 deletions
+11
-7
src/views/ai/chat/index.vue
+11
-7
No files found.
src/views/ai/chat/index.vue
View file @
ca2b7202
...
@@ -35,7 +35,7 @@
...
@@ -35,7 +35,7 @@
<el-main
class=
"main-container"
>
<el-main
class=
"main-container"
>
<div
class=
"message-container"
>
<div
class=
"message-container"
>
<Message
v-if=
"list.length > 0"
ref=
"messageRef"
:list=
"list"
@
on-delete-success=
"handlerMessageDelete"
/>
<Message
v-if=
"list.length > 0"
ref=
"messageRef"
:list=
"list"
@
on-delete-success=
"handlerMessageDelete"
/>
<ChatEmpty
v-if=
"list.length === 0"
@
on-prompt=
"
on
Send"
/>
<ChatEmpty
v-if=
"list.length === 0"
@
on-prompt=
"
do
Send"
/>
</div>
</div>
</el-main>
</el-main>
...
@@ -158,7 +158,7 @@ const onPromptInput = (event) => {
...
@@ -158,7 +158,7 @@ const onPromptInput = (event) => {
/**
/**
* 发送消息
* 发送消息
*/
*/
const
onSend
=
async
(
val
?:
string
)
=>
{
const
onSend
=
async
()
=>
{
// 判断用户是否在输入
// 判断用户是否在输入
if
(
isComposing
.
value
)
{
if
(
isComposing
.
value
)
{
return
return
...
@@ -167,7 +167,11 @@ const onSend = async (val?: string) => {
...
@@ -167,7 +167,11 @@ const onSend = async (val?: string) => {
if
(
conversationInProgress
.
value
)
{
if
(
conversationInProgress
.
value
)
{
return
return
}
}
const
content
=
(
val
?
val
:
prompt
.
value
?.
trim
())
as
string
const
content
=
prompt
.
value
?.
trim
()
as
string
await
doSend
(
content
)
}
const
doSend
=
async
(
content
:
string
)
=>
{
if
(
content
.
length
<
2
)
{
if
(
content
.
length
<
2
)
{
ElMessage
({
ElMessage
({
message
:
'请输入内容!'
,
message
:
'请输入内容!'
,
...
@@ -176,10 +180,10 @@ const onSend = async (val?: string) => {
...
@@ -176,10 +180,10 @@ const onSend = async (val?: string) => {
return
return
}
}
if
(
activeConversationId
.
value
==
null
)
{
if
(
activeConversationId
.
value
==
null
)
{
ElMessage
({
ElMessage
({
message
:
'还没创建对话,不能发送!'
,
message
:
'还没创建对话,不能发送!'
,
type
:
'error'
type
:
'error'
})
})
return
return
}
}
// TODO 芋艿:这块交互要在优化;应该是先插入到 UI 界面,里面会有当前的消息,和正在思考中;之后发起请求;
// TODO 芋艿:这块交互要在优化;应该是先插入到 UI 界面,里面会有当前的消息,和正在思考中;之后发起请求;
...
...
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