Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
J
jinchat-server
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
aigc-pioneer
jinchat-server
Commits
22d08f5e
提交
22d08f5e
authored
7月 16, 2023
作者:
glide-the
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
必要参数校验
上级
1e2124ff
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
27 行增加
和
20 行删除
+27
-20
model_config.py
configs/model_config.py
+2
-2
fastchat_openai_llm.py
models/fastchat_openai_llm.py
+25
-18
没有找到文件。
configs/model_config.py
浏览文件 @
22d08f5e
...
...
@@ -16,7 +16,7 @@ embedding_model_dict = {
"ernie-tiny"
:
"nghuyong/ernie-3.0-nano-zh"
,
"ernie-base"
:
"nghuyong/ernie-3.0-base-zh"
,
"text2vec-base"
:
"shibing624/text2vec-base-chinese"
,
"text2vec"
:
"
GanymedeNil/text2vec-large-chinese
"
,
"text2vec"
:
"
/media/checkpoint/text2vec-large-chinese/
"
,
"m3e-small"
:
"moka-ai/m3e-small"
,
"m3e-base"
:
"moka-ai/m3e-base"
,
}
...
...
@@ -186,7 +186,7 @@ llm_model_dict = {
}
# LLM 名称
LLM_MODEL
=
"chatglm-6b"
LLM_MODEL
=
"
fastchat-
chatglm-6b"
# 量化加载8bit 模型
LOAD_IN_8BIT
=
False
# Load the model with bfloat16 precision. Requires NVIDIA Ampere GPU.
...
...
models/fastchat_openai_llm.py
浏览文件 @
22d08f5e
...
...
@@ -52,16 +52,21 @@ def build_message_list(query, history: List[List[str]]) -> Collection[Dict[str,
system_build_message
[
'role'
]
=
'system'
system_build_message
[
'content'
]
=
"You are a helpful assistant."
build_messages
.
append
(
system_build_message
)
for
i
,
(
old_query
,
response
)
in
enumerate
(
history
):
user_build_message
=
_build_message_template
()
user_build_message
[
'role'
]
=
'user'
user_build_message
[
'content'
]
=
old_query
system_build_message
=
_build_message_template
()
system_build_message
[
'role'
]
=
'assistant'
system_build_message
[
'content'
]
=
response
build_messages
.
append
(
user_build_message
)
build_messages
.
append
(
system_build_message
)
if
history
:
for
i
,
(
user
,
assistant
)
in
enumerate
(
history
):
if
user
:
user_build_message
=
_build_message_template
()
user_build_message
[
'role'
]
=
'user'
user_build_message
[
'content'
]
=
user
build_messages
.
append
(
user_build_message
)
if
not
assistant
:
raise
RuntimeError
(
"历史数据结构不正确"
)
system_build_message
=
_build_message_template
()
system_build_message
[
'role'
]
=
'assistant'
system_build_message
[
'content'
]
=
assistant
build_messages
.
append
(
system_build_message
)
user_build_message
=
_build_message_template
()
user_build_message
[
'role'
]
=
'user'
...
...
@@ -181,10 +186,10 @@ class FastChatOpenAILLMChain(RemoteRpcModel, Chain, ABC):
run_manager
:
Optional
[
CallbackManagerForChainRun
]
=
None
,
generate_with_callback
:
AnswerResultStream
=
None
)
->
None
:
history
=
inputs
[
self
.
history_key
]
streaming
=
inputs
[
self
.
streaming_key
]
history
=
inputs
.
get
(
self
.
history_key
,
[])
streaming
=
inputs
.
get
(
self
.
streaming_key
,
False
)
prompt
=
inputs
[
self
.
prompt_key
]
stop
=
inputs
.
get
(
"stop"
,
None
)
stop
=
inputs
.
get
(
"stop"
,
"stop"
)
print
(
f
"__call:{prompt}"
)
try
:
...
...
@@ -205,16 +210,18 @@ class FastChatOpenAILLMChain(RemoteRpcModel, Chain, ABC):
params
=
{
"stream"
:
streaming
,
"model"
:
self
.
model_name
,
"stop"
:
stop
}
out_str
=
""
for
stream_resp
in
self
.
completion_with_retry
(
messages
=
msg
,
**
params
):
role
=
stream_resp
[
"choices"
][
0
][
"delta"
]
.
get
(
"role"
,
""
)
token
=
stream_resp
[
"choices"
][
0
][
"delta"
]
.
get
(
"content"
,
""
)
history
+=
[[
prompt
,
token
]]
out_str
+=
token
history
[
-
1
]
=
[
prompt
,
out_str
]
answer_result
=
AnswerResult
()
answer_result
.
history
=
history
answer_result
.
llm_output
=
{
"answer"
:
token
}
answer_result
.
llm_output
=
{
"answer"
:
out_str
}
generate_with_callback
(
answer_result
)
else
:
...
...
@@ -239,10 +246,10 @@ if __name__ == "__main__":
chain
=
FastChatOpenAILLMChain
()
chain
.
set_api_key
(
"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"
)
chain
.
set_api_base_url
(
"https://api.openai.com/v1"
)
chain
.
call_model_name
(
"gpt-3.5-turbo"
)
#
chain.set_api_base_url("https://api.openai.com/v1")
#
chain.call_model_name("gpt-3.5-turbo")
answer_result_stream_result
=
chain
({
"streaming"
:
Fals
e
,
answer_result_stream_result
=
chain
({
"streaming"
:
Tru
e
,
"prompt"
:
"你好"
,
"history"
:
[]
})
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论