bs.json 139 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660
  1. {
  2. "title": "NPCs",
  3. "prompt": "提示",
  4. "login": {
  5. "slogen": "灵活,易用,安全的企业级AI应用开发引擎和服务平台",
  6. "account": "账号",
  7. "password": "密码",
  8. "confirmPassword": "确认密码",
  9. "noAccountRegister": "没有账号,注册",
  10. "haveAccountLogin": "已有账号,登录",
  11. "loginButton": "登 录",
  12. "registerButton": "注 册",
  13. "document": "文档",
  14. "pleaseEnterAccount": "请填写账号",
  15. "pleaseEnterPassword": "请填写密码",
  16. "accountTooShort": "账号过短",
  17. "passwordTooShort": "请填写密码,至少6位",
  18. "passwordError": "密码必须包含字母、数字!",
  19. "passwordMismatch": "两次密码不一致",
  20. "registrationSuccess": "注册成功,请输入密码进行登录"
  21. },
  22. "menu": {
  23. "app": "聊天",
  24. "skills": "NPC",
  25. "knowledge": "知识库",
  26. "models": "模型",
  27. "system": "账号",
  28. "themeSwitch": "主题切换",
  29. "document": "文档",
  30. "logout": "退出",
  31. "logoutDescription": "退出登录",
  32. "forBestExperience": "为了您的良好体验,请在 PC 端访问该网站",
  33. "onlineDocumentation": "在线文档"
  34. },
  35. "system": {
  36. "userManagement": "用户管理",
  37. "roleManagement": "角色管理",
  38. "systemConfiguration": "系统配置",
  39. "username": "用户名",
  40. "confirmDisable": "确认禁用该用户?",
  41. "roleSelect": "角色选择",
  42. "roleList": "角色列表",
  43. "confirmText": "是否删除",
  44. "roleName": "角色名称",
  45. "skillAuthorization": "能力授权",
  46. "knowledgeAuthorization": "知识库授权",
  47. "skillName": "能力名称",
  48. "creator": "创建人",
  49. "usePermission": "使用权限",
  50. "managePermission": "管理权限",
  51. "roleNamePrompt": "角色名称不能超过50字符",
  52. "roleNameRequired": "角色名称不能为空",
  53. "roleNameExists": "角色名称已存在",
  54. "parameterConfig": "参数配置",
  55. "language": "语言"
  56. },
  57. "skills": {
  58. "manageTemplate": "管理技能模板",
  59. "createNew": "新建技能",
  60. "customSkills": "自定义技能",
  61. "chooseOnline": "选择上线版本",
  62. "executionSteps": "技能通过可视化的流程编排,明确任务执行步骤",
  63. "sceneTemplates": "我们提供场景模板供您使用和参考",
  64. "manageProjects": "在此页面管理您的技能,对技能上下线、编辑等等",
  65. "skillSearch": "搜索您需要的技能",
  66. "confirmDeleteSkill": "确认删除该技能?",
  67. "backToSkillList": "返回技能列表",
  68. "skillTemplateManagement": "技能模板管理,模板对所有用户可见,支持拖拽排序、删除操作",
  69. "templateName": "模板名称",
  70. "templateDescription": "模板描述",
  71. "confirmText": "是否确认删除该技能模板?",
  72. "skillSettings": "技能设置",
  73. "basicInfo": "基础信息",
  74. "skillName": "技能名称",
  75. "description": "描述",
  76. "parameterInfo": "参数信息",
  77. "advancedConfiguration": "高级配置",
  78. "nextStep": "下一步,高级配置",
  79. "skillNameRequired": "请填写技能名称",
  80. "skillNameTooLong": "技能名称过长,不要超过30字",
  81. "skillNameExists": "该名称已存在",
  82. "skillDescRequired": "请填写技能描述",
  83. "skillDescTooLong": "技能描述过长,不要超过200字",
  84. "errorTitle": "关键信息有误",
  85. "onlineFailure": "上线失败",
  86. "onlineSuccessful": "上线成功",
  87. "custom": "自定义",
  88. "skillTemplate": "技能模板",
  89. "skillTemplateChoose": "您可以从这里挑选一个模板开始,或者自定义高级模板",
  90. "createTemplate": "创建模板",
  91. "createSuccessTitle": "技能创建成功",
  92. "createFailureTitle": "创建失败",
  93. "createdBy": "创建用户",
  94. "offline": "下线",
  95. "online": "上线",
  96. "guideWords": "引导词",
  97. "currentVersion": "当前版本:",
  98. "importLocal": "导入本地组件",
  99. "save": "保存",
  100. "import": "导入",
  101. "export": "导出",
  102. "code": "代码",
  103. "simplify": "简化",
  104. "saveVersion": "另存为新版本",
  105. "deleteOrNot": "是否删除",
  106. "version": "版本",
  107. "saveSuccessful": "保存成功",
  108. "supportVersions": "支持分成多个版本分支,分别进行开发以及版本间的比较。",
  109. "guideQuestions50": "引导问题最多50个字符",
  110. "promptWords1000": "提示词最多为1000个字符",
  111. "contactAdmin": "请联系管理员上线NPC",
  112. "deleteSure": "确认删除该工具?"
  113. },
  114. "chat": {
  115. "newChat": "新建会话",
  116. "selectChat": "选择一个会话开始对话",
  117. "inputPlaceholder": "请输入问题",
  118. "uploadFileTooltip": "上传文件",
  119. "sendTooltip": "发送",
  120. "skillTempsTitle": "能力选择",
  121. "skillTempsDesc": "选择一个您想使用的线上能力",
  122. "forms": "表单",
  123. "networkError": "网络连接出现错误,请尝试以下方法",
  124. "networkErrorList1": "操作不要过快",
  125. "networkErrorList2": "刷新页面",
  126. "networkErrorList3": "检查后台是否启动",
  127. "buildError": "您好像缺少了某些配置",
  128. "connectionbreakTip": "链接异常断开:",
  129. "connectionbreak": "网络断开!",
  130. "copyTip": "内容已复制",
  131. "noAccess": "因权限不足,该答案剔除了无权查看的内容",
  132. "source": "参考来源",
  133. "file": "文件",
  134. "filePrsing": "文件正在解析中",
  135. "sourceTooltip": "来源段落",
  136. "filterLabel": "筛选标签",
  137. "tooltipText": "系统自动根据答案生成关键信息标签,也可手动增删标签,系统根据标签计算各个文件及段落相关性。",
  138. "customLabel": "自定义",
  139. "addCustomLabel": "+自定义",
  140. "sourceDocumentsLabel": "来源文档",
  141. "downloadPDFTooltip": "下载双层PDF",
  142. "downloadOriginalTooltip": "下载原文件",
  143. "noMatchedFilesMessage": "无匹配的源文件",
  144. "fileStorageFailure": " 文件地址失效!",
  145. "confirmDeleteChat": "确认删除该会话?",
  146. "roundOver": "本轮结束",
  147. "chatDialogTip": "设置提示模板中定义的输入变量。与代理和链互动"
  148. },
  149. "model": {
  150. "modelConfiguration": "模型配置",
  151. "modelName": "模型名称",
  152. "modelConfigLabel": "模型配置",
  153. "modelConfigExplanationLink": "模型配置参数说明",
  154. "jsonFormatError": "JSON格式有误",
  155. "onlineStatus": "已上线",
  156. "offlineStatus": "未上线",
  157. "exceptionStatus": "异常",
  158. "warningTooltip": "处理异常",
  159. "inProgressOnlineStatus": "上线中",
  160. "inProgressOfflineStatus": "下线中",
  161. "confirmModelOffline": "是否确认下线该模型,下线后使用该模型服务的能力将无法正常工作",
  162. "confirmOfflineButtonText": "下线",
  163. "modelManagement": "模型管理",
  164. "modelFineTune": "模型Finetune",
  165. "refreshButton": "刷新",
  166. "gpuResourceUsage": "GPU资源使用情况",
  167. "modelCollectionCaption": "模型集合",
  168. "machine": "机器",
  169. "serviceAddress": "服务地址",
  170. "status": "状态",
  171. "online": "上线",
  172. "offline": "下线",
  173. "gpuResourceUsageTitle": "GPU资源使用情况",
  174. "gpuNumber": "GPU序号",
  175. "gpuID": "GPU-ID",
  176. "totalMemory": "总显存",
  177. "freeMemory": "空余显存",
  178. "gpuUtilization": "GPU利用率",
  179. "machineName": "服务名",
  180. "addOne": "加一条"
  181. },
  182. "flow": {
  183. "unsavedChangesConfirmation": "您有未保存的更改,确定要离开吗?",
  184. "leave": "离开",
  185. "leaveAndSave": "离开并保存",
  186. "simplifyConfig": "简化配置",
  187. "simplify": "简化",
  188. "notifications": "通知",
  189. "exit": "退出",
  190. "import": "导入",
  191. "export": "导出",
  192. "code": "代码",
  193. "searchComponent": "查找组件",
  194. "knowledgeBaseSelection": "知识库选择",
  195. "searchKnowledgeBase": "搜索知识库",
  196. "minimumParamSetDescription": "您可以在此设置能力所需的最小参数集",
  197. "paramList": "参数列表",
  198. "saveConfig": "保存配置",
  199. "componentLabel": "组件",
  200. "aliasLabel": "别名",
  201. "editAlias": "修改别名",
  202. "parameterLabel": "参数",
  203. "notification": "消息",
  204. "noNewNotifications": "没有新的通知",
  205. "skillName": "能力名",
  206. "nameTooLong": "名称过长",
  207. "skillDescription": "能力描述",
  208. "enterVarName": "请输入变量名",
  209. "varNameExists": "变量名重复",
  210. "text": "文本",
  211. "dropdown": "下拉框",
  212. "maxLength": "最大长度",
  213. "options": "选项",
  214. "variableName": "变量名",
  215. "varOptionRequired": "请输入选项内容",
  216. "optionRepeated": "选项重复",
  217. "incorrectIdFormatMessage": "ID格式有误(包含字符和数字组成的5位字符)",
  218. "idAlreadyExistsMessage": "该ID已存在"
  219. },
  220. "lib": {
  221. "enterLibraryName": "请输入知识库名称",
  222. "libraryNameLimit": "知识库名称字数不得超过30字",
  223. "selectModel": "请选择一个模型",
  224. "nameExists": "该名称已存在",
  225. "descriptionLimit": "知识库描述字数不得超过200字",
  226. "createLibrary": "创建知识库",
  227. "libraryName": "知识库名称",
  228. "description": "描述",
  229. "model": "模型",
  230. "fileData": "文件数据",
  231. "structuredData": "结构化数据",
  232. "libraryCollection": "知识库集合",
  233. "createUser": "创建用户",
  234. "details": "详情",
  235. "confirmDeleteLibrary": "确认删除该知识库?\n删除后数据无法恢复,请确认!",
  236. "fileList": "文件列表",
  237. "systemIntegration": "系统对接",
  238. "upload": "上传",
  239. "fileName": "文件名称",
  240. "status": "状态",
  241. "uploadTime": "上传时间",
  242. "parseFailed": "解析失败",
  243. "parsing": "解析中",
  244. "completed": "完成",
  245. "confirmDeleteFile": "确认删除该文件?",
  246. "myKnowledge": "我的知识库",
  247. "createNew": "新建",
  248. "folder": "文件夹",
  249. "universalKnowledgeBase": "通用知识库",
  250. "noKnowledgeBase": "还没有知识库,快快创建一个吧~",
  251. "rootDirectory": "根目录",
  252. "createOneKnowledge": "创建一个知识库",
  253. "webSite": "Web站点同步",
  254. "knowledgeType": "知识库类型",
  255. "knowledgeDescription": "可通过导入文件、网页链接或手动录入形式构建知识库",
  256. "webSiteDescription": "Web站点同步允许你直接使用一个网页链接构建知识库",
  257. "baseSet": "基本设置",
  258. "default": "默认",
  259. "localUpload": "本地上传",
  260. "aIGeneration": "AI生成",
  261. "name": "名称",
  262. "giveAName": "取个名字",
  263. "describe": "请用一句话描述",
  264. "useModel": "使用模型",
  265. "cancel": "取消",
  266. "confirmCreation": "确定创建",
  267. "change": "更换",
  268. "rename": "重命名",
  269. "move": "移动",
  270. "createFolder": "创建文件夹",
  271. "createFolderDesc": "请输入文件夹名称",
  272. "createDataset": "创建手动数据集",
  273. "createDatasetDesc": "手动数据集允许创建一个空的容器装入数据",
  274. "synchronizationDesc": "确认开始同步数据? \n将会删除旧数据后重新获取,请确认!",
  275. "foldDesc": "这是一个文件夹",
  276. "noFold": "还没有文件夹,快快创建一个吧~",
  277. "selectFold": "请选择文件夹",
  278. "confirmDelete": "确定删除",
  279. "dataset": "数据集",
  280. "config": "配置",
  281. "queueLen": "排队长度",
  282. "allKnowledge": "全部数据集",
  283. "file": "文件",
  284. "dataTotal": "数据总量",
  285. "lastUpdate": "最后更新时间",
  286. "state": "状态",
  287. "syncData": "同步数据",
  288. "manualDataset": "手动数据集",
  289. "textDataset": "文本数据集",
  290. "tableDataset": "表格数据集",
  291. "createImport": "新建/导入",
  292. "knowledge": "知识库",
  293. "web": "网站",
  294. "knowledgeId": "知识库ID",
  295. "knowledgeImg": "知识库头像",
  296. "indexModel": "索引模型",
  297. "dataUp": "单条数据上限",
  298. "introduce": "介绍"
  299. },
  300. "code": {
  301. "editPythonCodeDescription": "编辑你的 Python 代码此代码片段接受模块导入和一个函数定义。确保您的函数返回一个字符串。",
  302. "editCode": "编辑代码",
  303. "codeReadyToRun": "代码准备运行",
  304. "functionError": "您的函数中存在一个错误",
  305. "importsError": "您的导入有误",
  306. "errorOccurred": "出错了,请重试",
  307. "codeError": "这段代码有问题,请检查以下",
  308. "checkAndSave": "检查 & 保存",
  309. "export": "导出",
  310. "exportToJSON": "导出能力到json文件中",
  311. "keyInformationMissing": "您有一些关键信息没有填: ",
  312. "skillNameMissing": "请填写能力名称",
  313. "useOwnAPIKeys": "使用自己的API keys",
  314. "exportSkill": "导出能力",
  315. "uploadFile": "上传文件",
  316. "clickOrDragHere": "点击或将文件拖拽到这里上传",
  317. "dropFileHere": "将文件拖拽到这里上传",
  318. "delimiter": "切分符(多个以;分隔)",
  319. "splitLength": "切分文本长度",
  320. "smartSplit": "智能语义切分",
  321. "manualSplit": "手动设置切分",
  322. "delimiterPlaceholder": "切分符号",
  323. "splitSizePlaceholder": "切分大小",
  324. "complete": "完成",
  325. "setSplitSize": "请设置文件切分大小",
  326. "selectFileToUpload": "请先选择文件上传",
  327. "fileSizeExceedsLimit": "文件不能超50M",
  328. "file": "文件",
  329. "sizeExceedsLimit": "超过50M",
  330. "editDictionary": "编辑词典",
  331. "exportCodeDialogTip": "生成代码,将流程集成到外部应用程序中 (打开此页面前请先build能力)。",
  332. "chunkOverlap": "切分文本重叠长度"
  333. },
  334. "report": {
  335. "reportTemplate": "报告模板",
  336. "reportDescription": "报告生成描述...",
  337. "newButton": "新建",
  338. "importButton": "导入",
  339. "start": "开始",
  340. "formSettings": "表单设置",
  341. "requiredLabel": "必填",
  342. "isRequired": "是必填项",
  343. "fileRequired": "当前文件为空",
  344. "selectComponent": "选择一个组件",
  345. "varLength": "长度不能超过"
  346. },
  347. "status": {
  348. "1004": "该能力已被删除",
  349. "1008": "当前能力未上线,无法直接对话",
  350. "1005": ""
  351. },
  352. "all": "全部",
  353. "finetune": {
  354. "modelName": "模型名称",
  355. "rtService": "RT服务",
  356. "createTime": "创建时间",
  357. "noData": "暂无数据",
  358. "selectModel": "选择模型以查看详情.",
  359. "trainingLogs": "训练日志",
  360. "evaluationReport": "评估报告",
  361. "all": "全部",
  362. "successful": "成功",
  363. "inProgress": "进行中",
  364. "failedAborted": "失败/中止",
  365. "createTrainingTask": "创建训练任务",
  366. "rtServiceManagement": "服务管理",
  367. "confirmCancelPublish": "该模型正处于上线状态,是否仍然取消发布",
  368. "confirmDeleteModel": "确认要删除模型 {{name}} 吗?",
  369. "confirmDeleteOnlineModel": "该模型已上线,确认要删除模型 {{name}} 吗?",
  370. "confirmDeletePublishedModel": "该模型已发布,确认要删除模型 {{name}} 吗?",
  371. "confirmStopTraining": "确认停止该训练?",
  372. "trainingInProgress": "训练中",
  373. "trainingFailed": "训练失败",
  374. "taskAborted": "任务中止",
  375. "trainingSuccess": "训练成功",
  376. "publishSuccess": "发布成功",
  377. "taskId": "任务ID",
  378. "baseModel": "基准模型",
  379. "runtime": "运行时长",
  380. "formatTime": "hh小时mm分ss秒",
  381. "creator": "创建人",
  382. "dataset": "数据集",
  383. "cancelPublish": "取消发布",
  384. "publish": "发布",
  385. "stop": "中止",
  386. "uploadDataset": "上传个人数据集",
  387. "downloadSampleFile": "下载示例文件",
  388. "customSampleSize": "自定义样本数(可选)",
  389. "customSampleSizeTooltip1": "该项为可选项:",
  390. "customSampleSizeTooltip2": "若不选中该选项,则选定的个人数据集与预置数据集的所有样本全部参与训练;",
  391. "customSampleSizeTooltip3": "若选中该选项,则用户可以自由指定不同数据集中参与训练的样本数量,若输入框内空置不填或填写数量大于该数据集总样本,则该数据集全部参与训练。",
  392. "presetDatasets": "预置数据集",
  393. "download": "下载",
  394. "sampleSize": "样本数",
  395. "userDatasets": "个人数据集",
  396. "gpuDesc": "训练占用的显卡号,多张卡用英文逗号分隔,例如0,1,2,3",
  397. "valRatioDesc": "验证集占比,如果取值大于0,每个epoch结束后会在验证集上算loss",
  398. "batchSizeDesc": "批处理大小(BatchSize)表示在每次训练迭代中使用的样本数。较大的批处理大小可以加速训练,但可能会导致显存过大;",
  399. "learningRateDesc": "学习率(LearningRate)是在梯度下降的过程中更新权重时的超参数,过高会导致模型难以收敛,过低则会导致模型收敛速度过慢;",
  400. "numEpochsDesc": "迭代次数(epoch),控制训练过程中的迭代轮数;可以根据loss曲线图判断模型是否收敛,如果loss还在下降没有平稳,可以进一步加大epoch",
  401. "maxSeqLenDesc": "指定最大的序列长度(默认为8192),输入+ 输出的长度不超过8192,否则会截断处理;",
  402. "cpuLoadDesc": "是否将部分参数和优化器load到cpu上(默认不开启,显存不够的时候可以开启),开启之后会占用内存,详细的数据可以参考资源消耗相关说明文档",
  403. "selectRTService": "请选择 RT 服务",
  404. "selectBaseModel": "请选择基准模型",
  405. "enterModelName": "模型名称中至少包含一个字母,可以由数字、字母和横线组成",
  406. "rtServiceTooltip": "选择目标基准模型所在的RT服务,Finetune模型训练完成后也将部署在同一个RT服务内。",
  407. "finetuneModelName": "Finetune模型名称",
  408. "trainingMethod": "训练方法",
  409. "fullFineTune": "全量微调",
  410. "freeze": "freeze微调",
  411. "lora": "lora微调",
  412. "parameterConfiguration": "参数配置",
  413. "parameterConfigurationTooltip": "参数配置建议及实验参考数据详见产品文档。",
  414. "parameter": "参数",
  415. "quantity": "数量",
  416. "description": "说明",
  417. "gpuResourceUsage": "GPU资源使用情况"
  418. },
  419. "confirmButton": "确定",
  420. "add": "添加",
  421. "back": "返回",
  422. "create": "创建",
  423. "delete": "删除",
  424. "deleteSuccess": "删除成功",
  425. "createTime": "创建时间",
  426. "updateTime": "更新时间",
  427. "success": "保存成功",
  428. "edit": "编辑",
  429. "enable": "启用",
  430. "disable": "禁用",
  431. "close": "关闭",
  432. "cancel": "取消",
  433. "save": "保存",
  434. "operations": "操作",
  435. "previousPage": "上一页",
  436. "nextPage": "下一页",
  437. "formatError": "格式错误",
  438. "port": "服务端口",
  439. "cancle": "取消",
  440. "tip": "提示",
  441. "deleteAssistant": "确认删除该NPC?",
  442. "build": {
  443. "create": "创建",
  444. "assistant": "NPC",
  445. "skill": "技能",
  446. "tools": "工具",
  447. "save": "保存",
  448. "online": "上线",
  449. "retry": "重试",
  450. "use": "使用",
  451. "useAll": "全部使用",
  452. "assistantConfiguration": "NPC配置",
  453. "createAssistant": "新建NPC",
  454. "assistantPortrait": "NPC画像",
  455. "portraitOptimization": "NPC画像优化",
  456. "automaticOptimization": "自动优化",
  457. "createDescription": "通过描述角色和任务来创建你的NPC",
  458. "nextDescription": "NPC可以调用多个技能和工具",
  459. "searchAssistant": "搜索您需要的NPC",
  460. "manageAssistant": "在此页面管理您的NPC,对NPC上下线、编辑等等",
  461. "establishAssistant": "创建NPC",
  462. "assistantName": "NPC名称",
  463. "giveAssistantName": "给NPC取一个名字",
  464. "whatWant": "你希望NPC的角色是什么,具体完成什么任务?",
  465. "example": "示例",
  466. "exampleOne": "你是 XX,具有 XX 经验,擅长 XX,…",
  467. "exampleTwo": "你的任务是 XX ,需要按照以下步骤执行:",
  468. "automaticallyConfigurations": "自动为您选择相关配置",
  469. "prompt": "详细、具体地描述NPC与用户的交互方式,例如NPC的身份、完成任务的具体方法和步骤、回答问题时的语气以及应该注意什么问题等",
  470. "openingRemarks": "开场白",
  471. "guidingQuestions": "引导问题",
  472. "promptReplaced": "提示词已替换",
  473. "guideReplaced": "引导词已替换",
  474. "openingReplaced": "开场白已替换",
  475. "toolsReplaced": "工具已替换",
  476. "skillsReplaced": "技能已替换",
  477. "allReplaced": "已全部替换",
  478. "basicConfiguration": "基础配置",
  479. "modelConfiguration": "AI模型配置",
  480. "model": "模型",
  481. "temperature": "温度",
  482. "openingIntroduction": "开场引导",
  483. "openingStatement": "开场白",
  484. "assistantMessageFormat": "NPC将在每次对话开始时发送此信息,支持 Markdown 格式",
  485. "maximumPromptLength": "提示词最多为1000个字符",
  486. "recommendQuestionsForUsers": "为用户提供推荐问题,引导用户提问,超过3个时将随机选取3个",
  487. "maxCharacters50": "最多50个字符",
  488. "enterGuidingQuestions": "请输入引导问题",
  489. "knowledge": "知识",
  490. "knowledgeBase": "知识库",
  491. "autoCall": "自动调用",
  492. "callingMethod": "调用方式",
  493. "autoCallDescription": "每轮对话都会对添加的知识库进行检索召回。",
  494. "onDemandCall": "按需调用",
  495. "onDemandCallDescription": "在NPC画像(提示词)中提示调用 RecallKnowledge(可复制)方法,在有需要时才对知识库进行检索。",
  496. "createNewKnowledge": "新建知识库",
  497. "refresh": "刷新",
  498. "abilities": "能力",
  499. "skillDescription": "通过可视化界面实现复杂和稳定的业务流程编排,例如项目计划和报告分析",
  500. "selectKnowledgeBase": "请选择知识库",
  501. "searchBaseName": "搜索知识库名称",
  502. "debugPreview": "调试预览",
  503. "addTool": "添加工具",
  504. "search": "搜索",
  505. "empty": "空空如也",
  506. "onlineSA": "上线技能&NPC",
  507. "params": "参数",
  508. "added": "已添加",
  509. "add": "添加",
  510. "configurationUpdated": "配置已更新",
  511. "addSkill": "添加技能",
  512. "createSkill": "创建技能",
  513. "nameRequired": "名称不可为空",
  514. "nameMaxLength": "名称最多50个字符",
  515. "descMaxLength": "最多1000个字符",
  516. "editAssistant": "编辑NPC",
  517. "enterName": "给NPC取一个名字",
  518. "assistantDesc": "NPC描述",
  519. "enterDesc": "介绍NPC功能,描述在会话和NPC页面可见",
  520. "cancel": "取消",
  521. "confirm": "确认",
  522. "forBetter": "为了更好的NPC效果,描述需要大于20 个字",
  523. "forExample": "例如NPC的身份、完成任务的具体方法和步骤、回答问题时的语气以及应该注意什么问题等"
  524. },
  525. "tools1": {
  526. "addTool": "添加工具",
  527. "createCustomTool": "自定义工具",
  528. "builtinTools": "内置工具",
  529. "customTools": "自定义工具",
  530. "search": "搜索",
  531. "empty": "空空如也",
  532. "manageCustomTools": "在此页面管理您的自定义工具,对自定义工具创建、编辑等等",
  533. "name": "名称",
  534. "enterToolName": "输入工具名称",
  535. "openapiSchema": "OpenAPI Schema",
  536. "enterOpenAPISchema": "输入您的 OpenAPI schema",
  537. "importFromUrl": "从 URL 导入",
  538. "examples": "示例",
  539. "weatherJson": "天气(JSON)",
  540. "petShopYaml": "宠物商店(YAML)",
  541. "authenticationType": "鉴权方式",
  542. "authType": "认证类型",
  543. "none": "无",
  544. "apiKey": "API Key",
  545. "basic": "Basic",
  546. "bearer": "Bearer",
  547. "availableTools": "可用工具",
  548. "description": "描述",
  549. "method": "方法",
  550. "path": "路径",
  551. "delete": "删除",
  552. "cancel": "取消",
  553. "save": "保存"
  554. },
  555. "test": {
  556. "test": "测试",
  557. "addTest": "请先填写测试用例",
  558. "uploadTest": "上传测试用例",
  559. "explain": "为测试用例是当前组件的输入,只支持 txt 文件,最多 20 行",
  560. "testRun": "测试运行",
  561. "testCase": "测试用例",
  562. "run": "运行",
  563. "downloadResults": "下载运行结果",
  564. "testCases": "输入测试用例...",
  565. "parametersAndValues": "参数和值",
  566. "parameter": "参数",
  567. "value": "值",
  568. "result": "测试结果",
  569. "outResultPlaceholder": "点击按钮,输出结果"
  570. },
  571. "agents": {
  572. "AgentInitializer": {
  573. "display_name": "AgentInitializer",
  574. "description": "以大语言模型LLM和工具来构建零样本Agent。",
  575. "description_url": "",
  576. "template": {
  577. "input_node": {
  578. "display_name": "预设问题"
  579. },
  580. "llm": {
  581. "display_name": "大语言模型LLM"
  582. },
  583. "memory": {
  584. "display_name": "记忆"
  585. },
  586. "tools": {
  587. "display_name": "工具"
  588. },
  589. "agent": {
  590. "display_name": "Agent",
  591. "options": [
  592. "zero-shot-react-description",
  593. "react-docstore",
  594. "self-ask-with-search",
  595. "conversational-react-description",
  596. "openai-functions",
  597. "openai-multi-functions"
  598. ]
  599. }
  600. }
  601. },
  602. "CSVAgent": {
  603. "display_name": "CSVAgent",
  604. "description": "用于创建解析处理CSV类型文件的Agent",
  605. "description_url": "",
  606. "template": {
  607. "input_node": {
  608. "display_name": "预设问题"
  609. },
  610. "llm": {
  611. "display_name": "大语言模型LLM"
  612. },
  613. "path": {
  614. "display_name": "路径"
  615. },
  616. "format_instructions": {
  617. "display_name": "格式说明",
  618. "value": "使用以下格式:\n\n问题:您必须回答的输入问题\n思考:您应该始终考虑要做什么\n操作:要执行的操作,应该是[{tool_names}]之一\n操作输入:操作的输入\n观察:操作的结果\n...(这个思考/操作/操作输入/观察可以重复N次)\n思考:我现在知道最终答案\n最终答案:原始输入问题的最终答案"
  619. },
  620. "input_variables": {
  621. "display_name": "输入变量",
  622. "value": [
  623. "df_head",
  624. "input",
  625. "agent_scratchpad"
  626. ]
  627. },
  628. "prefix": {
  629. "display_name": "前缀提示词",
  630. "value": "\n您正在使用Python中的pandas数据框。数据框的名称是 `df`。\n您应该使用下面的工具来回答您提出的问题:"
  631. },
  632. "suffix": {
  633. "display_name": "后缀",
  634. "value": "\n这是 `print(df.head())` 的结果:\n{df_head}\n\n开始吧!\n问题:{input}\n{agent_scratchpad}"
  635. }
  636. }
  637. },
  638. "ChatglmFunctionsAgent": {
  639. "display_name": "ChatGLM3FunctionsAgent",
  640. "description": "利用ChatGLM3的FunctionsCall功能构建代理实现工具调用(目前支持开源的chatglm3-6b模型)。",
  641. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/QjCgwNtiFiFOGJkpX0acZXHjnXb",
  642. "template": {
  643. "input_node": {
  644. "display_name": "预设问题"
  645. },
  646. "llm": {
  647. "display_name": "大语言模型LLM"
  648. },
  649. "tools": {
  650. "display_name": "工具"
  651. }
  652. }
  653. },
  654. "JsonAgent": {
  655. "display_name": "JsonAgent",
  656. "description": "从大语言模型LLM和工具构建处理JSON文件的Agent。",
  657. "description_url": "",
  658. "template": {
  659. "input_node": {
  660. "display_name": "预设问题"
  661. },
  662. "llm": {
  663. "display_name": "大语言模型LLM"
  664. },
  665. "toolkit": {
  666. "display_name": "工具包"
  667. }
  668. }
  669. },
  670. "LLMFunctionsAgent": {
  671. "display_name": "LLMFunctionsAgent",
  672. "description": "适配了Qwen模型与OpenAI模型,目前我们测试下来Qwen1.8B可以实现较好的Function Call效果。",
  673. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/Q47Lwy7gSiQzI2kcOl2cjuMTnPg",
  674. "template": {
  675. "input_node": {
  676. "display_name": "预设问题"
  677. },
  678. "llm": {
  679. "display_name": "大语言模型LLM"
  680. },
  681. "tools": {
  682. "display_name": "工具"
  683. }
  684. }
  685. },
  686. "SQLAgent": {
  687. "display_name": "SQL Agent",
  688. "description": "SQLAgent是专用于与SQL数据库交互的Agent,它能够将用户用自然语言描述的需求转换成SQL查询语句以及计算逻辑。",
  689. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/C7zOwP0lniKAY9k1hiQccBTmnkb",
  690. "template": {
  691. "input_node": {
  692. "display_name": "预设问题"
  693. },
  694. "llm": {
  695. "display_name": "大语言模型LLM"
  696. },
  697. "database_uri": {
  698. "display_name": "数据库URI"
  699. },
  700. "format_instructions": {
  701. "display_name": "格式说明",
  702. "value": "使用以下格式:\n\n问题:您必须回答的输入问题\n思考:您应该始终考虑要做什么\n操作:要执行的操作,应该是[{tool_names}]之一\n操作输入:操作的输入\n观察:操作的结果\n...(这个思考/操作/操作输入/观察可以重复N次)\n思考:我现在知道最终答案\n最终答案:原始输入问题的最终答案"
  703. },
  704. "input_variables": {
  705. "display_name": "输入变量",
  706. "value": [
  707. "input",
  708. "agent_scratchpad"
  709. ]
  710. },
  711. "prefix": {
  712. "display_name": "前缀提示词",
  713. "value": "您是一个与SQL数据库交互的代理。\n给定一个输入问题,请创建一个语法正确的{dialect}查询,然后查看查询的结果并返回答案。\n除非用户指定要获取的特定示例数,否则始终限制查询至多返回{top_k}个结果。\n您可以按相关列对结果进行排序,以返回数据库中最有趣的示例。\n永远不要查询特定表的所有列,只有在给定问题的情况下才请求相关列。\n您可以使用与数据库交互的工具。\n只使用下面的工具。只使用下面工具返回的信息构建最终答案。\n在执行查询之前,务必仔细检查您的查询。如果在执行查询时出错,请重新编写查询并重试。\n\n不要对数据库进行任何DML语句(INSERT,UPDATE,DELETE,DROP等)。\n\n如果问题似乎与数据库无关,只需返回 '我不知道' 作为答案。"
  714. },
  715. "suffix": {
  716. "display_name": "后缀",
  717. "value": "开始吧!\n\n问题:{input}\n思考:我应该查看数据库中的表,看看我可以查询什么。然后,我应该查询最相关表的模式。\n{agent_scratchpad}"
  718. }
  719. }
  720. },
  721. "VectorStoreAgent": {
  722. "display_name": "VectorStoreAgent",
  723. "description": "从矢量存储构建代理。",
  724. "description_url": "",
  725. "template": {
  726. "input_node": {
  727. "display_name": "预设问题"
  728. },
  729. "llm": {
  730. "display_name": "大语言模型LLM"
  731. },
  732. "vectorstoreinfo": {
  733. "display_name": "矢量数据库信息"
  734. }
  735. }
  736. },
  737. "VectorStoreRouterAgent": {
  738. "display_name": "VectorStoreRouterAgent",
  739. "description": "从矢量数据库路由器构建代理。",
  740. "description_url": "",
  741. "template": {
  742. "input_node": {
  743. "display_name": "预设问题"
  744. },
  745. "llm": {
  746. "display_name": "大语言模型LLM"
  747. },
  748. "vectorstoreroutertoolkit": {
  749. "display_name": "矢量存储路由器工具包"
  750. }
  751. }
  752. },
  753. "ZeroShotAgent": {
  754. "display_name": "通用Agent",
  755. "description": "无需提供任何样本数据或案例,使用大语言模型LLM和工具直接构建通用Agent。使用ReAct理论构架Agent提示词",
  756. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/QvlnwlFmWi7allkYF8ycSYk5nlh",
  757. "template": {
  758. "input_node": {
  759. "display_name": "预设问题"
  760. },
  761. "llm": {
  762. "display_name": "大语言模型LLM"
  763. },
  764. "tools": {
  765. "display_name": "工具"
  766. },
  767. "format_instructions": {
  768. "display_name": "格式说明",
  769. "value": "使用以下格式:\n\n问题:您必须回答的输入问题\n思考:您应该始终考虑要做什么\n操作:要执行的操作,应该是一种[{tool_names}]之一\n操作输入:操作的输入\n观察:操作的结果\n...(这个思考/操作/操作输入/观察可以重复N次)\n思考:我现在知道最终答案\n最终答案:原始输入问题的最终答案"
  770. },
  771. "input_variables": {
  772. "display_name": "输入变量"
  773. },
  774. "prefix": {
  775. "display_name": "前缀提示词",
  776. "value": "尽力回答以下问题。您可以使用以下工具:"
  777. },
  778. "suffix": {
  779. "display_name": "后缀",
  780. "value": "开始吧!\n\n问题:{input}\n思考:{agent_scratchpad}"
  781. }
  782. },
  783. "output_types":[
  784. "通用Agent"
  785. ]
  786. }
  787. },
  788. "autogen_roles": {
  789. "AutoGenAssistant": {
  790. "display_name": "自动生成NPC",
  791. "description": "NPC代理,设计用于使用大语言模型LLM解决任务。",
  792. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/Yz5GwMpO7ioj8nkRSZlcsriXnJ3",
  793. "template": {
  794. "model_name": {
  795. "display_name": "模型名称"
  796. },
  797. "name": {
  798. "display_name": "名称"
  799. },
  800. "openai_api_base": {
  801. "display_name": "openai_api_base"
  802. },
  803. "openai_api_key": {
  804. "display_name": "openai_api_key"
  805. },
  806. "openai_proxy": {
  807. "display_name": "openai_proxy"
  808. },
  809. "system_message": {
  810. "display_name": "系统消息"
  811. },
  812. "temperature": {
  813. "display_name": "生成自由度(越接近1自由度越高,越接近0自由度越低)"
  814. }
  815. },
  816. "output_types":[
  817. "自动生成NPC"
  818. ]
  819. },
  820. "AutoGenCoder": {
  821. "display_name": "自动生成编码器",
  822. "description": "Coder的代理,可以执行代码到其他代理。",
  823. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/Yz5GwMpO7ioj8nkRSZlcsriXnJ3",
  824. "template": {
  825. "name": {
  826. "display_name": "名称"
  827. },
  828. "system_message": {
  829. "display_name": "系统消息"
  830. }
  831. },
  832. "output_types":[
  833. "自动生成编码器"
  834. ]
  835. },
  836. "AutoGenCustomRole": {
  837. "display_name": "自动生成自定义角色",
  838. "description": "可以使用langchain代理和链的自定义代理。",
  839. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/Yz5GwMpO7ioj8nkRSZlcsriXnJ3",
  840. "template": {
  841. "func": {
  842. "display_name": "函数"
  843. },
  844. "name": {
  845. "display_name": "名称"
  846. },
  847. "system_message": {
  848. "display_name": "系统消息"
  849. }
  850. },
  851. "output_types":[
  852. "自动生成自定义角色"
  853. ]
  854. },
  855. "AutoGenGroupChatManager": {
  856. "display_name": "自动生成群聊管理器",
  857. "description": "一个可以管理多个代理的群聊管理器代理。",
  858. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/Yz5GwMpO7ioj8nkRSZlcsriXnJ3",
  859. "template": {
  860. "agents": {
  861. "display_name": "代理"
  862. },
  863. "max_round": {
  864. "display_name": "最大轮次"
  865. },
  866. "model_name": {
  867. "display_name": "模型名称"
  868. },
  869. "name": {
  870. "display_name": "名称",
  871. "value": "chat_manage"
  872. },
  873. "openai_api_base": {
  874. "display_name": "openai_api_base"
  875. },
  876. "openai_api_key": {
  877. "display_name": "openai_api_key"
  878. },
  879. "openai_proxy": {
  880. "display_name": "openai_proxy"
  881. },
  882. "system_message": {
  883. "display_name": "系统消息"
  884. },
  885. "temperature": {
  886. "display_name": "生成自由度(越接近1自由度越高,越接近0自由度越低)"
  887. }
  888. },
  889. "output_types":[
  890. "自动生成群聊管理器"
  891. ]
  892. },
  893. "AutoGenUser": {
  894. "display_name": "自动生成用户",
  895. "description": "用户的代理,可以向其他代理提供反馈。",
  896. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/Yz5GwMpO7ioj8nkRSZlcsriXnJ3",
  897. "template": {
  898. "human_input_mode": {
  899. "display_name": "人类输入模式"
  900. },
  901. "max_consecutive_auto_reply": {
  902. "display_name": "最大连续自动回复"
  903. },
  904. "name": {
  905. "display_name": "名称",
  906. "value": "chat_manage"
  907. },
  908. "system_message": {
  909. "display_name": "系统消息"
  910. }
  911. },
  912. "output_types":[
  913. "自动生成用户"
  914. ]
  915. }
  916. },
  917. "chains": {
  918. "APIChain": {
  919. "display_name": "API工作链",
  920. "description": "APIChain组件可以让使用者用自然语言与API进行交互,并得到最终响应结果。",
  921. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/SvxJwEMW5icH9nkI6JicwpUsnvg",
  922. "template": {
  923. "api_response_prompt": {
  924. "display_name": "api响应提示"
  925. },
  926. "api_url_prompt": {
  927. "display_name": "api URL提示"
  928. },
  929. "input_node": {
  930. "display_name": "预设问题"
  931. },
  932. "llm": {
  933. "display_name": "大语言模型LLM"
  934. },
  935. "api_docs": {
  936. "display_name": "api文档"
  937. },
  938. "headers": {
  939. "display_name": "头部"
  940. }
  941. },
  942. "output_types":[
  943. "API工作链"
  944. ]
  945. },
  946. "AutoGenChain": {
  947. "display_name": "自动生成工作链",
  948. "description": "AutoGen是一个支持自定义的通用多智能体框架,它提供了一种新颖的问题解决思路,让多个智能体能够通过类似“群聊”的方式来解决较复杂的问题。人类在解决问题时,也通常会使用讨论的方式。",
  949. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/Yz5GwMpO7ioj8nkRSZlcsriXnJ3",
  950. "template": {
  951. "input_node": {
  952. "display_name": "预设问题"
  953. },
  954. "memory": {
  955. "display_name": "记忆"
  956. },
  957. "recipient": {
  958. "display_name": "AutogenRole"
  959. },
  960. "user_proxy_agent": {
  961. "display_name": "用户代理"
  962. }
  963. },
  964. "output_types":[
  965. "自动生成工作链"
  966. ]
  967. },
  968. "CombineDocsChain": {
  969. "display_name": "合并文档工作链",
  970. "description": "组件是合并文档和问题的链,可以连接RetrievalQA组件和大语言模型,从RetrievalQA组件处获取问题和检索到的文档,按照“Chain Type”参数,使用对应的策略与大语言模型进行交互问答。",
  971. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/UAdww1vgdihZ1GkZe0icGWksnDb",
  972. "template": {
  973. "document_prompt": {
  974. "display_name": "文档提示"
  975. },
  976. "llm": {
  977. "display_name": "大语言模型LLM"
  978. },
  979. "prompt": {
  980. "display_name": "提示词"
  981. },
  982. "chain_type": {
  983. "display_name": "链类型",
  984. "options": [
  985. "stuff",
  986. "map_reduce",
  987. "map_rerank",
  988. "refine"
  989. ]
  990. },
  991. "token_max": {
  992. "display_name": "最大Tokens"
  993. }
  994. },
  995. "output_types":[
  996. "合并文档工作链"
  997. ]
  998. },
  999. "ConversationChain": {
  1000. "display_name": "对话工作链",
  1001. "description": "在LLM最简工作链的基础上增加从记忆中加载上下文的链。",
  1002. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/J1klwIkS3iLJmTkFpMocaZoHndb",
  1003. "template": {
  1004. "input_node": {
  1005. "display_name": "预设问题"
  1006. },
  1007. "llm": {
  1008. "display_name": "大语言模型LLM"
  1009. },
  1010. "memory": {
  1011. "display_name": "记忆"
  1012. }
  1013. },
  1014. "output_types":[
  1015. "对话工作链"
  1016. ]
  1017. },
  1018. "ConversationalRetrievalChain": {
  1019. "display_name": "对话检索工作链",
  1020. "description": "在检索工作链组件的基础上,提供聊天历史组件,因此可以构建使用知识库与大语言模型进行问答的NPChat,且具有“记忆”。",
  1021. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/DIhDwN5mpiFMvokHEkNcXCdcn3Y",
  1022. "template": {
  1023. "combine_docs_chain_kwargs": {
  1024. "display_name": "提示词"
  1025. },
  1026. "condense_question_prompt": {
  1027. "display_name": "压缩问题提示"
  1028. },
  1029. "document_prompt": {
  1030. "display_name": "文档提示"
  1031. },
  1032. "input_node": {
  1033. "display_name": "预设问题"
  1034. },
  1035. "llm": {
  1036. "display_name": "大语言模型LLM"
  1037. },
  1038. "memory": {
  1039. "display_name": "记忆"
  1040. },
  1041. "retriever": {
  1042. "display_name": "检索器"
  1043. },
  1044. "chain_type": {
  1045. "display_name": "链类型",
  1046. "options": [
  1047. "stuff",
  1048. "map_reduce",
  1049. "map_rerank",
  1050. "refine"
  1051. ]
  1052. }
  1053. },
  1054. "output_types":[
  1055. "对话检索工作链"
  1056. ]
  1057. },
  1058. "DalleGeneratorChain": {
  1059. "display_name": "DalleGeneratorChain",
  1060. "description": "Implementation of dall-e generate images",
  1061. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/VPcowiAREijlXfksRaScA40in6c",
  1062. "template": {}
  1063. },
  1064. "LLMChain": {
  1065. "display_name": "LLM最简工作链",
  1066. "description": "LLMChain是一个简单、基础的链,可以使用LLMChain构建与大语言模型进行对话的NPChat。用户可以预先将提示词中相同、固定的部分设置为提示词模板,各类输入的内容如文字、文档等作为模板中的变量,由LLMChain将各类输入的内容与提示词模板进行组装,统一传递给大语言模型。",
  1067. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/WqIiwMB05iAGqUkyLMVcOjk2nUb",
  1068. "template": {
  1069. "input_node": {
  1070. "display_name": "预设问题"
  1071. },
  1072. "llm": {
  1073. "display_name": "大语言模型LLM"
  1074. },
  1075. "memory": {
  1076. "display_name": "记忆"
  1077. },
  1078. "prompt": {
  1079. "display_name": "提示词"
  1080. }
  1081. },
  1082. "output_types":[
  1083. "LLM最简工作链"
  1084. ]
  1085. },
  1086. "LLMCheckerChain": {
  1087. "display_name": "LLMCheckerChain",
  1088. "description_url": "",
  1089. "template": {
  1090. "input_node": {
  1091. "display_name": "预设问题"
  1092. },
  1093. "llm": {
  1094. "display_name": "大语言模型LLM"
  1095. }
  1096. },
  1097. "output_types":[
  1098. "LLMCheckerChain"
  1099. ]
  1100. },
  1101. "LLMMathChain": {
  1102. "display_name": "LLM数学工作链",
  1103. "description": "解释提示并执行Python代码进行数学运算的链。",
  1104. "description_url": "",
  1105. "template": {
  1106. "input_node": {
  1107. "display_name": "预设问题"
  1108. },
  1109. "llm": {
  1110. "display_name": "大语言模型LLM"
  1111. },
  1112. "llm_chain": {
  1113. "display_name": "大语言模型LLM工作链"
  1114. },
  1115. "memory": {
  1116. "display_name": "记忆"
  1117. }
  1118. },
  1119. "output_types":[
  1120. "LLM数学工作链"
  1121. ]
  1122. },
  1123. "LLMRouterChain": {
  1124. "display_name": "LLM路由器链",
  1125. "description": "方便的构造函数。",
  1126. "description_url": "",
  1127. "template": {
  1128. "input_node": {
  1129. "display_name": "预设问题"
  1130. },
  1131. "llm": {
  1132. "display_name": "大语言模型LLM"
  1133. },
  1134. "llm_chain": {
  1135. "display_name": "大语言模型LLM工作链"
  1136. },
  1137. "prompt": {
  1138. "display_name": "prompt"
  1139. }
  1140. },
  1141. "output_types":[
  1142. "LLM路由器链"
  1143. ]
  1144. },
  1145. "LoaderOutputChain": {
  1146. "display_name": "加载器输出工作链",
  1147. "description": "打印加载器输出的链。",
  1148. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/CKaJwKfrniUfzGkn0RbcXZ9inNc",
  1149. "template": {
  1150. "documents": {
  1151. "display_name": "文档"
  1152. },
  1153. "input_node": {
  1154. "display_name": "预设问题"
  1155. },
  1156. "memory": {
  1157. "display_name": "记忆"
  1158. }
  1159. },
  1160. "output_types":[
  1161. "加载器输出工作链"
  1162. ]
  1163. },
  1164. "MidJourneyPromptChain": {
  1165. "display_name": "MidJourney提示词工作链",
  1166. "description": "用户可以方便的生成优秀的MidJourney提示词,用于生成MJ图片。",
  1167. "description_url": "",
  1168. "template": {
  1169. "input_node": {
  1170. "display_name": "预设问题"
  1171. },
  1172. "llm": {
  1173. "display_name": "大语言模型LLM"
  1174. },
  1175. "memory": {
  1176. "display_name": "记忆"
  1177. }
  1178. },
  1179. "output_types":[
  1180. "MidJourney提示词工作链"
  1181. ]
  1182. },
  1183. "MultiPromptChain": {
  1184. "display_name": "多提示词工作链",
  1185. "description": "使用大语言模型的以及合适的提示词从多个并存的工作链路中选择一个链路执行。",
  1186. "description_url": "",
  1187. "template": {
  1188. "LLMChains": {
  1189. "display_name": "大语言模型LLM工作链"
  1190. },
  1191. "default_chain": {
  1192. "display_name": "默认工作链"
  1193. },
  1194. "input_node": {
  1195. "display_name": "预设问题"
  1196. },
  1197. "memory": {
  1198. "display_name": "记忆"
  1199. },
  1200. "router_chain": {
  1201. "display_name": "路由工作链"
  1202. },
  1203. "destination_chain_name": {
  1204. "display_name": "目标链名称"
  1205. }
  1206. },
  1207. "output_types":[
  1208. "多提示词工作链"
  1209. ]
  1210. },
  1211. "MultiRuleChain": {
  1212. "display_name": "多规则工作链",
  1213. "description": "按照规划或者编排好的多种规则从多个并存的工作链路中选择一个链路执行。",
  1214. "description_url": "",
  1215. "template": {
  1216. "LLMChains": {
  1217. "display_name": "大语言模型LLM工作链"
  1218. },
  1219. "default_chain": {
  1220. "display_name": "默认工作链"
  1221. },
  1222. "input_node": {
  1223. "display_name": "预设问题"
  1224. },
  1225. "memory": {
  1226. "display_name": "记忆"
  1227. },
  1228. "router_chain": {
  1229. "display_name": "路由工作链"
  1230. },
  1231. "destination_chain_name": {
  1232. "display_name": "目标链名称"
  1233. },
  1234. "output_variables": {
  1235. "display_name": "输出变量"
  1236. }
  1237. },
  1238. "output_types":[
  1239. "多规则工作链"
  1240. ]
  1241. },
  1242. "RetrievalChain": {
  1243. "display_name": "检索工作链",
  1244. "description": "对于企业内已有QA库的情况希望直接返回库中答案,不让大模型生成,提升这类答案的准确性。若QA库未命中的再走RAG方案让大模型生成。。",
  1245. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/MjH2wLcNoinMjtkipyRcFssenbh",
  1246. "template": {
  1247. "input_node": {
  1248. "display_name": "预设问题"
  1249. },
  1250. "memory": {
  1251. "display_name": "记忆"
  1252. },
  1253. "retriever": {
  1254. "display_name": "检索器"
  1255. }
  1256. },
  1257. "output_types":[
  1258. "检索工作链"
  1259. ]
  1260. },
  1261. "RetrievalQA": {
  1262. "display_name": "QA经典检索链",
  1263. "description": "构建使用知识库与大语言模型进行问答的NPChat。用户输入的问题由QA经典检索链传递给向量存储,在向量存储中搜索到与问题最相似的X个文本段落,再由QA经典检索链将问题与这些文本段落一同传递给大语言模型进行处理。",
  1264. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/KrEdwoyFXiB20oklmPocXvHZnMg",
  1265. "template": {
  1266. "memory": {
  1267. "display_name": "记忆"
  1268. },
  1269. "retriever": {
  1270. "display_name": "检索器"
  1271. },
  1272. "input_node": {
  1273. "display_name": "预设问题"
  1274. },
  1275. "combine_documents_chain": {
  1276. "display_name": "合并文档工作链"
  1277. }
  1278. },
  1279. "output_types":[
  1280. "QA经典检索链"
  1281. ]
  1282. },
  1283. "RetrievalQAWithSourcesChain": {
  1284. "display_name": "RetrievalQAWithSourcesChain",
  1285. "description": "通过索引与来源进行问答。",
  1286. "description_url": "",
  1287. "template": {
  1288. "combine_documents_chain": {
  1289. "display_name": "合并文档工作链"
  1290. },
  1291. "input_node": {
  1292. "display_name": "预设问题"
  1293. },
  1294. "memory": {
  1295. "display_name": "记忆"
  1296. },
  1297. "retriever": {
  1298. "display_name": "检索器"
  1299. }
  1300. },
  1301. "output_types":[
  1302. "RetrievalQAWithSourcesChain"
  1303. ]
  1304. },
  1305. "RuleBasedRouter": {
  1306. "display_name": "基于规则的路由链",
  1307. "description": "按照规划或者编排好的多种规则从多个并存的工作链路中选择一个链路执行",
  1308. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/ZKq9wSXH9iEzqMkkCAXcQLqOnof",
  1309. "template": {
  1310. "input_node": {
  1311. "display_name": "预设问题"
  1312. },
  1313. "memory": {
  1314. "display_name": "记忆"
  1315. },
  1316. "rule_function": {
  1317. "display_name": "规则函数"
  1318. },
  1319. "input_variables": {
  1320. "display_name": "输入变量"
  1321. }
  1322. },
  1323. "output_types":[
  1324. "RuleBasedRouter"
  1325. ]
  1326. },
  1327. "SQLDatabaseChain": {
  1328. "display_name": "SQL数据库工作链",
  1329. "description_url": "",
  1330. "template": {
  1331. "db": {
  1332. "display_name": "数据库"
  1333. },
  1334. "input_node": {
  1335. "display_name": "预设问题"
  1336. },
  1337. "llm": {
  1338. "display_name": "大语言模型LLM"
  1339. },
  1340. "prompt": {
  1341. "display_name": "提示词"
  1342. }
  1343. },
  1344. "output_types":[
  1345. "SQL数据库工作链"
  1346. ]
  1347. },
  1348. "SequentialChain": {
  1349. "display_name": "顺序工作链",
  1350. "description": "当你想要获取一个调用的输出并将其用作另一个调用的输入时,使用该组件。Sequtential可以连接组合多个chains,并按顺序执行这些chains。",
  1351. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/MCmyw6XQIiMds8k1WKncdMGBnsg",
  1352. "template": {
  1353. "chains": {
  1354. "display_name": "工作链"
  1355. },
  1356. "input_node": {
  1357. "display_name": "预设问题"
  1358. },
  1359. "memory": {
  1360. "display_name": "记忆"
  1361. },
  1362. "chain_order": {
  1363. "display_name": "链顺序"
  1364. },
  1365. "input_variables": {
  1366. "display_name": "输入变量"
  1367. },
  1368. "output_variables": {
  1369. "display_name": "输出变量"
  1370. }
  1371. },
  1372. "output_types":[
  1373. "顺序工作链"
  1374. ]
  1375. },
  1376. "SeriesCharacterChain": {
  1377. "display_name": "系列角色工作链",
  1378. "description": "SeriesCharacterChain是您可以使用的链,用于与系列中的角色进行对话。",
  1379. "description_url": "",
  1380. "template": {
  1381. "input_node": {
  1382. "display_name": "预设问题"
  1383. },
  1384. "llm": {
  1385. "display_name": "大语言模型LLM"
  1386. },
  1387. "character": {
  1388. "display_name": "角色"
  1389. },
  1390. "series": {
  1391. "display_name": "系列"
  1392. }
  1393. },
  1394. "output_types":[
  1395. "系列角色工作链"
  1396. ]
  1397. },
  1398. "SimpleSequentialChain": {
  1399. "display_name": "简单顺序工作链",
  1400. "description": "简单的链,其中一个步骤的输出直接进入下一个步骤。",
  1401. "description_url": "",
  1402. "template": {
  1403. "chains": {
  1404. "display_name": "工作链"
  1405. },
  1406. "input_node": {
  1407. "display_name": "预设问题"
  1408. },
  1409. "memory": {
  1410. "display_name": "记忆"
  1411. }
  1412. },
  1413. "output_types":[
  1414. "简单顺序工作链"
  1415. ]
  1416. },
  1417. "TimeTravelGuideChain": {
  1418. "display_name": "时光导游工作链",
  1419. "description": "时光导游链。",
  1420. "description_url": "",
  1421. "template": {
  1422. "input_node": {
  1423. "display_name": "预设问题"
  1424. },
  1425. "llm": {
  1426. "display_name": "大语言模型LLM"
  1427. },
  1428. "memory": {
  1429. "display_name": "记忆"
  1430. }
  1431. },
  1432. "output_types":[
  1433. "时光导游工作链"
  1434. ]
  1435. },
  1436. "TransformChain": {
  1437. "display_name": "转换工作链",
  1438. "description": "链转换链输出。",
  1439. "description_url": "",
  1440. "template": {
  1441. "input_node": {
  1442. "display_name": "预设问题"
  1443. },
  1444. "memory": {
  1445. "display_name": "记忆"
  1446. },
  1447. "transform": {
  1448. "display_name": "转换"
  1449. },
  1450. "input_variables": {
  1451. "display_name": "输入变量"
  1452. },
  1453. "output_variables": {
  1454. "display_name": "输出变量"
  1455. }
  1456. },
  1457. "output_types":[
  1458. "转换工作链"
  1459. ]
  1460. }
  1461. },
  1462. "documentloaders": {
  1463. "AZLyricsLoader": {
  1464. "display_name": "AZLyricsLoader",
  1465. "description": "加载AZLyrics网页。",
  1466. "description_url": "",
  1467. "template": {
  1468. "metadata": {
  1469. "display_name": "元数据"
  1470. },
  1471. "web_path": {
  1472. "display_name": "Web路径"
  1473. }
  1474. },
  1475. "output_types": [
  1476. "文档"
  1477. ]
  1478. },
  1479. "AirbyteJSONLoader": {
  1480. "display_name": "AirbyteJSONLoader",
  1481. "description": "加载本地airbyte json文件。",
  1482. "description_url": "",
  1483. "template": {
  1484. "file_path": {
  1485. "display_name": "文件路径"
  1486. },
  1487. "metadata": {
  1488. "display_name": "元数据"
  1489. }
  1490. },
  1491. "output_types": [
  1492. "文档"
  1493. ]
  1494. },
  1495. "BSHTMLLoader": {
  1496. "display_name": "BSHTMLLoader",
  1497. "description": "使用beautiful soup解析HTML文件的加载器。",
  1498. "description_url": "",
  1499. "template": {
  1500. "file_path": {
  1501. "display_name": "文件路径"
  1502. },
  1503. "metadata": {
  1504. "display_name": "元数据"
  1505. }
  1506. },
  1507. "output_types": [
  1508. "文档"
  1509. ]
  1510. },
  1511. "CSVLoader": {
  1512. "display_name": "CSVLoader",
  1513. "description": "将CSV文件加载到文档列表中。",
  1514. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/QXC6w1JMriY9LlkfOG6cJbxGnPd",
  1515. "template": {
  1516. "file_path": {
  1517. "display_name": "文件路径"
  1518. },
  1519. "metadata": {
  1520. "display_name": "元数据"
  1521. }
  1522. },
  1523. "output_types": [
  1524. "文档"
  1525. ]
  1526. },
  1527. "CoNLLULoader": {
  1528. "display_name": "CoNLLULoader",
  1529. "description": "加载CoNLL-U文件。",
  1530. "description_url": "",
  1531. "template": {
  1532. "file_path": {
  1533. "display_name": "文件路径"
  1534. },
  1535. "metadata": {
  1536. "display_name": "元数据"
  1537. }
  1538. },
  1539. "output_types": [
  1540. "文档"
  1541. ]
  1542. },
  1543. "CollegeConfidentialLoader": {
  1544. "display_name": "CollegeConfidentialLoader",
  1545. "description": "加载College Confidential网页。",
  1546. "description_url": "",
  1547. "template": {
  1548. "metadata": {
  1549. "display_name": "元数据"
  1550. },
  1551. "web_path": {
  1552. "display_name": "Web路径"
  1553. }
  1554. },
  1555. "output_types": [
  1556. "文档"
  1557. ]
  1558. },
  1559. "CustomKVLoader": {
  1560. "display_name": "CustomKVLoader",
  1561. "description": "从pdf或图像中提取键值对的加载器。",
  1562. "description_url": "",
  1563. "template": {
  1564. "file_path": {
  1565. "display_name": "文件路径"
  1566. },
  1567. "elem_server_id": {
  1568. "display_name": "元素服务器ID"
  1569. },
  1570. "elm_api_base_url": {
  1571. "display_name": "elm API基本URL"
  1572. },
  1573. "elm_api_key": {
  1574. "display_name": "elm API密钥"
  1575. },
  1576. "metadata": {
  1577. "display_name": "元数据"
  1578. },
  1579. "schemas": {
  1580. "display_name": "模式"
  1581. },
  1582. "task_type": {
  1583. "display_name": "任务类型"
  1584. }
  1585. },
  1586. "output_types": [
  1587. "文档"
  1588. ]
  1589. },
  1590. "DirectoryLoader": {
  1591. "display_name": "DirectoryLoader",
  1592. "description": "从目录加载文档。",
  1593. "description_url": "",
  1594. "template": {
  1595. "glob": {
  1596. "display_name": "全局通配符"
  1597. },
  1598. "metadata": {
  1599. "display_name": "元数据"
  1600. },
  1601. "path": {
  1602. "display_name": "本地目录"
  1603. }
  1604. },
  1605. "output_types": [
  1606. "文档"
  1607. ]
  1608. },
  1609. "ElemUnstructuredLoaderV0": {
  1610. "display_name": "非结构化解析器",
  1611. "description": "根据文件格式自动选择适当的解析器,并支持OCR的加载器。统一非结构化数据Loader,将任何文档转换成语义连续的token集合。",
  1612. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/W8HuwNu6ZioNGekftNVcNgQpn7b",
  1613. "template": {
  1614. "file_path": {
  1615. "display_name": "文件路径"
  1616. },
  1617. "metadata": {
  1618. "display_name": "元数据"
  1619. },
  1620. "unstructured_api_url": {
  1621. "display_name": "非结构化API URL"
  1622. }
  1623. },
  1624. "output_types": [
  1625. "文档"
  1626. ]
  1627. },
  1628. "EverNoteLoader": {
  1629. "display_name": "EverNoteLoader",
  1630. "description": "EverNote加载器。",
  1631. "description_url": "",
  1632. "template": {
  1633. "file_path": {
  1634. "display_name": "文件路径"
  1635. },
  1636. "metadata": {
  1637. "display_name": "元数据"
  1638. }
  1639. },
  1640. "output_types": [
  1641. "文档"
  1642. ]
  1643. },
  1644. "FacebookChatLoader": {
  1645. "display_name": "FacebookChatLoader",
  1646. "description": "加载Facebook消息json目录转储。",
  1647. "description_url": "",
  1648. "template": {
  1649. "file_path": {
  1650. "display_name": "文件路径"
  1651. },
  1652. "metadata": {
  1653. "display_name": "元数据"
  1654. }
  1655. },
  1656. "output_types": [
  1657. "文档"
  1658. ]
  1659. },
  1660. "GitLoader": {
  1661. "display_name": "GitLoader",
  1662. "description": "从Git存储库加载文件到文档列表。",
  1663. "description_url": "",
  1664. "template": {
  1665. "branch": {
  1666. "display_name": "分支"
  1667. },
  1668. "clone_url": {
  1669. "display_name": "克隆URL"
  1670. },
  1671. "file_filter": {
  1672. "display_name": "文件扩展名(逗号分隔)"
  1673. },
  1674. "metadata": {
  1675. "display_name": "元数据"
  1676. },
  1677. "repo_path": {
  1678. "display_name": "存储库路径"
  1679. }
  1680. },
  1681. "output_types": [
  1682. "文档"
  1683. ]
  1684. },
  1685. "GitbookLoader": {
  1686. "display_name": "GitbookLoader",
  1687. "description": "加载GitBook数据。",
  1688. "description_url": "",
  1689. "template": {
  1690. "metadata": {
  1691. "display_name": "元数据"
  1692. },
  1693. "web_page": {
  1694. "display_name": "Web页面"
  1695. }
  1696. },
  1697. "output_types": [
  1698. "文档"
  1699. ]
  1700. },
  1701. "GutenbergLoader": {
  1702. "display_name": "GutenbergLoader",
  1703. "description": "使用urllib加载.txt网页文件的加载器。",
  1704. "description_url": "",
  1705. "template": {
  1706. "metadata": {
  1707. "display_name": "元数据"
  1708. },
  1709. "web_page": {
  1710. "display_name": "Web页面"
  1711. }
  1712. },
  1713. "output_types": [
  1714. "文档"
  1715. ]
  1716. },
  1717. "HNLoader": {
  1718. "display_name": "HNLoader",
  1719. "description": "从Hacker News加载数据,可以是主页结果或评论页面。",
  1720. "description_url": "",
  1721. "template": {
  1722. "metadata": {
  1723. "display_name": "元数据"
  1724. },
  1725. "web_page": {
  1726. "display_name": "Web页面"
  1727. }
  1728. },
  1729. "output_types": [
  1730. "文档"
  1731. ]
  1732. },
  1733. "IFixitLoader": {
  1734. "display_name": "IFixitLoader",
  1735. "description": "加载iFixit修复指南、设备维基和答案。",
  1736. "description_url": "",
  1737. "template": {
  1738. "metadata": {
  1739. "display_name": "元数据"
  1740. },
  1741. "web_page": {
  1742. "display_name": "Web页面"
  1743. }
  1744. },
  1745. "output_types": [
  1746. "文档"
  1747. ]
  1748. },
  1749. "IMSDbLoader": {
  1750. "display_name": "IMSDbLoader",
  1751. "description": "加载IMSDb网页。",
  1752. "description_url": "",
  1753. "template": {
  1754. "metadata": {
  1755. "display_name": "元数据"
  1756. },
  1757. "web_page": {
  1758. "display_name": "Web页面"
  1759. }
  1760. },
  1761. "output_types": [
  1762. "文档"
  1763. ]
  1764. },
  1765. "NotionDirectoryLoader": {
  1766. "display_name": "NotionDirectoryLoader",
  1767. "description": "加载Notion目录转储。",
  1768. "description_url": "",
  1769. "template": {
  1770. "metadata": {
  1771. "display_name": "元数据"
  1772. },
  1773. "path": {
  1774. "display_name": "本地目录"
  1775. }
  1776. },
  1777. "output_types": [
  1778. "文档"
  1779. ]
  1780. },
  1781. "PDFWithSemanticLoader": {
  1782. "display_name": "PDFWithSemanticLoader",
  1783. "description": "使用pypdf加载PDF并以字符级别切块。",
  1784. "description_url": "",
  1785. "template": {
  1786. "file_path": {
  1787. "display_name": "文件路径"
  1788. },
  1789. "layout_api_key": {
  1790. "display_name": "布局API密钥"
  1791. },
  1792. "layout_api_url": {
  1793. "display_name": "布局API URL"
  1794. },
  1795. "metadata": {
  1796. "display_name": "元数据"
  1797. }
  1798. },
  1799. "output_types": [
  1800. "文档"
  1801. ]
  1802. },
  1803. "PyPDFDirectoryLoader": {
  1804. "display_name": "PyPDFDirectoryLoader",
  1805. "description": "使用pypdf从目录加载具有字符级别切块的PDF文件。",
  1806. "description_url": "",
  1807. "template": {
  1808. "metadata": {
  1809. "display_name": "元数据"
  1810. },
  1811. "path": {
  1812. "display_name": "本地目录"
  1813. }
  1814. },
  1815. "output_types": [
  1816. "文档"
  1817. ]
  1818. },
  1819. "PyPDFLoader": {
  1820. "display_name": "PyPDFLoader",
  1821. "description": "使用pypdf加载具有字符级别切块的PDF文件。",
  1822. "description_url": "",
  1823. "template": {
  1824. "file_path": {
  1825. "display_name": "文件路径"
  1826. },
  1827. "metadata": {
  1828. "display_name": "元数据"
  1829. }
  1830. },
  1831. "output_types": [
  1832. "文档"
  1833. ]
  1834. },
  1835. "ReadTheDocsLoader": {
  1836. "display_name": "ReadTheDocsLoader",
  1837. "description": "加载ReadTheDocs文档目录转储。",
  1838. "description_url": "",
  1839. "template": {
  1840. "metadata": {
  1841. "display_name": "元数据"
  1842. },
  1843. "path": {
  1844. "display_name": "本地目录"
  1845. }
  1846. },
  1847. "output_types": [
  1848. "文档"
  1849. ]
  1850. },
  1851. "SRTLoader": {
  1852. "display_name": "SRTLoader",
  1853. "description": "用于.srt(字幕)文件的加载器。",
  1854. "description_url": "",
  1855. "template": {
  1856. "file_path": {
  1857. "display_name": "文件路径"
  1858. },
  1859. "metadata": {
  1860. "display_name": "元数据"
  1861. }
  1862. },
  1863. "output_types": [
  1864. "文档"
  1865. ]
  1866. },
  1867. "SlackDirectoryLoader": {
  1868. "display_name": "SlackDirectoryLoader",
  1869. "description": "从Slack目录转储加载文档。",
  1870. "description_url": "",
  1871. "template": {
  1872. "file_path": {
  1873. "display_name": "文件路径"
  1874. },
  1875. "metadata": {
  1876. "display_name": "元数据"
  1877. }
  1878. },
  1879. "output_types": [
  1880. "文档"
  1881. ]
  1882. },
  1883. "TextLoader": {
  1884. "display_name": "TextLoader",
  1885. "description": "加载文本文件。",
  1886. "description_url": "",
  1887. "template": {
  1888. "file_path": {
  1889. "display_name": "文件路径"
  1890. },
  1891. "metadata": {
  1892. "display_name": "元数据"
  1893. }
  1894. },
  1895. "output_types": [
  1896. "文档"
  1897. ]
  1898. },
  1899. "UniversalKVLoader": {
  1900. "display_name": "UniversalKVLoader",
  1901. "description": "从pdf或图像中提取键值对的加载器。",
  1902. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/JsCdw0VdqitTkjk3wzYcc1D7nyb",
  1903. "template": {
  1904. "file_path": {
  1905. "display_name": "文件路径"
  1906. },
  1907. "ellm_model_url": {
  1908. "display_name": "ellm模型URL"
  1909. },
  1910. "max_pages": {
  1911. "display_name": "最大页数"
  1912. },
  1913. "metadata": {
  1914. "display_name": "元数据"
  1915. },
  1916. "schema": {
  1917. "display_name": "模式"
  1918. }
  1919. },
  1920. "output_types": [
  1921. "文档"
  1922. ]
  1923. },
  1924. "WebBaseLoader": {
  1925. "display_name": "WebBaseLoader",
  1926. "description": "使用urllib和beautiful soup加载网页的加载器。",
  1927. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/A484wNqtgisdCuk3e47cmMcdnGb",
  1928. "template": {
  1929. "metadata": {
  1930. "display_name": "元数据"
  1931. },
  1932. "web_path": {
  1933. "display_name": "Web页面"
  1934. }
  1935. },
  1936. "output_types": [
  1937. "文档"
  1938. ]
  1939. }
  1940. },
  1941. "embeddings": {
  1942. "CohereEmbeddings": {
  1943. "display_name": "CohereEmbeddings",
  1944. "description": "Cohere嵌入模型的封装。",
  1945. "description_url": "",
  1946. "template": {
  1947. "cohere_api_key": {
  1948. "display_name": "cohere_api_key"
  1949. },
  1950. "model": {
  1951. "display_name": "模型"
  1952. }
  1953. }
  1954. },
  1955. "HostEmbeddings": {
  1956. "display_name": "本地Embeddings",
  1957. "description": "加载使用私有化本地部署的Embedding是模型。",
  1958. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/MQ1Pws640inbVnkUpjicXOWHnxg",
  1959. "template": {
  1960. "host_base_url": {
  1961. "display_name": "主机基础URL"
  1962. },
  1963. "model": {
  1964. "display_name": "模型"
  1965. }
  1966. },
  1967. "output_types": [
  1968. "本地Embeddings"
  1969. ]
  1970. },
  1971. "HuggingFaceEmbeddings": {
  1972. "display_name": "HuggingFaceEmbeddings",
  1973. "description": "sentence_transformers嵌入模型的封装。",
  1974. "description_url": ""
  1975. },
  1976. "OpenAIEmbeddings": {
  1977. "display_name": "OpenAIEmbeddings",
  1978. "description": "OpenAI嵌入模型的封装。",
  1979. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/GhzbwwoGViidTFkE1S0cJFXAnTh",
  1980. "template": {
  1981. "model": {
  1982. "display_name": "模型"
  1983. },
  1984. "openai_api_key": {
  1985. "display_name": "OpenAI API密钥"
  1986. },
  1987. "tiktoken_model_name": {
  1988. "display_name": "tiktoken模型名称"
  1989. }
  1990. }
  1991. },
  1992. "OpenAIProxyEmbedding": {
  1993. "display_name": "OpenAIProxyEmbedding",
  1994. "description": "使用自建的embedding服务使用OpenAI进行嵌入。",
  1995. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/NMppwevK8ixXGakQSPZcOXbznmb"
  1996. },
  1997. "WenxinEmbeddings": {
  1998. "display_name": "WenxinEmbeddings",
  1999. "description": "Wenxin嵌入模型。",
  2000. "description_url": "",
  2001. "template": {
  2002. "model": {
  2003. "display_name": "模型"
  2004. },
  2005. "wenxin_api_key": {
  2006. "display_name": "Wenxin API密钥"
  2007. }
  2008. }
  2009. }
  2010. },
  2011. "input_output": {
  2012. "InputFileNode": {
  2013. "display_name": "输入文件节点",
  2014. "description": "输入文件节点,当有上传文件需求时调用。",
  2015. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/MC7JworXNiQuFVkrZh8curzXn5K",
  2016. "template": {
  2017. "file_path": {
  2018. "display_name": "文件路径"
  2019. },
  2020. "file_type": {
  2021. "display_name": "文件类型"
  2022. }
  2023. },
  2024. "output_types": [
  2025. "输入文件节点"
  2026. ]
  2027. },
  2028. "InputNode": {
  2029. "display_name": "输入节点",
  2030. "description": "用户可以自定义输入内容,并将其输入到下游组件中去。",
  2031. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/WkbswUmAgij4cVkARJMcn9Xlnqg",
  2032. "template": {
  2033. "input": {
  2034. "display_name": "输入内容"
  2035. }
  2036. },
  2037. "output_types": [
  2038. "输入节点"
  2039. ]
  2040. },
  2041. "Report": {
  2042. "display_name": "专业报告生成组件",
  2043. "description": "把一个复杂的专业报告生成的困难任务,拆解成多个更简单的简单各具体章节内容生成任务。同时,通过模板框架的预先设置,实现了整个专业报告生成的可控(大框架可控+每块内容的生成可以独立控制优化)。",
  2044. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/OkRCwPk5tiKKAukhZDXcdygmnNg",
  2045. "template": {
  2046. "chains": {
  2047. "display_name": "工作链"
  2048. },
  2049. "variables": {
  2050. "display_name": "变量"
  2051. },
  2052. "report_name": {
  2053. "display_name": "报告名称"
  2054. }
  2055. },
  2056. "output_types": [
  2057. "专业报告生成组件"
  2058. ]
  2059. },
  2060. "VariableNode": {
  2061. "display_name": "变量输入节点",
  2062. "description": "用于设置所需的不同变量。",
  2063. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/UjkDwenCxizGzDkMoVQcFHMWn9d",
  2064. "template": {
  2065. "variables": {
  2066. "display_name": "变量"
  2067. }
  2068. },
  2069. "output_types": [
  2070. "变量输入节点"
  2071. ]
  2072. }
  2073. },
  2074. "llms": {
  2075. "Anthropic": {
  2076. "display_name": "Anthropic",
  2077. "description": "Anthropic大型语言模型的封装。",
  2078. "description_url": "",
  2079. "template": {
  2080. "anthropic_api_key": {
  2081. "display_name": "anthropic_api_key"
  2082. },
  2083. "anthropic_api_url": {
  2084. "display_name": "anthropic_api_url"
  2085. },
  2086. "temperature": {
  2087. "display_name": "生成自由度(越接近1自由度越高,越接近0自由度越低)"
  2088. }
  2089. }
  2090. },
  2091. "AzureChatOpenAI": {
  2092. "display_name": "AzureChatOpenAI",
  2093. "description": "Azure OpenAI聊天完成API的封装。通过微软云使用OpenAI的大模型服务",
  2094. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/SVqtwY8lDi41tmkiQZ5ctkhMngf",
  2095. "template": {
  2096. "model_name": {
  2097. "display_name": "model_name"
  2098. },
  2099. "openai_proxy": {
  2100. "display_name": "OpenAI代理"
  2101. },
  2102. "temperature": {
  2103. "display_name": "生成自由度(越接近1自由度越高,越接近0自由度越低)"
  2104. }
  2105. }
  2106. },
  2107. "CTransformers": {
  2108. "display_name": "CTransformers",
  2109. "description": "C Transformers 大语言模型LLM接口的封装。",
  2110. "description_url": "",
  2111. "template": {
  2112. "model": {
  2113. "display_name": "model"
  2114. },
  2115. "model_file": {
  2116. "display_name": "model_file"
  2117. },
  2118. "model_type": {
  2119. "display_name": "model_type"
  2120. }
  2121. }
  2122. },
  2123. "ChatAnthropic": {
  2124. "display_name": "ChatAnthropic",
  2125. "description": "Anthropic大型语言模型的封装API调用。",
  2126. "description_url": "",
  2127. "template": {
  2128. "anthropic_api_key": {
  2129. "display_name": "anthropic_api_key"
  2130. },
  2131. "anthropic_api_url": {
  2132. "display_name": "anthropic_api_url"
  2133. },
  2134. "temperature": {
  2135. "display_name": "生成自由度(越接近1自由度越高,越接近0自由度越低)"
  2136. }
  2137. }
  2138. },
  2139. "ChatMinimaxAI": {
  2140. "display_name": "ChatMinimaxAI",
  2141. "description": "代理Chat大型语言模型的封装API调用。",
  2142. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/H76xwiCfDiIeYTki4rec23h4nyg",
  2143. "template": {
  2144. "minimaxai_api_key": {
  2145. "display_name": "minimaxai_api_key"
  2146. },
  2147. "minimaxai_group_id": {
  2148. "display_name": "minimaxai_group_id"
  2149. },
  2150. "model_name": {
  2151. "display_name": "model_name"
  2152. },
  2153. "temperature": {
  2154. "display_name": "生成自由度(越接近1自由度越高,越接近0自由度越低)"
  2155. }
  2156. }
  2157. },
  2158. "ChatOpenAI": {
  2159. "display_name": "ChatOpenAI",
  2160. "description": "OpenAI Chat大型语言模型的封装API调用。",
  2161. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/AEApwOpmZiu3mpkUDMcccvpbn7d",
  2162. "template": {
  2163. "model_name": {
  2164. "display_name": "model_name",
  2165. "options": [
  2166. "gpt-3.5-turbo-0613",
  2167. "gpt-3.5-turbo",
  2168. "gpt-3.5-turbo-16k-0613",
  2169. "gpt-3.5-turbo-16k",
  2170. "gpt-4-0613",
  2171. "gpt-4-32k-0613",
  2172. "gpt-4",
  2173. "gpt-4-32k",
  2174. "gpt-4-1106-preview"
  2175. ]
  2176. },
  2177. "openai_api_base": {
  2178. "display_name": "OpenAI API Base"
  2179. },
  2180. "openai_api_key": {
  2181. "display_name": "OpenAI API Key"
  2182. },
  2183. "openai_proxy": {
  2184. "display_name": "OpenAI代理"
  2185. },
  2186. "temperature": {
  2187. "display_name": "生成自由度(越接近1自由度越高,越接近0自由度越低)"
  2188. }
  2189. }
  2190. },
  2191. "ChatQWen": {
  2192. "display_name": "通意千问Chat",
  2193. "description": "阿里千问代理Chat大型语言模型的封装API调用。",
  2194. "description_url": "",
  2195. "template": {
  2196. "api_key": {
  2197. "display_name": "api_key"
  2198. },
  2199. "model_name": {
  2200. "display_name": "model_name"
  2201. },
  2202. "temperature": {
  2203. "display_name": "生成自由度(越接近1自由度越高,越接近0自由度越低)"
  2204. }
  2205. },
  2206. "output_types": [
  2207. "通意千问Chat"
  2208. ]
  2209. },
  2210. "ChatWenxin": {
  2211. "display_name": "文心一言Chat",
  2212. "description": "文心一言代理Chat大型语言模型的封装API调用。",
  2213. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/H76xwiCfDiIeYTki4rec23h4nyg",
  2214. "template": {
  2215. "model_name": {
  2216. "display_name": "model_name"
  2217. },
  2218. "temperature": {
  2219. "display_name": "生成自由度(越接近1自由度越高,越接近0自由度越低)"
  2220. },
  2221. "wenxin_api_key": {
  2222. "display_name": "wenxin_api_key"
  2223. },
  2224. "wenxin_secret_key": {
  2225. "display_name": "wenxin_secret_key"
  2226. }
  2227. },
  2228. "output_types": [
  2229. "文心一言Chat"
  2230. ]
  2231. },
  2232. "ChatXunfeiAI": {
  2233. "display_name": "科大讯飞Chat",
  2234. "description": "科大讯飞代理Chat大型语言模型的封装API调用。",
  2235. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/H76xwiCfDiIeYTki4rec23h4nyg",
  2236. "template": {
  2237. "model_name": {
  2238. "display_name": "model_name"
  2239. },
  2240. "temperature": {
  2241. "display_name": "生成自由度(越接近1自由度越高,越接近0自由度越低)"
  2242. },
  2243. "xunfeiai_api_key": {
  2244. "display_name": "xunfeiai_api_key"
  2245. },
  2246. "xunfeiai_api_secret": {
  2247. "display_name": "xunfeiai_api_secret"
  2248. },
  2249. "xunfeiai_appid": {
  2250. "display_name": "xunfeiai_appid"
  2251. }
  2252. },
  2253. "output_types": [
  2254. "科大讯飞Chat"
  2255. ]
  2256. },
  2257. "ChatZhipuAI": {
  2258. "display_name": "智普ChatGLM",
  2259. "description": "ChatGLM大型语言模型的API调用。",
  2260. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/H76xwiCfDiIeYTki4rec23h4nyg",
  2261. "template": {
  2262. "model_name": {
  2263. "display_name": "model_name"
  2264. },
  2265. "temperature": {
  2266. "display_name": "生成自由度(越接近1自由度越高,越接近0自由度越低)"
  2267. },
  2268. "zhipuai_api_key": {
  2269. "display_name": "zhipuai_api_key"
  2270. }
  2271. },
  2272. "output_types": [
  2273. "智普ChatGLM"
  2274. ]
  2275. },
  2276. "Cohere": {
  2277. "display_name": "Cohere",
  2278. "description": "Cohere大型语言模型的封装API调用。",
  2279. "description_url": "",
  2280. "template": {
  2281. "cohere_api_key": {
  2282. "display_name": "cohere_api_key"
  2283. },
  2284. "temperature": {
  2285. "display_name": "生成自由度(越接近1自由度越高,越接近0自由度越低)"
  2286. }
  2287. }
  2288. },
  2289. "CustomLLMChat": {
  2290. "display_name": "自定义LLMChat",
  2291. "description": "自定义的其他LLMChat大模型封装API调用。",
  2292. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/GoNxwA5kMiBRD1kXjipc5c29nmc",
  2293. "template": {
  2294. "host_base_url": {
  2295. "display_name": "host_base_url"
  2296. },
  2297. "model_name": {
  2298. "display_name": "model_name"
  2299. },
  2300. "temperature": {
  2301. "display_name": "生成自由度(越接近1自由度越高,越接近0自由度越低)"
  2302. }
  2303. },
  2304. "output_types": [
  2305. "自定义LLMChat"
  2306. ]
  2307. },
  2308. "HostBaichuanChat": {
  2309. "display_name": "私有化百川Chat",
  2310. "description": "百川大模型的私有化本地封装调用。",
  2311. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/ItOmwmCDji5QiCkvVaDcDFBrn8g",
  2312. "template": {
  2313. "host_base_url": {
  2314. "display_name": "host_base_url"
  2315. },
  2316. "model_name": {
  2317. "display_name": "model_name"
  2318. },
  2319. "temperature": {
  2320. "display_name": "生成自由度(越接近1自由度越高,越接近0自由度越低)"
  2321. }
  2322. },
  2323. "output_types": [
  2324. "私有化百川Chat"
  2325. ]
  2326. },
  2327. "HostChatGLM": {
  2328. "display_name": "私有化ChatGLM",
  2329. "description": "ChatGLM系列大模型的私有化本地封装调用。",
  2330. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/ItOmwmCDji5QiCkvVaDcDFBrn8g",
  2331. "template": {
  2332. "host_base_url": {
  2333. "display_name": "host_base_url"
  2334. },
  2335. "model_name": {
  2336. "display_name": "model_name"
  2337. },
  2338. "temperature": {
  2339. "display_name": "生成自由度(越接近1自由度越高,越接近0自由度越低)"
  2340. }
  2341. },
  2342. "output_types": [
  2343. "私有化ChatGLM"
  2344. ]
  2345. },
  2346. "HostLlama2Chat": {
  2347. "display_name": "私有化Llama2Chat",
  2348. "description": "Llama2系列大模型的私有化本地封装调用。",
  2349. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/ItOmwmCDji5QiCkvVaDcDFBrn8g",
  2350. "template": {
  2351. "host_base_url": {
  2352. "display_name": "host_base_url"
  2353. },
  2354. "model_name": {
  2355. "display_name": "model_name"
  2356. },
  2357. "temperature": {
  2358. "display_name": "生成自由度(越接近1自由度越高,越接近0自由度越低)"
  2359. }
  2360. },
  2361. "output_types": [
  2362. "私有化Llama2Chat"
  2363. ]
  2364. },
  2365. "HostQwenChat": {
  2366. "display_name": "私有化通义千问Chat",
  2367. "description": "通义千问系列大模型的私有化本地封装调用。",
  2368. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/ItOmwmCDji5QiCkvVaDcDFBrn8g",
  2369. "template": {
  2370. "host_base_url": {
  2371. "display_name": "host_base_url"
  2372. },
  2373. "model_name": {
  2374. "display_name": "model_name"
  2375. },
  2376. "temperature": {
  2377. "display_name": "生成自由度(越接近1自由度越高,越接近0自由度越低)"
  2378. }
  2379. },
  2380. "output_types": [
  2381. "私有化通义千问Chat"
  2382. ]
  2383. },
  2384. "HuggingFaceHub": {
  2385. "display_name": "HuggingFaceHub",
  2386. "description": "HuggingFaceHub模型的封装。",
  2387. "description_url": "",
  2388. "template": {
  2389. "huggingfacehub_api_token": {
  2390. "display_name": "HuggingFace Hub API Token"
  2391. },
  2392. "repo_id": {
  2393. "display_name": "repo_id"
  2394. }
  2395. }
  2396. },
  2397. "LlamaCpp": {
  2398. "display_name": "LlamaCpp",
  2399. "description": "llama.cpp模型的封装。",
  2400. "description_url": "",
  2401. "template": {
  2402. "model_path": {
  2403. "display_name": "model_path"
  2404. },
  2405. "temperature": {
  2406. "display_name": "生成自由度(越接近1自由度越高,越接近0自由度越低)"
  2407. }
  2408. }
  2409. },
  2410. "NPCsChatLLM": {
  2411. "display_name": "NPCsChatLLM",
  2412. "description": "`OpenAI`聊天大型语言模型API。",
  2413. "description_url": "",
  2414. "template": {
  2415. "api_base": {
  2416. "display_name": "api_base"
  2417. },
  2418. "api_key": {
  2419. "display_name": "api_key"
  2420. },
  2421. "model_name": {
  2422. "display_name": "model_name"
  2423. },
  2424. "temperature": {
  2425. "display_name": "temperature"
  2426. }
  2427. }
  2428. },
  2429. "OpenAI": {
  2430. "display_name": "OpenAI API",
  2431. "description": "包装了OpenAI大型语言模型。API调用",
  2432. "description_url": "",
  2433. "template": {
  2434. "model_name": {
  2435. "display_name": "模型名称",
  2436. "options": [
  2437. "text-davinci-003",
  2438. "text-davinci-002",
  2439. "text-curie-001",
  2440. "text-babbage-001",
  2441. "text-ada-001"
  2442. ]
  2443. },
  2444. "openai_api_base": {
  2445. "display_name": "OpenAI API基础地址"
  2446. },
  2447. "openai_api_key": {
  2448. "display_name": "OpenAI API密钥"
  2449. },
  2450. "openai_proxy": {
  2451. "display_name": "OpenAI代理"
  2452. },
  2453. "temperature": {
  2454. "display_name": "生成自由度(越接近1自由度越高,越接近0自由度越低)"
  2455. }
  2456. }
  2457. },
  2458. "ProxyChatLLM": {
  2459. "display_name": "ProxyChatLLM",
  2460. "description": "包装了代理Chat大型语言模型。",
  2461. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/EBbqwpRo6igyH2knWUac4SUynxd",
  2462. "template": {
  2463. "elemai_api_key": {
  2464. "display_name": "elemai_api_key"
  2465. },
  2466. "elemai_base_url": {
  2467. "display_name": "elemai_base_url"
  2468. },
  2469. "model_name": {
  2470. "display_name": "模型名称"
  2471. },
  2472. "temperature": {
  2473. "display_name": "生成自由度(越接近1自由度越高,越接近0自由度越低)"
  2474. }
  2475. }
  2476. },
  2477. "VertexAI": {
  2478. "display_name": "VertexAI",
  2479. "description": "包装了Google Vertex AI大型语言模型。",
  2480. "description_url": "",
  2481. "template": {
  2482. "credentials": {
  2483. "display_name": "凭据"
  2484. },
  2485. "location": {
  2486. "display_name": "位置"
  2487. },
  2488. "max_retries": {
  2489. "display_name": "最大重试次数"
  2490. },
  2491. "metadata": {
  2492. "display_name": "元数据"
  2493. },
  2494. "model_name": {
  2495. "display_name": "模型名称"
  2496. },
  2497. "project": {
  2498. "display_name": "项目"
  2499. },
  2500. "request_parallelism": {
  2501. "display_name": "请求并行度"
  2502. },
  2503. "temperature": {
  2504. "display_name": "生成自由度(越接近1自由度越高,越接近0自由度越低)"
  2505. }
  2506. }
  2507. },
  2508. "SenseChat": {
  2509. "display_name": "SenseChat",
  2510. "description": "Sense大语言模型",
  2511. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/H76xwiCfDiIeYTki4rec23h4nyg"
  2512. }
  2513. },
  2514. "memories": {
  2515. "ConversationBufferMemory": {
  2516. "display_name": "对话记忆缓存",
  2517. "description": "用于存储对话记忆的缓冲区。",
  2518. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/NapCwjdBzifdotk0nyzcF7VQnEf",
  2519. "template": {
  2520. "chat_memory": {
  2521. "display_name": "聊天记忆"
  2522. },
  2523. "input_key": {
  2524. "display_name": "输入"
  2525. },
  2526. "memory_key": {
  2527. "display_name": "记忆"
  2528. },
  2529. "output_key": {
  2530. "display_name": "输出"
  2531. },
  2532. "return_messages": {
  2533. "display_name": "返回消息"
  2534. }
  2535. },
  2536. "output_types": [
  2537. "对话记忆缓存"
  2538. ]
  2539. },
  2540. "ConversationBufferWindowMemory": {
  2541. "display_name": "ConversationBufferWindowMemory",
  2542. "description": "用于存储对话记忆的缓冲区。",
  2543. "description_url": "",
  2544. "template": {
  2545. "chat_memory": {
  2546. "display_name": "聊天记忆"
  2547. },
  2548. "input_key": {
  2549. "display_name": "输入"
  2550. },
  2551. "k": {
  2552. "display_name": "记忆大小"
  2553. },
  2554. "memory_key": {
  2555. "display_name": "记忆"
  2556. },
  2557. "output_key": {
  2558. "display_name": "输出"
  2559. },
  2560. "return_messages": {
  2561. "display_name": "返回消息"
  2562. }
  2563. }
  2564. },
  2565. "ConversationEntityMemory": {
  2566. "display_name": "ConversationEntityMemory",
  2567. "description": "实体提取器和摘要生成器的记忆。",
  2568. "description_url": "",
  2569. "template": {
  2570. "chat_memory": {
  2571. "display_name": "聊天记忆"
  2572. },
  2573. "llm": {
  2574. "display_name": "大语言模型LLM"
  2575. },
  2576. "chat_history_key": {
  2577. "display_name": "聊天历史"
  2578. },
  2579. "input_key": {
  2580. "display_name": "输入"
  2581. },
  2582. "k": {
  2583. "display_name": "记忆大小"
  2584. },
  2585. "output_key": {
  2586. "display_name": "输出"
  2587. },
  2588. "return_messages": {
  2589. "display_name": "返回消息"
  2590. }
  2591. }
  2592. },
  2593. "ConversationKGMemory": {
  2594. "display_name": "ConversationKGMemory",
  2595. "description": "用于存储对话记忆的知识图记忆。",
  2596. "description_url": "",
  2597. "template": {
  2598. "chat_memory": {
  2599. "display_name": "聊天记忆"
  2600. },
  2601. "llm": {
  2602. "display_name": "大语言模型LLM"
  2603. },
  2604. "input_key": {
  2605. "display_name": "输入"
  2606. },
  2607. "k": {
  2608. "display_name": "记忆大小"
  2609. },
  2610. "memory_key": {
  2611. "display_name": "记忆"
  2612. },
  2613. "output_key": {
  2614. "display_name": "输出"
  2615. },
  2616. "return_messages": {
  2617. "display_name": "返回消息"
  2618. }
  2619. }
  2620. },
  2621. "ConversationSummaryMemory": {
  2622. "display_name": "ConversationSummaryMemory",
  2623. "description": "用于对话摘要的记忆。",
  2624. "description_url": "",
  2625. "template": {
  2626. "chat_memory": {
  2627. "display_name": "聊天记忆"
  2628. },
  2629. "llm": {
  2630. "display_name": "大语言模型LLM"
  2631. },
  2632. "input_key": {
  2633. "display_name": "输入"
  2634. },
  2635. "memory_key": {
  2636. "display_name": "记忆"
  2637. },
  2638. "output_key": {
  2639. "display_name": "输出"
  2640. },
  2641. "return_messages": {
  2642. "display_name": "返回消息"
  2643. }
  2644. }
  2645. },
  2646. "MongoDBChatMessageHistory": {
  2647. "display_name": "MongoDBChatMessageHistory",
  2648. "description": "使用MongoDB存储AI大模型对话记忆。",
  2649. "description_url": "",
  2650. "template": {
  2651. "collection_name": {
  2652. "display_name": "集合名称"
  2653. },
  2654. "connection_string": {
  2655. "display_name": "连接字符串"
  2656. },
  2657. "database_name": {
  2658. "display_name": "数据库名称"
  2659. },
  2660. "session_id": {
  2661. "display_name": "会话ID"
  2662. }
  2663. }
  2664. },
  2665. "PostgresChatMessageHistory": {
  2666. "display_name": "PostgresChatMessageHistory",
  2667. "description": "使用Postgres存储AI大模型对话记忆。",
  2668. "description_url": "",
  2669. "template": {
  2670. "connection_string": {
  2671. "display_name": "连接字符串"
  2672. },
  2673. "session_id": {
  2674. "display_name": "会话ID"
  2675. },
  2676. "table_name": {
  2677. "display_name": "表名"
  2678. }
  2679. }
  2680. },
  2681. "VectorStoreRetrieverMemory": {
  2682. "display_name": "VectorStoreRetrieverMemory",
  2683. "description": "用于基于VectorStore存储AI大模型对话记忆。",
  2684. "description_url": "",
  2685. "template": {
  2686. "retriever": {
  2687. "display_name": "检索器"
  2688. },
  2689. "input_key": {
  2690. "display_name": "输入"
  2691. },
  2692. "memory_key": {
  2693. "display_name": "记忆"
  2694. },
  2695. "return_messages": {
  2696. "display_name": "返回消息"
  2697. }
  2698. }
  2699. }
  2700. },
  2701. "output_parsers": {
  2702. "ResponseSchema": {
  2703. "display_name": "ResponseSchema",
  2704. "description": "ResponseSchema只能与StructuredOutputParser 组件一起使用,ResponseSchema主要是定义结构化输出时,具体要输出哪些字段信息",
  2705. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/HulIwrFfPiaAfHkSa8XcWY8Mnbh",
  2706. "template": {
  2707. "description": {
  2708. "display_name": "描述"
  2709. },
  2710. "name": {
  2711. "display_name": "名称"
  2712. },
  2713. "type": {
  2714. "display_name": "类型"
  2715. }
  2716. }
  2717. },
  2718. "StructuredOutputParser": {
  2719. "display_name": "StructuredOutputParser",
  2720. "description": "StructuredOutputParser是一个输出解析器组件,可以让语言模型的输出变为结构化形式的数据。",
  2721. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/E1KRwNrDJiedmtk2tvjcqdBgnvb",
  2722. "template": {
  2723. "response_schemas": {
  2724. "display_name": "响应模式"
  2725. }
  2726. }
  2727. }
  2728. },
  2729. "prompts": {
  2730. "ChatMessagePromptTemplate": {
  2731. "display_name": "ChatMessagePromptTemplate",
  2732. "description": "组件可以设置提示词模板,获得变量的输入后为大语言模型生成完整的提示词",
  2733. "description_url": "",
  2734. "template": {
  2735. "prompt": {
  2736. "display_name": "提示词"
  2737. },
  2738. "role": {
  2739. "display_name": "角色"
  2740. }
  2741. }
  2742. },
  2743. "ChatPromptTemplate": {
  2744. "display_name": "ChatPromptTemplate",
  2745. "description": "组件可以设置提示词模板,获得变量的输入后为大语言模型生成完整的提示词",
  2746. "description_url": "",
  2747. "template": {
  2748. "messages": {
  2749. "display_name": "消息"
  2750. },
  2751. "output_parser": {
  2752. "display_name": "输出解析器"
  2753. }
  2754. }
  2755. },
  2756. "HumanMessagePromptTemplate": {
  2757. "display_name": "HumanMessagePromptTemplate",
  2758. "description": "组件可以设置提示词模板,获得变量的输入后为大语言模型生成完整的提示词",
  2759. "description_url": "",
  2760. "template": {
  2761. "prompt": {
  2762. "display_name": "提示词"
  2763. }
  2764. }
  2765. },
  2766. "PromptTemplate": {
  2767. "display_name": "提示词模版",
  2768. "description": "PromptsTemplate组件可以设置提示词模板,获得变量的输入后为大语言模型生成完整的提示词。",
  2769. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/Ey9kwqfiuiMnWRkgMpncjaj4ngf",
  2770. "template": {
  2771. "output_parser": {
  2772. "display_name": "输出解析器"
  2773. },
  2774. "template": {
  2775. "display_name": "模板"
  2776. }
  2777. },
  2778. "output_types": [
  2779. "提示词模版"
  2780. ]
  2781. },
  2782. "SystemMessagePromptTemplate": {
  2783. "display_name": "SystemMessagePromptTemplate",
  2784. "description": "组件可以设置提示词模板,获得变量的输入后为大语言模型生成完整的提示词",
  2785. "description_url": "",
  2786. "template": {
  2787. "prompt": {
  2788. "display_name": "提示词"
  2789. }
  2790. }
  2791. }
  2792. },
  2793. "retrievers": {
  2794. "MixEsVectorRetriever": {
  2795. "display_name": "混合检索器",
  2796. "description": "该类集成了ES检索器和向量检索器的结果。",
  2797. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/CGhLwMZediKCqAkcatGcLXhhnkg",
  2798. "template": {
  2799. "keyword_retriever": {
  2800. "display_name": "关键词检索器"
  2801. },
  2802. "vector_retriever": {
  2803. "display_name": "向量检索器"
  2804. },
  2805. "combine_strategy": {
  2806. "display_name": "合并策略",
  2807. "options": [
  2808. "keyword_front",
  2809. "vector_front",
  2810. "mix"
  2811. ]
  2812. }
  2813. },
  2814. "output_types": [
  2815. "混合检索器"
  2816. ]
  2817. },
  2818. "MultiQueryRetriever": {
  2819. "display_name": "多请求检索",
  2820. "description": "多请求检索组件是一个检索召回组件,该组件使用大模型对用户输入的问题(请求)生成3-4个含义相同但表述有差别的问题,再对这几个问题分别进行检索。因为向量数据库是根据语义来进行向量搜索的,通过这种方法可以检索得到更丰富、全面的相关文档,提高回答的准确性。",
  2821. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/EWPJwwf68iisfPkbWLlckfATnVe",
  2822. "template": {
  2823. "llm": {
  2824. "display_name": "大语言模型LLM"
  2825. },
  2826. "prompt": {
  2827. "display_name": "提示词"
  2828. },
  2829. "retriever": {
  2830. "display_name": "检索器"
  2831. }
  2832. },
  2833. "output_types": [
  2834. "多请求检索"
  2835. ]
  2836. }
  2837. },
  2838. "textsplitters": {
  2839. "CharacterTextSplitter": {
  2840. "display_name": "字符分割器",
  2841. "description": "基于字符的文本拆分实现。",
  2842. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/Lidow51Jli1avIkxFNCc96AInrb",
  2843. "template": {
  2844. "documents": {
  2845. "display_name": "文档"
  2846. },
  2847. "chunk_overlap": {
  2848. "display_name": "块重叠"
  2849. },
  2850. "chunk_size": {
  2851. "display_name": "块大小"
  2852. },
  2853. "separator": {
  2854. "display_name": "分隔符"
  2855. }
  2856. },
  2857. "output_types": [
  2858. "文档"
  2859. ]
  2860. },
  2861. "RecursiveCharacterTextSplitter": {
  2862. "display_name": "递归文本分割器",
  2863. "description": "基于字符的文本拆分实现,可以把长文本分割成小的文本段落,和[字符分割器]组件相比,[递归文本分割器]组件在分割文本时,如果文本大小超过指定的阈值,它会递归地将文本分成更小的段落。",
  2864. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/OPaZwErmsiJtw5kGwa4cifxsnKb",
  2865. "template": {
  2866. "documents": {
  2867. "display_name": "文档"
  2868. },
  2869. "chunk_overlap": {
  2870. "display_name": "块重叠"
  2871. },
  2872. "chunk_size": {
  2873. "display_name": "块大小"
  2874. },
  2875. "separator_type": {
  2876. "display_name": "分隔符类型"
  2877. },
  2878. "separator": {
  2879. "display_name": "分隔符"
  2880. }
  2881. },
  2882. "output_types": [
  2883. "文档"
  2884. ]
  2885. }
  2886. },
  2887. "toolkits": {
  2888. "JsonToolkit": {
  2889. "display_name": "JsonToolkit",
  2890. "description": "与JSON规范交互的工具包。",
  2891. "description_url": "",
  2892. "template": {
  2893. "spec": {
  2894. "display_name": "规范"
  2895. }
  2896. }
  2897. },
  2898. "OpenAPIToolkit": {
  2899. "display_name": "OpenAPIToolkit",
  2900. "description": "与OpenAPI API交互的工具包。",
  2901. "description_url": "",
  2902. "template": {
  2903. "json_agent": {
  2904. "display_name": "JSON代理"
  2905. },
  2906. "requests_wrapper": {
  2907. "display_name": "请求封装"
  2908. }
  2909. }
  2910. },
  2911. "VectorStoreInfo": {
  2912. "display_name": "VectorStoreInfo",
  2913. "description": "关于矢量存储的信息。",
  2914. "description_url": "",
  2915. "template": {
  2916. "vectorstore": {
  2917. "display_name": "矢量存储"
  2918. },
  2919. "description": {
  2920. "display_name": "描述"
  2921. },
  2922. "name": {
  2923. "display_name": "名称"
  2924. }
  2925. }
  2926. },
  2927. "VectorStoreRouterToolkit": {
  2928. "display_name": "VectorStoreRouterToolkit",
  2929. "description": "用于在矢量存储之间进行路由的工具包。",
  2930. "description_url": "",
  2931. "template": {
  2932. "vectorstores": {
  2933. "display_name": "矢量存储"
  2934. }
  2935. }
  2936. },
  2937. "VectorStoreToolkit": {
  2938. "display_name": "VectorStoreToolkit",
  2939. "description": "与矢量存储交互的工具包。",
  2940. "description_url": "",
  2941. "template": {
  2942. "vectorstore_info": {
  2943. "display_name": "矢量存储信息"
  2944. }
  2945. }
  2946. }
  2947. },
  2948. "tools": {
  2949. "BingSearchRun": {
  2950. "display_name": "BingSearchRun",
  2951. "description": "Bing搜索的封装。在需要回答有关当前事件的问题时很有用。输入应为搜索查询。",
  2952. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/Z3tQwxBX7iyqNxkEpLfcy4lRnuQ",
  2953. "template": {
  2954. "api_wrapper": {
  2955. "display_name": "API封装"
  2956. },
  2957. "args_schema": {
  2958. "display_name": "参数模式"
  2959. }
  2960. }
  2961. },
  2962. "Calculator": {
  2963. "display_name": "Calculator",
  2964. "description": "在需要回答数学问题时很有用。",
  2965. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/QWQdw27NjizrcPkLHgzcKuVfnUh",
  2966. "template": {
  2967. "llm": {
  2968. "display_name": "大语言模型LLM"
  2969. },
  2970. "args_schema": {
  2971. "display_name": "参数模式"
  2972. }
  2973. }
  2974. },
  2975. "ComfyUIRun": {
  2976. "display_name": "ComfyUIRun",
  2977. "description_url": "",
  2978. "template": {
  2979. "api_wrapper": {
  2980. "display_name": "API封装"
  2981. },
  2982. "args_schema": {
  2983. "display_name": "参数模式"
  2984. }
  2985. }
  2986. },
  2987. "GoogleSearchResults": {
  2988. "display_name": "GoogleSearchResults",
  2989. "description": "Google搜索的封装。在需要回答有关当前事件的问题时很有用。输入应为搜索查询。输出是查询结果的JSON数组。",
  2990. "description_url": "",
  2991. "template": {
  2992. "api_wrapper": {
  2993. "display_name": "API封装"
  2994. },
  2995. "args_schema": {
  2996. "display_name": "参数模式"
  2997. }
  2998. }
  2999. },
  3000. "GoogleSearchRun": {
  3001. "display_name": "GoogleSearchRun",
  3002. "description": "Google搜索的封装。在需要回答有关当前事件的问题时很有用。输入应为搜索查询。",
  3003. "description_url": "",
  3004. "template": {
  3005. "api_wrapper": {
  3006. "display_name": "API封装"
  3007. },
  3008. "args_schema": {
  3009. "display_name": "参数模式"
  3010. }
  3011. }
  3012. },
  3013. "GoogleSerperRun": {
  3014. "display_name": "GoogleSerperRun",
  3015. "description_url": "",
  3016. "template": {
  3017. "api_wrapper": {
  3018. "display_name": "API封装"
  3019. },
  3020. "args_schema": {
  3021. "display_name": "参数模式"
  3022. }
  3023. }
  3024. },
  3025. "InfoSQLDatabaseTool": {
  3026. "display_name": "InfoSQLDatabaseTool",
  3027. "description": "此工具的输入是表的逗号分隔列表,输出是这些表的模式和示例行。\n\n 示例输入:'table1, table2, table3'",
  3028. "description_url": "",
  3029. "template": {
  3030. "db": {
  3031. "display_name": "数据库"
  3032. },
  3033. "args_schema": {
  3034. "display_name": "参数模式"
  3035. }
  3036. }
  3037. },
  3038. "JsonGetValueTool": {
  3039. "display_name": "JsonGetValueTool",
  3040. "description": "可用于查看给定路径上的字符串格式值。\n在调用之前,您应确保此路径存在。\n输入是Python语法中字典路径的文本表示形式(例如data[\"key1\"][0][\"key2\"])。",
  3041. "description_url": "",
  3042. "template": {
  3043. "spec": {
  3044. "display_name": "规范"
  3045. },
  3046. "args_schema": {
  3047. "display_name": "参数模式"
  3048. }
  3049. }
  3050. },
  3051. "JsonListKeysTool": {
  3052. "display_name": "JsonListKeysTool",
  3053. "description": "可用于查看给定路径上的字符串格式值。\n在调用之前,您应确保此路径存在。\n输入是Python语法中字典路径的文本表示形式(例如data[\"key1\"][0][\"key2\"])。",
  3054. "description_url": "",
  3055. "template": {
  3056. "spec": {
  3057. "display_name": "规范"
  3058. },
  3059. "args_schema": {
  3060. "display_name": "参数模式"
  3061. }
  3062. }
  3063. },
  3064. "JsonSpec": {
  3065. "display_name": "JsonSpec",
  3066. "description_url": "",
  3067. "template": {
  3068. "path": {
  3069. "display_name": "路径"
  3070. },
  3071. "args_schema": {
  3072. "display_name": "参数模式"
  3073. },
  3074. "max_value_length": {
  3075. "display_name": "最大值长度"
  3076. }
  3077. }
  3078. },
  3079. "ListSQLDatabaseTool": {
  3080. "display_name": "ListSQLDatabaseTool",
  3081. "description": "输入为空字符串,输出是数据库中表的逗号分隔列表。",
  3082. "description_url": "",
  3083. "template": {
  3084. "db": {
  3085. "display_name": "数据库"
  3086. },
  3087. "args_schema": {
  3088. "display_name": "参数模式"
  3089. }
  3090. }
  3091. },
  3092. "News API": {
  3093. "display_name": "News API",
  3094. "description": "在您想要获取有关当前新闻头条的信息时使用。输入应为此API可以回答的自然语言中的问题。",
  3095. "description_url": "",
  3096. "template": {
  3097. "llm": {
  3098. "display_name": "大语言模型LLM"
  3099. },
  3100. "args_schema": {
  3101. "display_name": "参数模式"
  3102. },
  3103. "news_api_key": {
  3104. "display_name": "新闻API密钥"
  3105. }
  3106. }
  3107. },
  3108. "PAL-MATH": {
  3109. "display_name": "PAL-MATH",
  3110. "description": "一个非常擅长解决复杂数学问题的语言模型。输入应为完全用文字表达的复杂数学问题。",
  3111. "description_url": "",
  3112. "template": {
  3113. "llm": {
  3114. "display_name": "大语言模型LLM"
  3115. },
  3116. "args_schema": {
  3117. "display_name": "参数模式"
  3118. }
  3119. }
  3120. },
  3121. "Podcast API": {
  3122. "display_name": "Podcast API",
  3123. "description": "使用Listen Notes Podcast API搜索所有播客或剧集。输入应为此API可以回答的自然语言中的问题。",
  3124. "description_url": "",
  3125. "template": {
  3126. "llm": {
  3127. "display_name": "大语言模型LLM"
  3128. },
  3129. "args_schema": {
  3130. "display_name": "参数模式"
  3131. },
  3132. "listen_api_key": {
  3133. "display_name": "Listen API密钥"
  3134. }
  3135. }
  3136. },
  3137. "PythonAstREPLTool": {
  3138. "display_name": "PythonAstREPLTool",
  3139. "description": "一个Python shell。使用它来执行Python命令。输入应为有效的Python命令。在使用此工具时,有时输出会被缩写 - 在在答案中使用之前,请确保它看起来不是缩写的。",
  3140. "description_url": "",
  3141. "template": {
  3142. "args_schema": {
  3143. "display_name": "参数模式"
  3144. }
  3145. }
  3146. },
  3147. "PythonFunction": {
  3148. "display_name": "PythonFunction",
  3149. "description": "要执行的Python函数。",
  3150. "description_url": "",
  3151. "template": {
  3152. "code": {
  3153. "display_name": "代码"
  3154. }
  3155. }
  3156. },
  3157. "PythonFunctionTool": {
  3158. "display_name": "PythonAstREPLTool",
  3159. "description": "要执行的Python函数。",
  3160. "description_url": "",
  3161. "template": {
  3162. "code": {
  3163. "display_name": "代码"
  3164. },
  3165. "description": {
  3166. "display_name": "描述"
  3167. },
  3168. "name": {
  3169. "display_name": "名称"
  3170. },
  3171. "return_direct": {
  3172. "display_name": "直接返回"
  3173. }
  3174. }
  3175. },
  3176. "PythonREPLTool": {
  3177. "display_name": "PythonREPLTool",
  3178. "description": "一个Python shell。使用它来执行Python命令。输入应为有效的Python命令。如果要查看值的输出,应使用`print(...)`将其打印出来。",
  3179. "description_url": "",
  3180. "template": {
  3181. "args_schema": {
  3182. "display_name": "参数模式"
  3183. }
  3184. }
  3185. },
  3186. "QuerySQLDataBaseTool": {
  3187. "display_name": "PythonREPLTool",
  3188. "description": "此工具的输入是详细而正确的SQL查询,输出是来自数据库的结果。\n如果查询不正确,将返回错误消息。\n如果返回错误,请重新编写查询,检查查询,然后重试。",
  3189. "description_url": "",
  3190. "template": {
  3191. "db": {
  3192. "display_name": "数据库"
  3193. },
  3194. "args_schema": {
  3195. "display_name": "参数模式"
  3196. }
  3197. }
  3198. },
  3199. "RequestsDeleteTool": {
  3200. "display_name": "RequestsDeleteTool",
  3201. "description": "互联网门户。在需要向URL发出DELETE请求时使用。输入应为特定的URL,输出将是DELETE请求的文本响应。",
  3202. "description_url": "",
  3203. "template": {
  3204. "requests_wrapper": {
  3205. "display_name": "请求封装"
  3206. },
  3207. "args_schema": {
  3208. "display_name": "参数模式"
  3209. }
  3210. }
  3211. },
  3212. "RequestsGetTool": {
  3213. "display_name": "RequestsGetTool",
  3214. "description": "互联网门户。在需要从网站获取特定内容时使用。输入应为URL(即https://www.google.com)。输出将是GET请求的文本响应。",
  3215. "description_url": "",
  3216. "template": {
  3217. "requests_wrapper": {
  3218. "display_name": "请求封装"
  3219. },
  3220. "args_schema": {
  3221. "display_name": "参数模式"
  3222. }
  3223. }
  3224. },
  3225. "RequestsPatchTool": {
  3226. "display_name": "RequestsPatchTool",
  3227. "description": "在想要对网站进行PATCH时使用。\n输入应为具有两个键的json字符串:\"url\"和\"data\"。\n\"url\"的值应为字符串,\"data\"的值应为要PATCH到url的键值对字典。\n务必始终在json字符串中使用双引号。\n输出将是PATCH请求的文本响应。\n",
  3228. "description_url": "",
  3229. "template": {
  3230. "requests_wrapper": {
  3231. "display_name": "请求封装"
  3232. },
  3233. "args_schema": {
  3234. "display_name": "参数模式"
  3235. }
  3236. }
  3237. },
  3238. "RequestsPostTool": {
  3239. "display_name": "RequestsPostTool",
  3240. "description": "在想要对网站进行POST时使用。\n输入应为具有两个键的json字符串:\"url\"和\"data\"。\n\"url\"的值应为字符串,\"data\"的值应为要POST到url的键值对字典。\n务必始终在json字符串中使用双引号。\n输出将是POST请求的文本响应。\n",
  3241. "description_url": "",
  3242. "template": {
  3243. "requests_wrapper": {
  3244. "display_name": "请求封装"
  3245. },
  3246. "args_schema": {
  3247. "display_name": "参数模式"
  3248. }
  3249. }
  3250. },
  3251. "RequestsPutTool": {
  3252. "display_name": "RequestsPutTool",
  3253. "description": "在需要对网站进行PUT请求时使用此工具。\n输入应为包含两个键的JSON字符串:\"url\"和\"data\"。\n\"url\"的值应为字符串,\"data\"的值应为要PUT到URL的键值对字典。\n在JSON字符串中始终要小心使用双引号括起字符串。\n输出将是PUT请求的文本响应。",
  3254. "description_url": "",
  3255. "template": {
  3256. "requests_wrapper": {
  3257. "display_name": "请求封装"
  3258. },
  3259. "args_schema": {
  3260. "display_name": "参数模式"
  3261. }
  3262. }
  3263. },
  3264. "Search": {
  3265. "display_name": "搜索",
  3266. "description": "一个搜索引擎。在需要回答有关当前事件的问题时非常有用。输入应为搜索查询。",
  3267. "description_url": "",
  3268. "template": {
  3269. "args_schema": {
  3270. "display_name": "参数模式"
  3271. },
  3272. "serpapi_api_key": {
  3273. "display_name": "serpapi_api_key"
  3274. }
  3275. },
  3276. "output_types": [
  3277. "搜索"
  3278. ]
  3279. },
  3280. "TMDB API": {
  3281. "display_name": "TMDB API",
  3282. "description": "在您想要从电影数据库获取信息时非常有用。输入应为此API可以回答的自然语言问题。",
  3283. "description_url": "",
  3284. "template": {
  3285. "llm": {
  3286. "display_name": "大语言模型LLM"
  3287. },
  3288. "args_schema": {
  3289. "display_name": "参数模式"
  3290. },
  3291. "tmdb_bearer_token": {
  3292. "display_name": "tmdb_bearer_token"
  3293. }
  3294. }
  3295. },
  3296. "Tool": {
  3297. "display_name": "工具",
  3298. "description": "将链、代理或函数转换为工具。",
  3299. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/KdvgwlVGBiJ1F7kr8jEc9Ui2nUg",
  3300. "template": {
  3301. "func": {
  3302. "display_name": "函数"
  3303. },
  3304. "args_schema": {
  3305. "display_name": "参数模式"
  3306. },
  3307. "description": {
  3308. "display_name": "描述"
  3309. },
  3310. "name": {
  3311. "display_name": "名称"
  3312. },
  3313. "return_direct": {
  3314. "display_name": "直接返回"
  3315. }
  3316. },
  3317. "output_types": [
  3318. "工具"
  3319. ]
  3320. },
  3321. "WikipediaQueryRun": {
  3322. "display_name": "WikipediaQueryRun",
  3323. "description": "围绕维基百科的包装器。在需要回答有关人物、地点、公司、事实、历史事件或其他主题的一般问题时非常有用。输入应为搜索查询。",
  3324. "description_url": "",
  3325. "template": {
  3326. "api_wrapper": {
  3327. "display_name": "API封装"
  3328. },
  3329. "args_schema": {
  3330. "display_name": "参数模式"
  3331. }
  3332. }
  3333. },
  3334. "WolframAlphaQueryRun": {
  3335. "display_name": "WolframAlphaQueryRun",
  3336. "description": "围绕沃尔夫拉姆阿尔法的包装器。在需要回答有关数学、科学、技术、文化、社会和日常生活的问题时非常有用。输入应为搜索查询。",
  3337. "description_url": "",
  3338. "template": {
  3339. "api_wrapper": {
  3340. "display_name": "API封装"
  3341. },
  3342. "args_schema": {
  3343. "display_name": "参数模式"
  3344. }
  3345. }
  3346. }
  3347. },
  3348. "utilities": {
  3349. "BingSearchAPIWrapper": {
  3350. "display_name": "BingSearchAPIWrapper",
  3351. "description": "Bing Search API的封装器。",
  3352. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/TzJOwYMDviGTLDkP0BkcXySjnJf",
  3353. "template": {
  3354. "bing_search_url": {
  3355. "display_name": "必应搜索 URL"
  3356. },
  3357. "bing_subscription_key": {
  3358. "display_name": "必应订阅密钥"
  3359. }
  3360. }
  3361. },
  3362. "ComfyUITxt2ImgAPIWrapper": {
  3363. "display_name": "ComfyUITxt2ImgAPIWrapper",
  3364. "description": "Comfy UI API的封装器。",
  3365. "description_url": "",
  3366. "template": {
  3367. "comfy_ui_workflow": {
  3368. "display_name": "comfyUi 工作流"
  3369. },
  3370. "comfy_ui_api_url": {
  3371. "display_name": "comfy_ui_api_url"
  3372. },
  3373. "comfy_ui_ws_url": {
  3374. "display_name": "comfy_ui_ws_url"
  3375. }
  3376. }
  3377. },
  3378. "GoogleSearchAPIWrapper": {
  3379. "display_name": "GoogleSearchAPIWrapper",
  3380. "description": "Google搜索API的封装器。",
  3381. "description_url": "",
  3382. "template": {
  3383. "google_api_key": {
  3384. "display_name": "Google API密钥"
  3385. }
  3386. }
  3387. },
  3388. "GoogleSerperAPIWrapper": {
  3389. "display_name": "GoogleSerperAPIWrapper",
  3390. "description": "围绕 Serper.dev Google搜索API的封装器。",
  3391. "description_url": "",
  3392. "template": {
  3393. "result_key_for_type": {
  3394. "display_name": "类型的结果键"
  3395. },
  3396. "serper_api_key": {
  3397. "display_name": "Serper API密钥"
  3398. }
  3399. }
  3400. },
  3401. "SearxSearchWrapper": {
  3402. "display_name": "SearxSearchWrapper",
  3403. "description": "Searx API的封装器。",
  3404. "description_url": "",
  3405. "template": {
  3406. "headers": {
  3407. "display_name": "标头"
  3408. }
  3409. }
  3410. },
  3411. "SerpAPIWrapper": {
  3412. "display_name": "SerpAPIWrapper",
  3413. "description": "围绕 SerpAPI 的封装器。",
  3414. "description_url": "",
  3415. "template": {
  3416. "serpapi_api_key": {
  3417. "display_name": "SerpAPI API密钥"
  3418. }
  3419. }
  3420. },
  3421. "WikipediaAPIWrapper": {
  3422. "display_name": "WikipediaAPIWrapper",
  3423. "description": "围绕 WikipediaAPI 的封装器。",
  3424. "description_url": ""
  3425. },
  3426. "WolframAlphaAPIWrapper": {
  3427. "display_name": "WolframAlphaAPIWrapper",
  3428. "description": "Wolfram Alpha的封装器。",
  3429. "description_url": ""
  3430. }
  3431. },
  3432. "vectorstores": {
  3433. "Chroma": {
  3434. "display_name": "Chroma",
  3435. "description": "从原始文档创建 Chroma 向量存储。",
  3436. "description_url": "",
  3437. "template": {
  3438. "documents": {
  3439. "display_name": "文档"
  3440. },
  3441. "embedding": {
  3442. "display_name": "嵌入"
  3443. },
  3444. "collection_name": {
  3445. "display_name": "集合名称"
  3446. },
  3447. "persist": {
  3448. "display_name": "持久化"
  3449. },
  3450. "persist_directory": {
  3451. "display_name": "持久化目录"
  3452. }
  3453. }
  3454. },
  3455. "ElasticKeywordsSearch": {
  3456. "display_name": "ElasticKeywordsSearch",
  3457. "description": "从原始文档构建 ElasticKeywordsSearch 包装器。",
  3458. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/C7lrwV9iCisQhXkw0HCcrXUKnJd",
  3459. "template": {
  3460. "documents": {
  3461. "display_name": "文档"
  3462. },
  3463. "llm": {
  3464. "display_name": "大语言模型LLM"
  3465. },
  3466. "prompt": {
  3467. "display_name": "提示词"
  3468. },
  3469. "elasticsearch_url": {
  3470. "display_name": "ES 连接 URL"
  3471. },
  3472. "index_name": {
  3473. "display_name": "索引名称"
  3474. },
  3475. "ssl_verify": {
  3476. "display_name": "SSL 验证"
  3477. }
  3478. }
  3479. },
  3480. "FAISS": {
  3481. "display_name": "FAISS",
  3482. "description": "从原始文档构建 FAISS 包装器。",
  3483. "description_url": "",
  3484. "template": {
  3485. "documents": {
  3486. "display_name": "文档"
  3487. },
  3488. "embedding": {
  3489. "display_name": "嵌入"
  3490. },
  3491. "folder_path": {
  3492. "display_name": "本地路径"
  3493. },
  3494. "index_name": {
  3495. "display_name": "索引名称"
  3496. }
  3497. }
  3498. },
  3499. "Milvus": {
  3500. "display_name": "Milvus向量数据库",
  3501. "description": "创建 Milvus 集合,使用 HNSW 进行索引并插入数据。",
  3502. "description_url": "https://lxm3ki8hexz.feishu.cn/wiki/TYpiwqObLipbg2ka4Mlcdk5Yn1d",
  3503. "template": {
  3504. "documents": {
  3505. "display_name": "文档"
  3506. },
  3507. "embedding": {
  3508. "display_name": "嵌入"
  3509. },
  3510. "collection_name": {
  3511. "display_name": "集合名称"
  3512. },
  3513. "connection_args": {
  3514. "display_name": "连接参数"
  3515. }
  3516. },
  3517. "output_types": [
  3518. "Milvus向量数据库"
  3519. ]
  3520. },
  3521. "MongoDBAtlasVectorSearch": {
  3522. "display_name": "MongoDB Atlas向量数据库",
  3523. "description": "创建 Milvus 集合,使用 HNSW 进行索引并插入数据。",
  3524. "description_url": "",
  3525. "template": {
  3526. "documents": {
  3527. "display_name": "文档"
  3528. },
  3529. "embedding": {
  3530. "display_name": "嵌入"
  3531. },
  3532. "collection_name": {
  3533. "display_name": "集合名称"
  3534. },
  3535. "db_name": {
  3536. "display_name": "数据库名称"
  3537. },
  3538. "index_name": {
  3539. "display_name": "索引名称"
  3540. },
  3541. "mongodb_atlas_cluster_uri": {
  3542. "display_name": "MongoDB Atlas 集群 URI"
  3543. }
  3544. },
  3545. "output_types": [
  3546. "MongoDB Atlas向量数据库"
  3547. ]
  3548. },
  3549. "Pinecone": {
  3550. "display_name": "Pinecone向量数据库",
  3551. "description": "从原始文档构建 Pinecone 包装器。",
  3552. "description_url": "",
  3553. "template": {
  3554. "documents": {
  3555. "display_name": "文档"
  3556. },
  3557. "embedding": {
  3558. "display_name": "嵌入"
  3559. },
  3560. "index_name": {
  3561. "display_name": "索引名称"
  3562. },
  3563. "namespace": {
  3564. "display_name": "命名空间"
  3565. }
  3566. },
  3567. "output_types": [
  3568. "Pinecone向量数据库"
  3569. ]
  3570. },
  3571. "Qdrant": {
  3572. "display_name": "Qdrant",
  3573. "description": "从文本列表构建 Qdrant 包装器。",
  3574. "description_url": "",
  3575. "template": {
  3576. "documents": {
  3577. "display_name": "文档"
  3578. },
  3579. "embedding": {
  3580. "display_name": "嵌入"
  3581. },
  3582. "api_key": {
  3583. "display_name": "API 密钥"
  3584. },
  3585. "collection_name": {
  3586. "display_name": "集合名称"
  3587. },
  3588. "location": {
  3589. "display_name": "位置"
  3590. }
  3591. }
  3592. },
  3593. "SupabaseVectorStore": {
  3594. "display_name": "Supabase",
  3595. "description": "从文本和嵌入初始化 VectorStore 的 Supabase 包装器。",
  3596. "description_url": "",
  3597. "template": {
  3598. "documents": {
  3599. "display_name": "文档"
  3600. },
  3601. "embedding": {
  3602. "display_name": "嵌入"
  3603. },
  3604. "query_name": {
  3605. "display_name": "查询名称"
  3606. },
  3607. "supabase_service_key": {
  3608. "display_name": "Supabase 服务密钥"
  3609. },
  3610. "supabase_url": {
  3611. "display_name": "Supabase URL"
  3612. },
  3613. "table_name": {
  3614. "display_name": "表名称"
  3615. }
  3616. }
  3617. },
  3618. "Weaviate": {
  3619. "display_name": "Weaviate",
  3620. "description": "从原始文档构建 Weaviate 包装器。",
  3621. "description_url": "",
  3622. "template": {
  3623. "documents": {
  3624. "display_name": "文档"
  3625. },
  3626. "embedding": {
  3627. "display_name": "嵌入"
  3628. },
  3629. "weaviate_url": {
  3630. "display_name": "Weaviate URL"
  3631. }
  3632. }
  3633. }
  3634. },
  3635. "wrappers": {
  3636. "SQLDatabase": {
  3637. "display_name": "SQLDatabase",
  3638. "description": "从 URI 构建一个 SQLAlchemy 引擎。",
  3639. "description_url": "",
  3640. "template": {
  3641. "database_uri": {
  3642. "display_name": "数据库 URI"
  3643. }
  3644. }
  3645. },
  3646. "TextRequestsWrapper": {
  3647. "display_name": "TextRequestsWrapper",
  3648. "description": "对 requests 库的轻量级封装。",
  3649. "description_url": "",
  3650. "template": {
  3651. "headers": {
  3652. "display_name": "标头"
  3653. }
  3654. }
  3655. }
  3656. },
  3657. "port": "服务端口"
  3658. }