bs.json 143 KB

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