Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
冯丙见
AI私人知识库
提交
00c07437
A
AI私人知识库
项目概览
冯丙见
/
AI私人知识库
与 Fork 源项目一致
Fork自
冯丙见 / AI绘图
通知
1
Star
128
Fork
113
代码
文件
提交
分支
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看板
提交
00c07437
编写于
8月 29, 2023
作者:
W
weixin_44463441
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Tue Aug 29 12:51:00 CST 2023 inscode
上级
e22509f7
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
12 addition
and
5 deletion
+12
-5
src/js/config.js
src/js/config.js
+3
-3
src/js/prompt.js
src/js/prompt.js
+9
-2
未找到文件。
src/js/config.js
浏览文件 @
00c07437
...
...
@@ -12,7 +12,7 @@ InsCode 的 Ins 是 Inspiration,意思是创作、寻找有灵感的代码。
InsCode主要功能包括:
云端开发环境,免费提供的 2 核/4 GB 开发环境;
丰富的模板,如 Python、Java、HTML/CSS/JS、PHP、Go
等
:
丰富的模板,如 Python、Java、HTML/CSS/JS、PHP、Go
等语言模板的支持
:
内置AI辅助编程,可以实现添加注释、解释代码、完成代码、寻找错误、优化代码、添加测试、代码提问等 AI 功能。
社区,开发的项目,可以发布到社区,每个发布的作品都是开源的,所以 InsCode 也是一个很好的学习平台。
快速部署,可以一键部署开发的应用,或者直接部署 GitHub 应用。部署后提供独立的域名访问,并永久在线。
...
...
@@ -22,7 +22,7 @@ InsCode主要功能包括:
除了以上产品介绍外,以下为用户后续问题相关的内容:
{context}
请根据
产品介绍、问题
相关信息,回答用户问题。
请根据
以上
相关信息,回答用户问题。
`
// 欢迎语,用户打开时自动发送给用户
...
...
@@ -61,7 +61,7 @@ export default {
"
default_prompt
"
:
default_prompt
,
"
max_request_len
"
:
"
2048
"
,
"
prompt_template
"
:
prompt_template
,
"
api_prompt_prefix
"
:
"
如果
用户问题不是技术问题,请直接回答不知道。
问题为:
"
,
"
api_prompt_prefix
"
:
"
如果
问题不是技术问题,请直接回答不知道。
\n
问题为:
"
,
"
show_profile_setting
"
:
false
,
"
index_url
"
:
index_url
,
"
index_name
"
:
"
inscode
"
,
...
...
src/js/prompt.js
浏览文件 @
00c07437
...
...
@@ -6,9 +6,16 @@ const getContextContent = (context, max_token=default_max_token) => {
let
len
=
context
.
length
let
contextContent
=
''
while
(
contextContent
.
length
<
max_token
&&
id
<
len
)
{
if
(
context
[
id
].
page_content
.
length
+
contextContent
.
length
<
max_token
)
{
contextContent
=
contextContent
+
'
\n
'
+
context
[
id
].
page_content
let
tempContext
=
context
[
id
].
page_content
if
(
tempContext
)
{
const
regex
=
/
(
<
([^
>
]
+
)
>
)
/ig
;
tempContext
=
tempContext
.
replace
(
regex
,
'
'
);
if
(
tempContext
.
length
+
contextContent
.
length
<
max_token
)
{
contextContent
=
contextContent
+
'
\n
'
+
tempContext
}
}
id
++
}
return
contextContent
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录