Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
J
jinchat-server
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
aigc-pioneer
jinchat-server
Commits
919a400c
提交
919a400c
authored
5月 22, 2023
作者:
fxjhello
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
bingsearch前后端修改,history完善
上级
b8272bfe
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
15 行增加
和
17 行删除
+15
-17
api.py
api.py
+2
-2
chat.ts
views/src/api/chat.ts
+4
-4
index.vue
views/src/views/chat/index.vue
+8
-10
vite.config.ts
views/vite.config.ts
+1
-1
没有找到文件。
api.py
浏览文件 @
919a400c
...
...
@@ -249,7 +249,7 @@ async def local_doc_chat(
async
def
bing_search_chat
(
question
:
str
=
Body
(
...
,
description
=
"Question"
,
example
=
"工伤保险是什么?"
),
history
:
List
[
List
[
str
]]
=
Body
(
history
:
Optional
[
List
[
List
[
str
]
]]
=
Body
(
[],
description
=
"History of previous questions and answers"
,
example
=
[
...
...
@@ -265,7 +265,7 @@ async def bing_search_chat(
):
pass
source_documents
=
[
f
"""出处 [{inum + 1}]
<a href="{doc.metadata["source"]}" target="_blank">{doc.metadata["source"]}</a>
\n\n
{doc.page_content}
\n\n
"""
f
"""出处 [{inum + 1}]
({doc.metadata["source"]})
\n\n
{doc.page_content}
\n\n
"""
for
inum
,
doc
in
enumerate
(
resp
[
"source_documents"
])
]
...
...
views/src/api/chat.ts
浏览文件 @
919a400c
...
...
@@ -24,11 +24,11 @@ export const getfilelist = (knowledge_base_id: any) => {
})
}
export
const
bing_search
=
(
search_text
:
any
)
=>
{
export
const
bing_search
=
(
params
:
any
)
=>
{
return
api
({
url
:
'/
bing_search
'
,
method
:
'
ge
t'
,
params
:
{
search_text
}
,
url
:
'/
local_doc_qa/bing_search_chat
'
,
method
:
'
pos
t'
,
data
:
JSON
.
stringify
(
params
)
,
})
}
...
...
views/src/views/chat/index.vue
浏览文件 @
919a400c
...
...
@@ -40,7 +40,7 @@ const conversationList = computed(() => dataSources.value.filter(item => (!item.
const
prompt
=
ref
<
string
>
(
''
)
const
loading
=
ref
<
boolean
>
(
false
)
const
inputRef
=
ref
<
Ref
|
null
>
(
null
)
const
search
=
ref
<
boolean
>
(
'对话'
)
const
search
=
ref
<
string
>
(
'对话'
)
// 添加PromptStore
const
promptStore
=
usePromptStore
()
...
...
@@ -58,7 +58,7 @@ dataSources.value.forEach((item, index) => {
})
async
function
handleSubmit
()
{
if
(
search
.
value
==
'Bing搜索'
)
{
if
(
search
.
value
==
=
'Bing搜索'
)
{
loading
.
value
=
true
const
options
:
Chat
.
ConversationRequest
=
{}
const
lastText
=
''
...
...
@@ -76,9 +76,9 @@ async function handleSubmit() {
},
)
scrollToBottom
()
const
res
=
await
bing_search
(
prompt
.
value
)
const
res
=
await
bing_search
(
{
question
:
prompt
.
value
}
)
const
result
=
active
.
value
?
`
${
res
.
data
.
response
}
\n\n数据来源:\n\n>
${
res
.
data
.
source_documents
.
join
(
'>'
)}
`
:
res
.
data
.
response
const
result
=
`
${
res
.
data
.
response
}
\n\n数据来源:\n\n
${
res
.
data
.
source_documents
}
`
addChat
(
+
uuid
,
{
...
...
@@ -116,12 +116,10 @@ async function handleSubmit() {
async
function
onConversation
()
{
const
message
=
prompt
.
value
history
.
value
=
[]
history
.
value
=
[]
if
(
usingContext
.
value
)
{
for
(
let
i
=
0
;
i
<
dataSources
.
value
.
length
;
i
=
i
+
2
)
{
if
(
!
i
)
history
.
value
.
push
([
dataSources
.
value
[
i
].
text
,
dataSources
.
value
[
i
+
1
].
text
.
split
(
'
\
n
\
n数据来源:
\
n
\
n>'
)[
0
]])
}
for
(
let
i
=
0
;
i
<
dataSources
.
value
.
length
;
i
=
i
+
2
)
history
.
value
.
push
([
dataSources
.
value
[
i
].
text
,
dataSources
.
value
[
i
+
1
].
text
.
split
(
'
\
n
\
n数据来源:
\
n
\
n>'
)[
0
]])
}
else
{
history
.
value
.
length
=
0
}
...
...
@@ -589,7 +587,7 @@ onUnmounted(() => {
controller
.
abort
()
})
function
searchfun
()
{
if
(
search
.
value
==
'知识库'
)
if
(
search
.
value
==
=
'知识库'
)
active
.
value
=
true
else
...
...
views/vite.config.ts
浏览文件 @
919a400c
...
...
@@ -37,7 +37,7 @@ export default defineConfig((env) => {
open
:
false
,
proxy
:
{
'/api'
:
{
target
:
'http://1
27.0.0.1
:7861'
,
target
:
'http://1
46.56.190.29
:7861'
,
changeOrigin
:
true
,
// 允许跨域
rewrite
:
path
=>
path
.
replace
(
'/api/'
,
''
),
},
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论