Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
J
jinchat-server
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
aigc-pioneer
jinchat-server
Commits
a62617f3
提交
a62617f3
authored
6月 15, 2023
作者:
imClumsyPanda
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'origin/dev' into dev
上级
b674c9a5
a70df988
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
27 行增加
和
4 行删除
+27
-4
bing_search.py
agent/bing_search.py
+1
-1
model_config.py
configs/model_config.py
+10
-2
FAQ.md
docs/FAQ.md
+4
-1
loader.py
models/loader/loader.py
+12
-0
没有找到文件。
agent/bing_search.py
浏览文件 @
a62617f3
...
...
@@ -7,7 +7,7 @@ from configs.model_config import BING_SEARCH_URL, BING_SUBSCRIPTION_KEY
def
bing_search
(
text
,
result_len
=
3
):
if
not
(
BING_SEARCH_URL
and
BING_SUBSCRIPTION_KEY
):
return
[{
"snippet"
:
"please set BING_SUBSCRIPTION_KEY and BING_SEARCH_URL in os ENV"
,
"title"
:
"env in
of not foul
d"
,
"title"
:
"env in
fo is not foun
d"
,
"link"
:
"https://python.langchain.com/en/latest/modules/agents/tools/examples/bing_search.html"
}]
search
=
BingSearchAPIWrapper
(
bing_subscription_key
=
BING_SUBSCRIPTION_KEY
,
bing_search_url
=
BING_SEARCH_URL
)
...
...
configs/model_config.py
浏览文件 @
a62617f3
...
...
@@ -163,7 +163,14 @@ flagging username: {FLAG_USER_NAME}
OPEN_CROSS_DOMAIN
=
False
# Bing 搜索必备变量
# 使用 Bing 搜索需要使用 Bing Subscription Key
# 具体申请方式请见 https://learn.microsoft.com/en-us/bing/search-apis/bing-web-search/quickstarts/rest/python
# 使用 Bing 搜索需要使用 Bing Subscription Key,需要在azure port中申请试用bing search
# 具体申请方式请见
# https://learn.microsoft.com/en-us/bing/search-apis/bing-web-search/create-bing-search-service-resource
# 使用python创建bing api 搜索实例详见:
# https://learn.microsoft.com/en-us/bing/search-apis/bing-web-search/quickstarts/rest/python
BING_SEARCH_URL
=
"https://api.bing.microsoft.com/v7.0/search"
# 注意不是bing Webmaster Tools的api key,
# 此外,如果是在服务器上,报Failed to establish a new connection: [Errno 110] Connection timed out
# 是因为服务器加了防火墙,需要联系管理员加白名单,如果公司的服务器的话,就别想了GG
BING_SUBSCRIPTION_KEY
=
""
\ No newline at end of file
docs/FAQ.md
浏览文件 @
a62617f3
...
...
@@ -146,7 +146,6 @@ $ pip install -r requirements.txt -i http://mirrors.aliyun.com/pypi/simple/
$
pip install
-r
requirements.txt
-i
https://pypi.tuna.tsinghua.edu.cn/simple/
```
Q12 启动api.py时upload_file接口抛出
`partially initialized module 'charset_normalizer' has no attribute 'md__mypyc' (most likely due to a circular import)`
这是由于 charset_normalizer模块版本过高导致的,需要降低低charset_normalizer的版本,测试在charset_normalizer==2.1.0上可用。
...
...
@@ -174,3 +173,7 @@ download_with_progressbar(url, tmp_path)
然后按照给定网址,如"https://paddleocr.bj.bcebos.com/PP-OCRv3/chinese/ch_PP-OCRv3_rec_infer.tar"手动下载文件,上传到对应的文件夹中,如“.paddleocr/whl/rec/ch/ch_PP-OCRv3_rec_infer/ch_PP-OCRv3_rec_infer.tar”.
---
Q14 调用api中的
`bing_search_chat`
接口时,报出
`Failed to establish a new connection: [Errno 110] Connection timed out`
这是因为服务器加了防火墙,需要联系管理员加白名单,如果公司的服务器的话,就别想了GG--!
models/loader/loader.py
浏览文件 @
a62617f3
...
...
@@ -30,6 +30,16 @@ class LoaderCheckPoint:
ptuning_dir
:
str
=
None
use_ptuning_v2
:
bool
=
False
# 如果开启了8bit量化加载,项目无法启动,参考此位置,选择合适的cuda版本,https://github.com/TimDettmers/bitsandbytes/issues/156
# 另一个原因可能是由于bitsandbytes安装时选择了系统环境变量里不匹配的cuda版本,
# 例如PATH下存在cuda10.2和cuda11.2,bitsandbytes安装时选择了10.2,而torch等安装依赖的版本是11.2
# 因此主要的解决思路是清理环境变量里PATH下的不匹配的cuda版本,一劳永逸的方法是:
# 0. 在终端执行`pip uninstall bitsandbytes`
# 1. 删除.bashrc文件下关于PATH的条目
# 2. 在终端执行 `echo $PATH >> .bashrc`
# 3. 删除.bashrc文件下PATH中关于不匹配的cuda版本路径
# 4. 在终端执行`source .bashrc`
# 5. 再执行`pip install bitsandbytes`
load_in_8bit
:
bool
=
False
is_llamacpp
:
bool
=
False
bf16
:
bool
=
False
...
...
@@ -99,6 +109,8 @@ class LoaderCheckPoint:
LoaderClass
=
AutoModelForCausalLM
# Load the model in simple 16-bit mode by default
# 如果加载没问题,但在推理时报错RuntimeError: CUDA error: CUBLAS_STATUS_ALLOC_FAILED when calling `cublasCreate(handle)`
# 那还是因为显存不够,此时只能考虑--load-in-8bit,或者配置默认模型为`chatglm-6b-int8`
if
not
any
([
self
.
llm_device
.
lower
()
==
"cpu"
,
self
.
load_in_8bit
,
self
.
is_llamacpp
]):
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论