Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
熬夜程序员&
AI资料库
提交
56bb00e0
A
AI资料库
项目概览
熬夜程序员&
/
AI资料库
与 Fork 源项目一致
Fork自
冯丙见 / AI私人知识库
通知
1
Star
0
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
A
AI资料库
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
56bb00e0
编写于
7月 13, 2023
作者:
6
622aa39c1f9b166ab1a38c05
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Thu Jul 13 18:32:00 CST 2023 inscode
上级
25fd1baa
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
28 addition
and
20 deletion
+28
-20
src/App.vue
src/App.vue
+25
-18
src/js/config.js
src/js/config.js
+2
-2
src/js/openai.js
src/js/openai.js
+1
-0
未找到文件。
src/App.vue
浏览文件 @
56bb00e0
...
...
@@ -284,15 +284,30 @@ export default {
return
}
this
.
loading
=
true
if
(
this
.
mode
===
'
draw
'
)
{
this
.
draw
()
}
else
{
const
_this
=
this
const
messages
=
this
.
message
const
currentMsg
=
{
"
user
"
:
"
AI
"
,
"
message
"
:
''
}
const
newPrompt
=
this
.
prompt
this
.
prompt
=
''
messages
.
push
({
"
user
"
:
"
User
"
,
"
message
"
:
newPrompt
})
messages
.
push
(
currentMsg
)
_this
.
$refs
.
messageList
.
scrollTop
=
_this
.
$refs
.
messageList
.
scrollHeight
;
if
(
this
.
indexClient
)
{
this
.
indexClient
.
query
(
this
.
p
rompt
).
then
(
res
=>
{
this
.
getAnswer
(
res
)
this
.
indexClient
.
query
(
newP
rompt
).
then
(
res
=>
{
this
.
getAnswer
(
res
,
newPrompt
,
currentMsg
)
}).
catch
((
err
)
=>
{
this
.
getAnswer
()
this
.
getAnswer
(
null
,
newPrompt
,
currentMsg
)
})
}
}
...
...
@@ -358,21 +373,13 @@ export default {
_this
.
loading
=
false
})
},
getAnswer
(
context
)
{
this
.
loading
=
true
getAnswer
(
context
=
null
,
prompt
=
null
,
currentMsg
=
null
)
{
const
newPrompt
=
prompt
?
prompt
:
this
.
prompt
const
_this
=
this
this
.
config
.
api_url
=
this
.
sdServerUrl
const
messages
=
this
.
message
const
currentMsg
=
{
"
user
"
:
"
AI
"
,
"
message
"
:
''
}
messages
.
push
({
"
user
"
:
"
User
"
,
"
message
"
:
this
.
prompt
})
messages
.
push
(
currentMsg
)
_this
.
$refs
.
messageList
.
scrollTop
=
_this
.
$refs
.
messageList
.
scrollHeight
;
const
newPrompt
=
this
.
prompt
console
.
info
(
this
.
prompt
)
console
.
info
(
newPrompt
)
this
.
prompt
=
''
this
.
client
.
createCompletion
(
newPrompt
,
this
.
message
,
...
...
@@ -490,7 +497,7 @@ export default {
handleSDServerTypeChange
(
type
)
{
if
(
type
===
'
common
'
)
{
debugger
this
.
sdServerUrl
=
this
.
config
.
common_gpt_api
}
this
.
saveConfig
()
...
...
@@ -509,7 +516,7 @@ export default {
document
.
title
=
this
.
name
if
(
data
.
ext
&&
data
.
ext
.
common_sd_api
)
{
if
(
data
.
ext
&&
data
.
ext
.
common_sd_api
&&
this
.
sdServerType
===
'
common
'
)
{
this
.
config
.
common_gpt_url
=
data
.
ext
.
common_gpt_url
this
.
sdServerUrl
=
data
.
ext
.
common_gpt_url
}
...
...
src/js/config.js
浏览文件 @
56bb00e0
...
...
@@ -10,8 +10,8 @@ export default {
"
resource_type
"
:
"
app
"
,
"
ext
"
:
{
"
mode
"
:
"
chat
"
,
"
model
"
:
"
chatgl2-6b
"
,
"
common_gpt_url
"
:
"
https://api.quickapi.cloud/temporary/gpt
/
"
,
"
model
"
:
"
chatgl
m
2-6b
"
,
"
common_gpt_url
"
:
"
https://api.quickapi.cloud/temporary/gpt
"
,
"
api_type
"
:
"
openai
"
,
"
robot_img
"
:
null
,
"
api_max_token
"
:
"
2048
"
,
...
...
src/js/openai.js
浏览文件 @
56bb00e0
...
...
@@ -11,6 +11,7 @@ class OpenAI {
}
createCompletion
(
prompt
,
history
,
context
,
callback
)
{
debugger
const
config
=
this
.
config
const
abortController
=
new
AbortController
();
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录