mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 13:03:50 +00:00
4.8.6 merge (#1943)
* Dataset collection forbid (#1885) * perf: tool call support same id * feat: collection forbid * feat: collection forbid * Inheritance Permission for apps (#1897) * feat: app schema define chore: references of authapp * feat: authApp method inheritance * feat: create and update api * feat: update * feat: inheritance Permission controller for app. * feat: abstract version of inheritPermission * feat: ancestorId for apps * chore: update app * fix: inheritPermission abstract version * feat: update folder defaultPermission * feat: app update api * chore: inheritance frontend * chore: app list api * feat: update defaultPermission in app deatil * feat: backend api finished * feat: app inheritance permission fe * fix: app update defaultpermission causes collaborator miss * fix: ts error * chore: adjust the codes * chore: i18n chore: i18n * chore: fe adjust and i18n * chore: adjust the code * feat: resume api; chore: rewrite update api and inheritPermission methods * chore: something * chore: fe code adjusting * feat: frontend adjusting * chore: fe code adjusting * chore: adjusting the code * perf: fe loading * format * Inheritance fix (#1908) * fix: SlideCard * fix: authapp did not return parent app for inheritance app * fix: fe adjusting * feat: fe adjusing * perf: inherit per ux * doc * fix: ts errors (#1916) * perf: inherit permission * fix: permission inherit * Workflow type (#1938) * perf: workflow type tmp workflow perf: workflow type feat: custom field config * perf: dynamic input * perf: node classify * perf: node classify * perf: node classify * perf: node classify * fix: workflow custom input * feat: text editor and customFeedback move to basic nodes * feat: community system plugin * fix: ts * feat: exprEval plugin * perf: workflow type * perf: plugin important * fix: default templates * perf: markdown hr css * lock * perf: fetch url * perf: new plugin version * fix: chat histories update * fix: collection paths invalid * perf: app card ui --------- Co-authored-by: Finley Ge <32237950+FinleyGe@users.noreply.github.com>
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"Add new": "Add new",
|
||||
"App": "App",
|
||||
"Click to resume": "Resume",
|
||||
"Code editor": "Code edit",
|
||||
"Export": "Export",
|
||||
"Field name": "Name",
|
||||
@@ -12,6 +13,7 @@
|
||||
"New Create": "Create New",
|
||||
"No data": "No data",
|
||||
"Rename": "Rename",
|
||||
"Resume": "Resume",
|
||||
"Running": "Running",
|
||||
"UnKnow": "Unknown",
|
||||
"Warning": "Warning",
|
||||
@@ -955,6 +957,7 @@
|
||||
}
|
||||
},
|
||||
"template": {
|
||||
"AI function": "AI function",
|
||||
"AI response switch tip": "If you wish the current node not to output content, you can turn off this switch. AI output content will not be displayed to the user, you can manually use 'AI response content' for special processing.",
|
||||
"AI support tool tip": "Supports function calls model, can better use tool invocation.",
|
||||
"Ai chat": "AI chat",
|
||||
@@ -1194,6 +1197,8 @@
|
||||
"error": {
|
||||
"Create failed": "Create failed",
|
||||
"fileNotFound": "File not found~",
|
||||
"inheritPermissionError": "Inherit permission Error",
|
||||
"missingParams": "Insufficient parameters",
|
||||
"team": {
|
||||
"overSize": "Team members exceed the limit"
|
||||
}
|
||||
@@ -1227,6 +1232,7 @@
|
||||
"Collaborator": "",
|
||||
"Default permission": "Default permission",
|
||||
"Manage": "Manage",
|
||||
"No InheritPermission": "The permission has been restricted, and the parent folder's permission will not be inherited,",
|
||||
"Not collaborator": "Not collaborator",
|
||||
"Owner": "Owner",
|
||||
"Permission": "Permission",
|
||||
@@ -1235,6 +1241,10 @@
|
||||
"Private Tip": "Only available to oneself",
|
||||
"Public": "Team",
|
||||
"Public Tip": "Available to all team members",
|
||||
"Remove InheritPermission Confirm": "This operation will cause to lose the current permission settings, whether to continue?",
|
||||
"Resume InheritPermission Confirm": "Whether to resume to inherit the parent folder's permission?",
|
||||
"Resume InheritPermission Failed": "Resume Failed",
|
||||
"Resume InheritPermission Success": "Resume Success",
|
||||
"Set Private": "Set as private",
|
||||
"Set Public": "Set as available to the team"
|
||||
},
|
||||
@@ -1509,6 +1519,7 @@
|
||||
}
|
||||
},
|
||||
"system": {
|
||||
"Concat us": "Concat",
|
||||
"Help Document": "Help document"
|
||||
},
|
||||
"template": {
|
||||
|
@@ -3,6 +3,9 @@
|
||||
"Common Dataset": "Common dataset",
|
||||
"Common Dataset Desc": "Can be built by importing files, web links, or manual entry",
|
||||
"Confirm to rebuild embedding tip": "Are you sure to switch the knowledge base index?\nSwitching index is a very heavy operation that requires re-indexing all the data in your knowledge base, which may take a long time. Please ensure that the remaining points in your account are sufficient.\n\nIn addition, you need to be careful to modify the applications that select this knowledge base to avoid mixing them with other index model knowledge bases.",
|
||||
"Disabled": "Disabled",
|
||||
"Enable": "Enable",
|
||||
"Enabled": "Enabled",
|
||||
"External file": "External file",
|
||||
"External file Dataset Desc": "You can import files from an external file library to build a knowledge base. Files are not stored twice",
|
||||
"External id": "File id",
|
||||
@@ -15,5 +18,9 @@
|
||||
"The knowledge base has indexes that are being trained or being rebuilt": "The knowledge base has indexes that are being trained or being rebuilt",
|
||||
"Website Dataset": "Web site",
|
||||
"Website Dataset Desc": "Web site synchronization allows you to use a web page link to build a dataset",
|
||||
"collection": {
|
||||
"Create update time": "Create/Update time",
|
||||
"Training type": "Training type"
|
||||
},
|
||||
"filename": "filename"
|
||||
}
|
||||
|
@@ -1,7 +1,8 @@
|
||||
{
|
||||
"permission": {
|
||||
"Set read permission": "Read permission",
|
||||
"Set write permission": "Write permission"
|
||||
"Set write permission": "Write permission",
|
||||
"Write": "Write"
|
||||
},
|
||||
"team": {
|
||||
"Add manager": "Add manager"
|
||||
|
@@ -1,6 +1,19 @@
|
||||
{
|
||||
"Add new input": "Add input",
|
||||
"Code": "Code",
|
||||
"Confirm delete field tip": "Confirm to delete the field?",
|
||||
"Custom input": "Custom input",
|
||||
"Edit input": "Edit input",
|
||||
"Field Name already exists": "Field name already exists",
|
||||
"Field description": "Field description",
|
||||
"Field description placeholder": "Describes the functionality of this input field, which affects the quality of model generation if the parameter is called for a tool",
|
||||
"Field required": "Required",
|
||||
"Field used as tool input": "As tool input",
|
||||
"Input description": "Input descriotion",
|
||||
"Only the Reference type is supported": "Only the Reference type is supported",
|
||||
"Optional value type": "Optional value type",
|
||||
"Optional value type tip": "One or more data types can be specified, and users can only select the configured type when adding fields in winter",
|
||||
"Tool input": "Tool",
|
||||
"code": {
|
||||
"Reset template": "Reset template",
|
||||
"Reset template confirm": "Are you sure to restore the code template? Be careful to save the current code."
|
||||
|
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"Add new": "新增",
|
||||
"App": "应用",
|
||||
"Click to resume": "点击恢复",
|
||||
"Code editor": "代码编辑",
|
||||
"Export": "导出",
|
||||
"Field name": "字段名",
|
||||
@@ -12,6 +13,7 @@
|
||||
"New Create": "新建",
|
||||
"No data": "暂无数据",
|
||||
"Rename": "重命名",
|
||||
"Resume": "恢复",
|
||||
"Running": "运行中",
|
||||
"UnKnow": "未知",
|
||||
"Warning": "提示",
|
||||
@@ -596,7 +598,8 @@
|
||||
"success": "开始同步"
|
||||
}
|
||||
},
|
||||
"training": {}
|
||||
"training": {
|
||||
}
|
||||
},
|
||||
"data": {
|
||||
"Auxiliary Data": "辅助数据",
|
||||
@@ -963,6 +966,7 @@
|
||||
}
|
||||
},
|
||||
"template": {
|
||||
"AI function": "AI能力",
|
||||
"AI response switch tip": "如果你希望当前节点不输出内容,可以关闭该开关。AI 输出的内容不会展示给用户,你可以手动的使用“AI 回复内容”进行特殊处理。",
|
||||
"AI support tool tip": "支持函数调用的模型,可以更好的使用工具调用。",
|
||||
"Ai chat": "AI 对话",
|
||||
@@ -1202,6 +1206,8 @@
|
||||
"error": {
|
||||
"Create failed": "创建失败",
|
||||
"fileNotFound": "文件找不到了~",
|
||||
"inheritPermissionError": "权限继承错误",
|
||||
"missingParams": "参数缺失",
|
||||
"team": {
|
||||
"overSize": "团队成员超出上限"
|
||||
}
|
||||
@@ -1235,6 +1241,7 @@
|
||||
"Collaborator": "协作者",
|
||||
"Default permission": "默认权限",
|
||||
"Manage": "管理",
|
||||
"No InheritPermission": "已限制权限,不再继承父级文件夹的权限,",
|
||||
"Not collaborator": "暂无协作者",
|
||||
"Owner": "创建者",
|
||||
"Permission": "权限",
|
||||
@@ -1243,6 +1250,10 @@
|
||||
"Private Tip": "仅自己可用",
|
||||
"Public": "团队",
|
||||
"Public Tip": "团队所有成员可使用",
|
||||
"Remove InheritPermission Confirm": "此操作会导致权限继承失效,是否进行?",
|
||||
"Resume InheritPermission Confirm": "是否恢复为继承父级文件夹的权限?",
|
||||
"Resume InheritPermission Failed": "恢复失败",
|
||||
"Resume InheritPermission Success": "恢复成功",
|
||||
"Set Private": "设为私有",
|
||||
"Set Public": "设为团队可用"
|
||||
},
|
||||
@@ -1517,6 +1528,7 @@
|
||||
}
|
||||
},
|
||||
"system": {
|
||||
"Concat us": "联系我们",
|
||||
"Help Document": "帮助文档"
|
||||
},
|
||||
"template": {
|
||||
|
@@ -3,6 +3,9 @@
|
||||
"Common Dataset": "通用知识库",
|
||||
"Common Dataset Desc": "可通过导入文件、网页链接或手动录入形式构建知识库",
|
||||
"Confirm to rebuild embedding tip": "确认为知识库切换索引?\n切换索引是一个非常重量的操作,需要对您知识库内所有数据进行重新索引,时间可能较长,请确保账号内剩余积分充足。\n\n此外,你还需要注意修改选择该知识库的应用,避免它们与其他索引模型知识库混用。",
|
||||
"Disabled": "已禁用",
|
||||
"Enable": "启用",
|
||||
"Enabled": "已启用",
|
||||
"External File": "外部文件库",
|
||||
"External file Dataset Desc": "可以从外部文件库导入文件构建知识库,文件不会进行二次存储",
|
||||
"External id": "文件阅读 ID",
|
||||
@@ -15,5 +18,9 @@
|
||||
"The knowledge base has indexes that are being trained or being rebuilt": "知识库有训练中或正在重建的索引",
|
||||
"Website Dataset": "Web 站点同步",
|
||||
"Website Dataset Desc": "Web 站点同步允许你直接使用一个网页链接构建知识库",
|
||||
"collection": {
|
||||
"Create update time": "创建/更新时间",
|
||||
"Training type": "训练模式"
|
||||
},
|
||||
"filename": "文件名"
|
||||
}
|
||||
|
@@ -1,6 +1,19 @@
|
||||
{
|
||||
"Add new input": "新增输入",
|
||||
"Code": "代码",
|
||||
"Confirm delete field tip": "确认删除该字段?",
|
||||
"Custom input": "自定义输入",
|
||||
"Edit input": "编辑输入",
|
||||
"Field Name already exists": "字段名已经存在",
|
||||
"Field description": "字段描述",
|
||||
"Field description placeholder": "描述该输入字段的功能,如果为工具调用参数,则该描述会影响模型生成的质量",
|
||||
"Field required": "必填",
|
||||
"Field used as tool input": "作为工具调用参数",
|
||||
"Input description": "字段描述",
|
||||
"Only the Reference type is supported": "仅支持引用类型",
|
||||
"Optional value type": "可选的数据类型",
|
||||
"Optional value type tip": "可以指定 1 个或多个数据类型,用户在冬天添加字段时,仅可选择配置的类型",
|
||||
"Tool input": "工具参数",
|
||||
"code": {
|
||||
"Reset template": "还原模板",
|
||||
"Reset template confirm": "确认还原代码模板?请注意保存当前代码。"
|
||||
|
Reference in New Issue
Block a user