bs.json 131 KB

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