@microsoft/teamsfx-core 3.0.9-alpha.c7ae3b53e.0 → 3.0.9-alpha.cff536c96.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/common/featureFlags.d.ts +0 -5
- package/build/common/featureFlags.d.ts.map +1 -1
- package/build/common/featureFlags.js +0 -2
- package/build/common/featureFlags.js.map +1 -1
- package/build/common/localizeUtils.d.ts.map +1 -1
- package/build/common/localizeUtils.js +36 -12
- package/build/common/localizeUtils.js.map +1 -1
- package/build/common/templates-config.json +1 -1
- package/build/component/constants.d.ts +1 -0
- package/build/component/constants.d.ts.map +1 -1
- package/build/component/constants.js +2 -1
- package/build/component/constants.js.map +1 -1
- package/build/component/driver/teamsApp/publishAppPackage.d.ts +2 -0
- package/build/component/driver/teamsApp/publishAppPackage.d.ts.map +1 -1
- package/build/component/driver/teamsApp/publishAppPackage.js +79 -4
- package/build/component/driver/teamsApp/publishAppPackage.js.map +1 -1
- package/build/component/driver/teamsApp/utils/PluginManifestUtils.d.ts +20 -0
- package/build/component/driver/teamsApp/utils/PluginManifestUtils.d.ts.map +1 -1
- package/build/component/driver/teamsApp/utils/PluginManifestUtils.js +152 -2
- package/build/component/driver/teamsApp/utils/PluginManifestUtils.js.map +1 -1
- package/build/component/generator/declarativeAgent/generator.d.ts.map +1 -1
- package/build/component/generator/declarativeAgent/generator.js +16 -6
- package/build/component/generator/declarativeAgent/generator.js.map +1 -1
- package/build/component/generator/generator.d.ts.map +1 -1
- package/build/component/generator/generator.js +3 -6
- package/build/component/generator/generator.js.map +1 -1
- package/build/component/generator/officeAddin/metaOSHelper.d.ts.map +1 -1
- package/build/component/generator/officeAddin/metaOSHelper.js +1 -2
- package/build/component/generator/officeAddin/metaOSHelper.js.map +1 -1
- package/build/component/generator/templates/metadata/index.d.ts.map +1 -1
- package/build/component/generator/templates/metadata/index.js +21 -25
- package/build/component/generator/templates/metadata/index.js.map +1 -1
- package/build/component/generator/templates/templateReplaceMap.d.ts.map +1 -1
- package/build/component/generator/templates/templateReplaceMap.js +2 -5
- package/build/component/generator/templates/templateReplaceMap.js.map +1 -1
- package/build/component/utils/odrProvider.d.ts +36 -0
- package/build/component/utils/odrProvider.d.ts.map +1 -0
- package/build/component/utils/odrProvider.js +75 -0
- package/build/component/utils/odrProvider.js.map +1 -0
- package/build/core/FxCore.d.ts +4 -1
- package/build/core/FxCore.d.ts.map +1 -1
- package/build/core/FxCore.js +96 -19
- package/build/core/FxCore.js.map +1 -1
- package/build/index.d.ts +2 -1
- package/build/index.d.ts.map +1 -1
- package/build/index.js +5 -5
- package/build/index.js.map +1 -1
- package/build/question/inputs/CreateProjectInputs.d.ts +1 -15
- package/build/question/inputs/CreateProjectInputs.d.ts.map +1 -1
- package/build/question/options/CreateProjectOptions.d.ts +1 -1
- package/build/question/options/CreateProjectOptions.d.ts.map +1 -1
- package/build/question/options/CreateProjectOptions.js +0 -56
- package/build/question/options/CreateProjectOptions.js.map +1 -1
- package/build/question/other.js +2 -2
- package/build/question/other.js.map +1 -1
- package/build/question/questionNames.d.ts +6 -0
- package/build/question/questionNames.d.ts.map +1 -1
- package/build/question/questionNames.js +6 -0
- package/build/question/questionNames.js.map +1 -1
- package/build/question/scaffold/commonNodes.d.ts +7 -0
- package/build/question/scaffold/commonNodes.d.ts.map +1 -0
- package/build/question/scaffold/commonNodes.js +154 -0
- package/build/question/scaffold/commonNodes.js.map +1 -0
- package/build/question/scaffold/constructNode.d.ts +3 -0
- package/build/question/scaffold/constructNode.d.ts.map +1 -0
- package/build/question/scaffold/constructNode.js +50 -0
- package/build/question/scaffold/constructNode.js.map +1 -0
- package/build/question/scaffold/vs/createRootNode.d.ts.map +1 -1
- package/build/question/scaffold/vs/createRootNode.js +4 -16
- package/build/question/scaffold/vs/createRootNode.js.map +1 -1
- package/build/question/scaffold/vsc/createFromTdpNode.js +1 -1
- package/build/question/scaffold/vsc/createFromTdpNode.js.map +1 -1
- package/build/question/scaffold/vsc/createRootNode.d.ts +0 -7
- package/build/question/scaffold/vsc/createRootNode.d.ts.map +1 -1
- package/build/question/scaffold/vsc/createRootNode.js +3 -72
- package/build/question/scaffold/vsc/createRootNode.js.map +1 -1
- package/build/question/scaffold/vsc/customEngineAgentNode.d.ts +1 -1
- package/build/question/scaffold/vsc/customEngineAgentNode.d.ts.map +1 -1
- package/build/question/scaffold/vsc/customEngineAgentNode.js +22 -24
- package/build/question/scaffold/vsc/customEngineAgentNode.js.map +1 -1
- package/build/question/scaffold/vsc/daProjectTypeNode.js +4 -3
- package/build/question/scaffold/vsc/daProjectTypeNode.js.map +1 -1
- package/build/question/scaffold/vsc/teamsProjectTypeNode.d.ts +4 -7
- package/build/question/scaffold/vsc/teamsProjectTypeNode.d.ts.map +1 -1
- package/build/question/scaffold/vsc/teamsProjectTypeNode.js +106 -201
- package/build/question/scaffold/vsc/teamsProjectTypeNode.js.map +1 -1
- package/build/ui/visitor.d.ts.map +1 -1
- package/build/ui/visitor.js +5 -0
- package/build/ui/visitor.js.map +1 -1
- package/package.json +5 -5
- package/resource/package.nls.cs.json +2 -0
- package/resource/package.nls.de.json +2 -0
- package/resource/package.nls.es.json +2 -0
- package/resource/package.nls.fr.json +2 -0
- package/resource/package.nls.it.json +2 -0
- package/resource/package.nls.ja.json +2 -0
- package/resource/package.nls.json +10 -23
- package/resource/package.nls.ko.json +2 -0
- package/resource/package.nls.pl.json +2 -0
- package/resource/package.nls.pt-BR.json +2 -0
- package/resource/package.nls.ru.json +2 -0
- package/resource/package.nls.tr.json +2 -0
- package/resource/package.nls.zh-Hans.json +2 -0
- package/resource/package.nls.zh-Hant.json +2 -0
- package/resource/templates/package.nls.cs.json +25 -0
- package/resource/templates/package.nls.de.json +25 -0
- package/resource/templates/package.nls.es.json +25 -0
- package/resource/templates/package.nls.fr.json +25 -0
- package/resource/templates/package.nls.it.json +25 -0
- package/resource/templates/package.nls.ja.json +25 -0
- package/resource/templates/package.nls.json +33 -0
- package/resource/templates/package.nls.ko.json +25 -0
- package/resource/templates/package.nls.pl.json +25 -0
- package/resource/templates/package.nls.pt-BR.json +25 -0
- package/resource/templates/package.nls.ru.json +25 -0
- package/resource/templates/package.nls.tr.json +25 -0
- package/resource/templates/package.nls.zh-Hans.json +25 -0
- package/resource/templates/package.nls.zh-Hant.json +25 -0
- package/resource/templates/package.nls.zh-cn.json +21 -0
- package/resource/templates/package.nls.zh-tw.json +21 -0
- package/templates/fallback/common.zip +0 -0
- package/templates/fallback/csharp.zip +0 -0
- package/templates/fallback/js.zip +0 -0
- package/templates/fallback/python.zip +0 -0
- package/templates/fallback/ts.zip +0 -0
- package/templates/metadata/allTemplates.json +429 -0
- package/templates/metadata/defaultGeneratorTemplates.json +233 -0
- package/templates/metadata.zip +0 -0
- package/templates/ui/ceaNode.json +30 -0
- package/templates/ui/teamsNode.json +124 -0
- package/build/component/generator/templates/metadata/agentForTeams.d.ts +0 -3
- package/build/component/generator/templates/metadata/agentForTeams.d.ts.map +0 -1
- package/build/component/generator/templates/metadata/agentForTeams.js +0 -147
- package/build/component/generator/templates/metadata/agentForTeams.js.map +0 -1
- package/build/component/generator/templates/metadata/bot.d.ts +0 -3
- package/build/component/generator/templates/metadata/bot.d.ts.map +0 -1
- package/build/component/generator/templates/metadata/bot.js +0 -142
- package/build/component/generator/templates/metadata/bot.js.map +0 -1
- package/build/component/generator/templates/metadata/customEngineAgent.d.ts +0 -3
- package/build/component/generator/templates/metadata/customEngineAgent.d.ts.map +0 -1
- package/build/component/generator/templates/metadata/customEngineAgent.js +0 -51
- package/build/component/generator/templates/metadata/customEngineAgent.js.map +0 -1
- package/build/component/generator/templates/metadata/da.d.ts +0 -3
- package/build/component/generator/templates/metadata/da.d.ts.map +0 -1
- package/build/component/generator/templates/metadata/da.js +0 -117
- package/build/component/generator/templates/metadata/da.js.map +0 -1
- package/build/component/generator/templates/metadata/graphConnector.d.ts +0 -3
- package/build/component/generator/templates/metadata/graphConnector.d.ts.map +0 -1
- package/build/component/generator/templates/metadata/graphConnector.js +0 -15
- package/build/component/generator/templates/metadata/graphConnector.js.map +0 -1
- package/build/component/generator/templates/metadata/me.d.ts +0 -3
- package/build/component/generator/templates/metadata/me.d.ts.map +0 -1
- package/build/component/generator/templates/metadata/me.js +0 -111
- package/build/component/generator/templates/metadata/me.js.map +0 -1
- package/build/component/generator/templates/metadata/special.d.ts +0 -3
- package/build/component/generator/templates/metadata/special.d.ts.map +0 -1
- package/build/component/generator/templates/metadata/special.js +0 -70
- package/build/component/generator/templates/metadata/special.js.map +0 -1
- package/build/component/generator/templates/metadata/tab.d.ts +0 -3
- package/build/component/generator/templates/metadata/tab.d.ts.map +0 -1
- package/build/component/generator/templates/metadata/tab.js +0 -59
- package/build/component/generator/templates/metadata/tab.js.map +0 -1
- package/build/component/generator/templates/metadata/teams.d.ts +0 -3
- package/build/component/generator/templates/metadata/teams.d.ts.map +0 -1
- package/build/component/generator/templates/metadata/teams.js +0 -238
- package/build/component/generator/templates/metadata/teams.js.map +0 -1
- package/build/component/generator/templates/metadata/vs.d.ts +0 -3
- package/build/component/generator/templates/metadata/vs.d.ts.map +0 -1
- package/build/component/generator/templates/metadata/vs.js +0 -22
- package/build/component/generator/templates/metadata/vs.js.map +0 -1
- package/build/component/generator/templates/metadata/wxp.d.ts +0 -3
- package/build/component/generator/templates/metadata/wxp.d.ts.map +0 -1
- package/build/component/generator/templates/metadata/wxp.js +0 -33
- package/build/component/generator/templates/metadata/wxp.js.map +0 -1
- package/build/tsconfig.tsbuildinfo +0 -1
|
@@ -324,7 +324,6 @@
|
|
|
324
324
|
"core.createProjectQuestion.projectType.bot.detail": "Create instant, engaging chat experiences that automate tasks seamlessly",
|
|
325
325
|
"core.createProjectQuestion.projectType.teamsAgentsAndApps.label": "Teams Agents and Apps",
|
|
326
326
|
"core.createProjectQuestion.projectType.teamsAgentsAndApps.detail": "Create agent, chat bot, web pages or other apps in Microsoft Teams using Microsoft Teams SDK.",
|
|
327
|
-
"core.createProjectQuestion.projectType.teamsAgentsAndApps.title": "Teams Agent or App Using Microsoft Teams SDK",
|
|
328
327
|
"core.createProjectQuestion.projectType.bot.label": "Bot",
|
|
329
328
|
"core.createProjectQuestion.projectType.bot.title": "App Features Using a Bot",
|
|
330
329
|
"core.createProjectQuestion.projectType.messageExtension.copilotEnabled.detail": "Search and take actions from the text input box in Teams and Outlook",
|
|
@@ -340,8 +339,6 @@
|
|
|
340
339
|
"core.createProjectQuestion.projectType.copilotExtension.placeholder": "Select an option",
|
|
341
340
|
"core.createProjectQuestion.projectType.customCopilot.detail": "Build intelligent agent where you manage orchestration and provide your own LLM",
|
|
342
341
|
"core.createProjectQuestion.projectType.customCopilot.label": "Custom Engine Agent",
|
|
343
|
-
"core.createProjectQuestion.projectType.customCopilot.title": "App Features Using Microsoft 365 Agents SDK",
|
|
344
|
-
"core.createProjectQuestion.projectType.customCopilot.placeholder": "Select an option",
|
|
345
342
|
"core.createProjectQuestion.projectType.copilotHelp.label": "Don't know how to start? Use GitHub Copilot Chat",
|
|
346
343
|
"core.createProjectQuestion.projectType.copilotHelp.detail": "Chat with GitHub Copilot and get step-by-step instructions to develop your app or Microsoft 365 Copilot agent.",
|
|
347
344
|
"core.createProjectQuestion.projectType.copilotGroup.title": "Use GitHub Copilot",
|
|
@@ -349,7 +346,6 @@
|
|
|
349
346
|
"core.createProjectQuestion.projectType.createGroup.m365Apps": "Apps for Microsoft 365",
|
|
350
347
|
"core.createProjectQuestion.projectType.declarativeAgent.label": "Declarative Agent",
|
|
351
348
|
"core.createProjectQuestion.projectType.declarativeAgent.detail": "Create your own agent by declaring instructions, actions, & knowledge to suit your needs.",
|
|
352
|
-
"core.createProjectQuestion.teamsCapability.title": "Teams Capability",
|
|
353
349
|
"core.createProjectQuestion.title": "New Project",
|
|
354
350
|
"core.createProjectQuestion.capability.botMessageExtension.label": "Start with a Bot",
|
|
355
351
|
"core.createProjectQuestion.capability.botMessageExtension.detail": "Create a message extension using Agents SDK",
|
|
@@ -364,30 +360,11 @@
|
|
|
364
360
|
"core.createProjectQuestion.capability.searchOpenAPISpecQueryQuestion.placeholder": "Input text to search OpenAPI description document",
|
|
365
361
|
"core.createProjectQuestion.capability.selectOpenAPISpecQuestion.label": "Select OpenAPI Description Document",
|
|
366
362
|
"core.createProjectQuestion.capability.messageExtensionApiSpecOption.detail": "Create a message extension from your existing API",
|
|
367
|
-
"core.createProjectQuestion.capability.basicCustomEngineAgentOption.label": "Basic Custom Engine Agent",
|
|
368
|
-
"core.createProjectQuestion.capability.basicCustomEngineAgentOption.detail": "Intelligent agent that is built with Microsoft 365 Agents SDK and connects to your LLM",
|
|
369
|
-
"core.createProjectQuestion.capability.weatherAgentOption.label": "Weather Agent",
|
|
370
|
-
"core.createProjectQuestion.capability.weatherAgentOption.detail": "A weather forecast agent that is built with Microsoft 365 Agents SDK and LangChain",
|
|
371
|
-
"core.createProjectQuestion.capability.customCopilotBasicOption.label": "General Teams Agent",
|
|
372
|
-
"core.createProjectQuestion.capability.customCopilotBasicOption.detail": "Agent that chats with users in Teams built with Microsoft Teams SDK and connects to LLMs",
|
|
373
|
-
"core.createProjectQuestion.capability.customCopilotRagOption.label": "Teams Agent with Data",
|
|
374
|
-
"core.createProjectQuestion.capability.customCopilotRagOption.detail": "Agent that uses your content and knowledge to accurately answer domain-specific questions",
|
|
375
|
-
"core.createProjectQuestion.capability.teamsAgent.collaborator.label": "Teams Collaborator Agent",
|
|
376
|
-
"core.createProjectQuestion.capability.teamsAgent.collaborator.detail": "Agent that enhances collaboration in group chat, channels or meetings through summarization, task management, and conversation search",
|
|
377
|
-
"core.createProjectQuestion.capability.teamsAgent.others.label": "Other Teams Capabilities",
|
|
378
|
-
"core.createProjectQuestion.capability.teamsAgent.others.detail": "App that uses tab, bot and message extension",
|
|
379
363
|
"core.createProjectQuestion.capability.customCopilotAssistantOption.label": "Agent with API",
|
|
380
364
|
"core.createProjectQuestion.capability.customCopilotAssistantOption.detail": "Agent for Teams that can make decisions and perform actions based on LLM reasoning",
|
|
381
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomizeOption.label": "Customize",
|
|
382
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomizeOption.detail": "Decide how to load your data",
|
|
383
|
-
"core.createProjectQuestion.capability.customCopilotRagAzureAISearchOption.label": "Azure AI Search",
|
|
384
|
-
"core.createProjectQuestion.capability.customCopilotRagAzureAISearchOption.detail": "Load your data from Azure AI Search service",
|
|
385
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomApiOption.label": "Custom API",
|
|
386
|
-
"core.createProjectQuestion.capability.customCopilotRagCustomApiOption.detail": "Load your data from custom APIs based on OpenAPI description document",
|
|
387
365
|
"core.createProjectQuestion.capability.customCopilotRagMicrosoft365Option.label": "Microsoft 365",
|
|
388
366
|
"core.createProjectQuestion.capability.customCopilotRagMicrosoft365Option.detail": "Load your data from Microsoft Graph and SharePoint",
|
|
389
367
|
"core.createProjectQuestion.capability.customCopilotRag.title": "Chat With Your Data",
|
|
390
|
-
"core.createProjectQuestion.capability.customCopilotRag.placeholder": "Select an option to load your data",
|
|
391
368
|
"core.createProjectQuestion.capability.customCopilotAssistantNewOption.label": "Build from Scratch",
|
|
392
369
|
"core.createProjectQuestion.capability.customCopilotAssistantNewOption.detail": "Build your own AI Agent from scratch using Microsoft Teams SDK",
|
|
393
370
|
"core.createProjectQuestion.capability.customCopilotAssistantAssistantsApiOption.label": "Build with Assistants API",
|
|
@@ -927,6 +904,7 @@
|
|
|
927
904
|
"driver.teamsApp.summary.publishTeamsAppExists": "App with id %s already exists in the organization's app store.",
|
|
928
905
|
"driver.teamsApp.summary.publishTeamsAppNotExists": "App with id %s does not exist in the organization's app store.",
|
|
929
906
|
"driver.teamsApp.summary.publishTeamsAppSuccess": "App %s successfully published to the admin portal.",
|
|
907
|
+
"driver.teamsApp.error.localMcpCertVerificationFailed": "MSIX package certificate verification failed. One or more local mcp servers do not have a cert or have a self-signed cert.",
|
|
930
908
|
"driver.teamsApp.summary.copyAppPackageSuccess": "App %s was successfully copied to %s.",
|
|
931
909
|
"driver.teamsApp.summary.copyIconSuccess": "%s icon(s) were successfully updated under %s.",
|
|
932
910
|
"driver.teamsApp.summary.validate": "Microsoft 365 Agents Toolkit has checked against all validation rules:\n\nSummary:\n%s.\n%s%s\n%s\n\nA complete log of validations can be found in %s",
|
|
@@ -1158,6 +1136,15 @@
|
|
|
1158
1136
|
"core.createProjectQuestion.mcpForDa.Auth.OAuth": "OAuth (with static registration)",
|
|
1159
1137
|
"core.createProjectQuestion.mcpForDa.Auth.EntraSSO": "Entra SSO",
|
|
1160
1138
|
"core.createProjectQuestion.mcpForDa.File.title": "Select the action manifest you want to update",
|
|
1139
|
+
"core.createProjectQuestion.mcpServerType.title": "MCP Server Type",
|
|
1140
|
+
"core.createProjectQuestion.mcpServerType.placeholder": "Select where your MCP server is hosted",
|
|
1141
|
+
"core.createProjectQuestion.mcpServerType.local.label": "Local MCP Server",
|
|
1142
|
+
"core.createProjectQuestion.mcpServerType.local.detail": "Connect to an MCP server running on your local Windows system",
|
|
1143
|
+
"core.createProjectQuestion.mcpServerType.remote.label": "Remote MCP Server",
|
|
1144
|
+
"core.createProjectQuestion.mcpServerType.remote.detail": "Connect to an MCP server hosted remotely via HTTP",
|
|
1145
|
+
"core.createProjectQuestion.mcpLocalServer.title": "Local MCP Server",
|
|
1146
|
+
"core.createProjectQuestion.mcpLocalServer.placeholder": "Select a local MCP server",
|
|
1147
|
+
|
|
1161
1148
|
"core.MCPForDA.updatePluginManifest": "The operations selected from your MCP server are successfully added for Copilot to interact with. You can go to the '%s' to check on details. Now you are able to provision your declarative agent to continue.",
|
|
1162
1149
|
"core.MCPForDA.mcpAuthMetadataMissingError": "Unable to find the authentication metadata in the MCP server. Please make sure your MCP server is configured correctly and try again. Details: %s",
|
|
1163
1150
|
"core.MCPForDA.mcpAuthMetadataUrlNotFound": "Unable to find the authentication metadata from property \"resource_metadata\" from response of the MCP server.",
|
|
@@ -390,6 +390,8 @@
|
|
|
390
390
|
"core.createProjectQuestion.capability.customCopilotAssistant.placeholder": "AI 작업 관리 방법 선택",
|
|
391
391
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.label": "날씨 에이전트",
|
|
392
392
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.detail": "Microsoft 365 Agents SDK 및 의미 체계 커널을 사용하여 빌드된 일기 예보 에이전트",
|
|
393
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.label": "Travel Agent",
|
|
394
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.detail": "A travel planning agent, which is built with Microsoft 365 Agents SDK, Microsoft 365 Retrieval API and Agent Framework",
|
|
393
395
|
"core.createProjectQuestion.capability.customEngineAgent.description": "Teams 및 Microsoft 365 Copilot에서 작업",
|
|
394
396
|
"core.createProjectQuestion.capability.knowledgeWebSearch.label": "Web Search",
|
|
395
397
|
"core.createProjectQuestion.capability.knowledgeWebSearch.detail": "웹에서 접지 정보를 검색합니다.",
|
|
@@ -390,6 +390,8 @@
|
|
|
390
390
|
"core.createProjectQuestion.capability.customCopilotAssistant.placeholder": "Wybierz sposób zarządzania zadaniami AI",
|
|
391
391
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.label": "Agent pogody",
|
|
392
392
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.detail": "Agent prognozy pogody utworzony przy użyciu zestawu SDK agentów platformy Microsoft 365 i jądra semantycznego",
|
|
393
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.label": "Travel Agent",
|
|
394
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.detail": "A travel planning agent, which is built with Microsoft 365 Agents SDK, Microsoft 365 Retrieval API and Agent Framework",
|
|
393
395
|
"core.createProjectQuestion.capability.customEngineAgent.description": "Działa w usłudze Teams i rozwiązaniu Microsoft 365 Copilot",
|
|
394
396
|
"core.createProjectQuestion.capability.knowledgeWebSearch.label": "Wyszukiwanie w sieci Web",
|
|
395
397
|
"core.createProjectQuestion.capability.knowledgeWebSearch.detail": "Wyszukaj informacje o uziemieniach w sieci Web.",
|
|
@@ -390,6 +390,8 @@
|
|
|
390
390
|
"core.createProjectQuestion.capability.customCopilotAssistant.placeholder": "Escolha como você deseja gerenciar suas tarefas de IA",
|
|
391
391
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.label": "Agente de Clima",
|
|
392
392
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.detail": "Um agente de previsão do tempo, criado com o SDK do Microsoft 365 Agents e o Kernel Semântico",
|
|
393
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.label": "Travel Agent",
|
|
394
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.detail": "A travel planning agent, which is built with Microsoft 365 Agents SDK, Microsoft 365 Retrieval API and Agent Framework",
|
|
393
395
|
"core.createProjectQuestion.capability.customEngineAgent.description": "Funciona no Teams e no Microsoft 365 Copilot",
|
|
394
396
|
"core.createProjectQuestion.capability.knowledgeWebSearch.label": "Pesquisa na Web",
|
|
395
397
|
"core.createProjectQuestion.capability.knowledgeWebSearch.detail": "Pesquise na Web por informações de aterramento.",
|
|
@@ -390,6 +390,8 @@
|
|
|
390
390
|
"core.createProjectQuestion.capability.customCopilotAssistant.placeholder": "Выберите способ управления задачами ИИ",
|
|
391
391
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.label": "Агент погоды",
|
|
392
392
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.detail": "Агент прогноза погоды, созданный с использованием Microsoft 365 Agents SDK и Semantic Kernel",
|
|
393
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.label": "Travel Agent",
|
|
394
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.detail": "A travel planning agent, which is built with Microsoft 365 Agents SDK, Microsoft 365 Retrieval API and Agent Framework",
|
|
393
395
|
"core.createProjectQuestion.capability.customEngineAgent.description": "Работает в Teams и Microsoft 365 Copilot",
|
|
394
396
|
"core.createProjectQuestion.capability.knowledgeWebSearch.label": "Поиск в Интернете",
|
|
395
397
|
"core.createProjectQuestion.capability.knowledgeWebSearch.detail": "Поиск сведений о заземлениех в Интернете.",
|
|
@@ -390,6 +390,8 @@
|
|
|
390
390
|
"core.createProjectQuestion.capability.customCopilotAssistant.placeholder": "Yapay zeka görevlerinizi nasıl yönetmek istediğinizi seçin",
|
|
391
391
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.label": "Hava Durumu Aracısı",
|
|
392
392
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.detail": "Microsoft 365 Aracı SDK'sı ve Anlamsal Çekirdek ile oluşturulan bir hava durumu tahmin aracı",
|
|
393
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.label": "Travel Agent",
|
|
394
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.detail": "A travel planning agent, which is built with Microsoft 365 Agents SDK, Microsoft 365 Retrieval API and Agent Framework",
|
|
393
395
|
"core.createProjectQuestion.capability.customEngineAgent.description": "Teams ve Microsoft 365 Copilot'ta çalışır",
|
|
394
396
|
"core.createProjectQuestion.capability.knowledgeWebSearch.label": "Web Araması",
|
|
395
397
|
"core.createProjectQuestion.capability.knowledgeWebSearch.detail": "Web'de topraklama bilgilerini arayın.",
|
|
@@ -390,6 +390,8 @@
|
|
|
390
390
|
"core.createProjectQuestion.capability.customCopilotAssistant.placeholder": "选择如何管理 AI 任务",
|
|
391
391
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.label": "天气代理",
|
|
392
392
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.detail": "一个天气预报智能体,它是使用 Microsoft 365 智能体 SDK 和语义内核生成的",
|
|
393
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.label": "Travel Agent",
|
|
394
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.detail": "A travel planning agent, which is built with Microsoft 365 Agents SDK, Microsoft 365 Retrieval API and Agent Framework",
|
|
393
395
|
"core.createProjectQuestion.capability.customEngineAgent.description": "在 Teams 和适用于 Microsoft 365 的 Copilot 中工作",
|
|
394
396
|
"core.createProjectQuestion.capability.knowledgeWebSearch.label": "Web 搜索",
|
|
395
397
|
"core.createProjectQuestion.capability.knowledgeWebSearch.detail": "在 Web 上搜索接地信息。",
|
|
@@ -390,6 +390,8 @@
|
|
|
390
390
|
"core.createProjectQuestion.capability.customCopilotAssistant.placeholder": "選擇您要如何管理 AI 工作",
|
|
391
391
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.label": "天氣代理程式",
|
|
392
392
|
"core.createProjectQuestion.capability.customCopilotWeatherOption.detail": "天氣預測代理程式,由 Microsoft 365 代理程式 SDK 和語意核心所建置",
|
|
393
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.label": "Travel Agent",
|
|
394
|
+
"core.createProjectQuestion.capability.customCopilotTravelOption.detail": "A travel planning agent, which is built with Microsoft 365 Agents SDK, Microsoft 365 Retrieval API and Agent Framework",
|
|
393
395
|
"core.createProjectQuestion.capability.customEngineAgent.description": "可在 Teams 和 Microsoft 365 Copilot 中運作",
|
|
394
396
|
"core.createProjectQuestion.capability.knowledgeWebSearch.label": "網路搜尋",
|
|
395
397
|
"core.createProjectQuestion.capability.knowledgeWebSearch.detail": "搜尋網站以取得接地資訊。",
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"template.teams.others.bot.detail": "Jednoduchá implementace echo robota, který je připravený k přizpůsobení",
|
|
3
|
+
"template.teams.others.bot.label": "Basic Bot",
|
|
4
|
+
"template.teams.others.messageExtension.detail": "Přijmout uživatelský vstup, zpracovat ho a odeslat přizpůsobené výsledky",
|
|
5
|
+
"template.teams.others.messageExtension.label": "Rozšíření zprávy",
|
|
6
|
+
"template.teams.others.tab.detail": "Jednoduchá implementace webové aplikace, která je připravená k přizpůsobení",
|
|
7
|
+
"template.teams.others.tab.label": "Karta Základní",
|
|
8
|
+
"template.basicCustomEngineAgent.detail": "Inteligentní agent vytvořený pomocí sady SDK pro agenty Microsoft 365, který se připojuje k vašemu modelu LLM",
|
|
9
|
+
"template.basicCustomEngineAgent.label": "Základní vlastní agent modulu",
|
|
10
|
+
"template.teams.general.detail": "Agent, který chatuje s uživateli v Microsoft Teams, vytvořený pomocí knihovny Teams AI, a připojuje se k modelům LLM",
|
|
11
|
+
"template.teams.general.label": "Základní agent pro Teams",
|
|
12
|
+
"template.teams.rag.source.placeholder": "Vyberte možnost pro načtení dat.",
|
|
13
|
+
"template.teams.rag.source.azureAISearch.detail": "Umožňuje načíst data ze služby Azure AI Vyhledávač.",
|
|
14
|
+
"template.teams.rag.source.azureAISearch.label": "Azure AI Vyhledávač",
|
|
15
|
+
"template.teams.rag.source.customApi.detail": "Umožňuje načíst data z vlastních rozhraní API na základě dokumentu s popisem OpenAPI.",
|
|
16
|
+
"template.teams.rag.source.customApi.label": "Vlastní rozhraní API",
|
|
17
|
+
"template.teams.rag.source.customize.detail": "Rozhodněte, jak načíst data.",
|
|
18
|
+
"template.teams.rag.source.customize.label": "Přizpůsobit",
|
|
19
|
+
"template.teams.rag.detail": "Agent, který využívá váš obsah a znalosti k přesnému odpovídání na otázky specifické pro danou oblast.",
|
|
20
|
+
"template.teams.rag.label": "Chat s vašimi daty",
|
|
21
|
+
"template.customEngineAgent.weather.detail": "Agent předpovědi počasí, který je vytvořený pomocí sady SDK pro agenty Microsoft 365 a LangChain",
|
|
22
|
+
"template.customEngineAgent.weather.label": "Agent počasí",
|
|
23
|
+
"template.customEngineAgent.placeholder": "Vyberte možnost",
|
|
24
|
+
"template.customEngineAgent.title": "Funkce aplikace využívající sadu SDK pro agenty Microsoft 365"
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"template.teams.others.bot.detail": "Eine einfache Implementierung eines Echobots, der angepasst werden kann",
|
|
3
|
+
"template.teams.others.bot.label": "Grundlegender Bot",
|
|
4
|
+
"template.teams.others.messageExtension.detail": "Benutzereingaben empfangen, verarbeiten und benutzerdefinierte Ergebnisse senden",
|
|
5
|
+
"template.teams.others.messageExtension.label": "Nachrichtenerweiterung",
|
|
6
|
+
"template.teams.others.tab.detail": "Eine einfache Implementierung einer Web-App, die zum Anpassen bereit ist",
|
|
7
|
+
"template.teams.others.tab.label": "Standardregisterkarte",
|
|
8
|
+
"template.basicCustomEngineAgent.detail": "Intelligenter Agent, der mit dem Microsoft 365 Agents SDK erstellt wurde und eine Verbindung zu Ihrem LLM herstellt",
|
|
9
|
+
"template.basicCustomEngineAgent.label": "Benutzerdefinierter Basic-Engine-Agent",
|
|
10
|
+
"template.teams.general.detail": "Agent, der mit Benutzenden in Microsoft Teams chattet, mit der Teams AI Library erstellt wurde und eine Verbindung zu LLMs herstellt",
|
|
11
|
+
"template.teams.general.label": "Basic-Agent für Microsoft Teams",
|
|
12
|
+
"template.teams.rag.source.placeholder": "Wählen Sie eine Option zum Laden Ihrer Daten aus.",
|
|
13
|
+
"template.teams.rag.source.azureAISearch.detail": "Laden Sie Ihre Daten aus dem Azure KI-Suchdienst",
|
|
14
|
+
"template.teams.rag.source.azureAISearch.label": "Azure KI-Suche",
|
|
15
|
+
"template.teams.rag.source.customApi.detail": "Laden Sie Ihre Daten basierend auf dem OpenAPI-Beschreibungsdokument aus benutzerdefinierten APIs",
|
|
16
|
+
"template.teams.rag.source.customApi.label": "Benutzerdefinierte API",
|
|
17
|
+
"template.teams.rag.source.customize.detail": "Entscheiden Sie, wie Ihre Daten geladen werden sollen",
|
|
18
|
+
"template.teams.rag.source.customize.label": "Anpassen",
|
|
19
|
+
"template.teams.rag.detail": "Agent, der Ihre Inhalte und Ihr Wissen nutzt, um domänenspezifische Fragen präzise zu beantworten",
|
|
20
|
+
"template.teams.rag.label": "Stellen Sie Fragen zu Ihren Daten",
|
|
21
|
+
"template.customEngineAgent.weather.detail": "Ein Wettervorhersage-Agent, der mit Microsoft 365 Agents SDK und LangChain erstellt wird",
|
|
22
|
+
"template.customEngineAgent.weather.label": "Wetter-Agent",
|
|
23
|
+
"template.customEngineAgent.placeholder": "Option auswählen",
|
|
24
|
+
"template.customEngineAgent.title": "App-Feature mit Microsoft 365 Agents SDK"
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"template.teams.others.bot.detail": "Una implementación sencilla de un bot de eco que está listo para la personalización",
|
|
3
|
+
"template.teams.others.bot.label": "Bot básico",
|
|
4
|
+
"template.teams.others.messageExtension.detail": "Recibir la entrada del usuario, procesarla y enviar resultados personalizados",
|
|
5
|
+
"template.teams.others.messageExtension.label": "Extensión de mensajes",
|
|
6
|
+
"template.teams.others.tab.detail": "Implementación sencilla de una aplicación web que está lista para personalizar",
|
|
7
|
+
"template.teams.others.tab.label": "Pestaña Básico",
|
|
8
|
+
"template.basicCustomEngineAgent.detail": "Agente inteligente compilado con el SDK de agentes de Microsoft 365 que se conecta al LLM",
|
|
9
|
+
"template.basicCustomEngineAgent.label": "Agente de motor personalizado Básico",
|
|
10
|
+
"template.teams.general.detail": "Agente que chatea con usuarios en Microsoft Teams, compilado con la biblioteca de IA de Teams y que se conecta a LLM",
|
|
11
|
+
"template.teams.general.label": "Agente Básico para Teams",
|
|
12
|
+
"template.teams.rag.source.placeholder": "Seleccione una opción para cargar los datos",
|
|
13
|
+
"template.teams.rag.source.azureAISearch.detail": "Cargue los datos del servicio de Búsqueda de Azure AI",
|
|
14
|
+
"template.teams.rag.source.azureAISearch.label": "búsqueda de Azure AI",
|
|
15
|
+
"template.teams.rag.source.customApi.detail": "Carga de datos desde API personalizadas basadas en el documento de descripción de OpenAPI",
|
|
16
|
+
"template.teams.rag.source.customApi.label": "API personalizada",
|
|
17
|
+
"template.teams.rag.source.customize.detail": "Decidir cómo cargar los datos",
|
|
18
|
+
"template.teams.rag.source.customize.label": "Personalizar",
|
|
19
|
+
"template.teams.rag.detail": "Agente que utiliza su contenido y conocimientos para responder con precisión a preguntas específicas del dominio",
|
|
20
|
+
"template.teams.rag.label": "Interactuar con sus datos",
|
|
21
|
+
"template.customEngineAgent.weather.detail": "Un agente de previsión meteorológica, que se compila con el SDK de agentes de Microsoft 365 y LangChain",
|
|
22
|
+
"template.customEngineAgent.weather.label": "Agente de El Tiempo",
|
|
23
|
+
"template.customEngineAgent.placeholder": "Seleccionar una opción",
|
|
24
|
+
"template.customEngineAgent.title": "Características de la aplicación que utilizan el SDK de agentes de Microsoft 365"
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"template.teams.others.bot.detail": "Implémentation simple d’un bot d’écho prêt pour la personnalisation",
|
|
3
|
+
"template.teams.others.bot.label": "Bot de base",
|
|
4
|
+
"template.teams.others.messageExtension.detail": "Recevoir l’entrée utilisateur, la traiter et envoyer des résultats personnalisés",
|
|
5
|
+
"template.teams.others.messageExtension.label": "Message Extension",
|
|
6
|
+
"template.teams.others.tab.detail": "Implémentation simple d’une application web prête à être personnalisée",
|
|
7
|
+
"template.teams.others.tab.label": "Onglet De base",
|
|
8
|
+
"template.basicCustomEngineAgent.detail": "Agent intelligent conçu avec Microsoft 365 Agents SDK et qui se connecte à votre LLM",
|
|
9
|
+
"template.basicCustomEngineAgent.label": "Agent de moteur personnalisé de base",
|
|
10
|
+
"template.teams.general.detail": "Assistant qui discute avec des utilisateurs dans Teams, construit avec la bibliothèque d’IA Teams et se connecte aux LLM",
|
|
11
|
+
"template.teams.general.label": "Assistant de base pour Teams",
|
|
12
|
+
"template.teams.rag.source.placeholder": "Sélectionnez une option pour charger vos données",
|
|
13
|
+
"template.teams.rag.source.azureAISearch.detail": "Chargez vos données depuis le service Recherche Azure AI",
|
|
14
|
+
"template.teams.rag.source.azureAISearch.label": "Recherche Azure AI",
|
|
15
|
+
"template.teams.rag.source.customApi.detail": "Chargez vos données à partir d’API personnalisées en fonction du document de description OpenAPI",
|
|
16
|
+
"template.teams.rag.source.customApi.label": "API personnalisée",
|
|
17
|
+
"template.teams.rag.source.customize.detail": "Décidez comment charger vos données",
|
|
18
|
+
"template.teams.rag.source.customize.label": "Personnaliser",
|
|
19
|
+
"template.teams.rag.detail": "Assistant qui utilise votre contenu et vos connaissances pour répondre avec précision aux questions propres au domaine.",
|
|
20
|
+
"template.teams.rag.label": "Converser avec vos données",
|
|
21
|
+
"template.customEngineAgent.weather.detail": "Agent de prévisions météo, conçu avec Microsoft 365 Agents SDK et LangChain",
|
|
22
|
+
"template.customEngineAgent.weather.label": "Agent météo",
|
|
23
|
+
"template.customEngineAgent.placeholder": "Sélectionnez une option",
|
|
24
|
+
"template.customEngineAgent.title": "Fonctionnalités de l’application utilisant Microsoft 365 Agents SDK"
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"template.teams.others.bot.detail": "Semplice implementazione di un echo bot pronto per la personalizzazione",
|
|
3
|
+
"template.teams.others.bot.label": "Bot Basic",
|
|
4
|
+
"template.teams.others.messageExtension.detail": "Ricevi input dell'utente, elaboralo e invia risultati personalizzati",
|
|
5
|
+
"template.teams.others.messageExtension.label": "Estensione messaggio",
|
|
6
|
+
"template.teams.others.tab.detail": "Semplice implementazione di un'app Web pronta per la personalizzazione",
|
|
7
|
+
"template.teams.others.tab.label": "Scheda di base",
|
|
8
|
+
"template.basicCustomEngineAgent.detail": "Agente intelligente creato con l'SDK per agenti Microsoft 365 e che si connette a un LLM",
|
|
9
|
+
"template.basicCustomEngineAgent.label": "Agente del motore personalizzato di base",
|
|
10
|
+
"template.teams.general.detail": "Agente che chatta con gli utenti in Teams, creato con la libreria di IA di Teams e che si connette a LLM",
|
|
11
|
+
"template.teams.general.label": "Agente di base per Teams",
|
|
12
|
+
"template.teams.rag.source.placeholder": "Selezionare un'opzione per caricare i dati",
|
|
13
|
+
"template.teams.rag.source.azureAISearch.detail": "Caricare i dati da servizio di Azure Al Search",
|
|
14
|
+
"template.teams.rag.source.azureAISearch.label": "Azure AI Search",
|
|
15
|
+
"template.teams.rag.source.customApi.detail": "Caricare i dati dalle API personalizzate in base al documento di descrizione OpenAPI",
|
|
16
|
+
"template.teams.rag.source.customApi.label": "API personalizzata",
|
|
17
|
+
"template.teams.rag.source.customize.detail": "Decidere come caricare i dati",
|
|
18
|
+
"template.teams.rag.source.customize.label": "Personalizza",
|
|
19
|
+
"template.teams.rag.detail": "Agente che usa il contenuto e le conoscenze per rispondere in modo accurato a domande specifiche del dominio",
|
|
20
|
+
"template.teams.rag.label": "Analizzare i dati in chat",
|
|
21
|
+
"template.customEngineAgent.weather.detail": "Agente di previsioni meteo creato con SDK per agenti Microsoft 365 e LangChain",
|
|
22
|
+
"template.customEngineAgent.weather.label": "Agente Meteo",
|
|
23
|
+
"template.customEngineAgent.placeholder": "Selezionare un'opzione",
|
|
24
|
+
"template.customEngineAgent.title": "Funzionalità dell'app con SDK per agenti Microsoft 365"
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"template.teams.others.bot.detail": "カスタマイズに対応したエコー ボットの簡単な実装",
|
|
3
|
+
"template.teams.others.bot.label": "基本ボット",
|
|
4
|
+
"template.teams.others.messageExtension.detail": "ユーザー入力を受け取り、処理し、カスタマイズされた結果を送信します",
|
|
5
|
+
"template.teams.others.messageExtension.label": "メッセージ拡張機能",
|
|
6
|
+
"template.teams.others.tab.detail": "簡単にカスタマイズできる Web アプリの簡単な実装",
|
|
7
|
+
"template.teams.others.tab.label": "[基本] タブ",
|
|
8
|
+
"template.basicCustomEngineAgent.detail": "Microsoft 365 エージェント SDK で構築され、LLM に接続するインテリジェント エージェント",
|
|
9
|
+
"template.basicCustomEngineAgent.label": "基本的なカスタム エンジン エージェント",
|
|
10
|
+
"template.teams.general.detail": "Teams AI ライブラリを使用して構築された Teams でユーザーとチャットし、LLM に接続するエージェント",
|
|
11
|
+
"template.teams.general.label": "Teams の基本エージェント",
|
|
12
|
+
"template.teams.rag.source.placeholder": "データを読み込むオプションを選択します",
|
|
13
|
+
"template.teams.rag.source.azureAISearch.detail": "Azure AI Search Service からデータを読み込みます",
|
|
14
|
+
"template.teams.rag.source.azureAISearch.label": "Azure AI 検索",
|
|
15
|
+
"template.teams.rag.source.customApi.detail": "OpenAPI 記述ドキュメントに基づいて、カスタム API からデータを読み込みます",
|
|
16
|
+
"template.teams.rag.source.customApi.label": "カスタム API",
|
|
17
|
+
"template.teams.rag.source.customize.detail": "データの読み込み方法を決定します",
|
|
18
|
+
"template.teams.rag.source.customize.label": "カスタマイズ",
|
|
19
|
+
"template.teams.rag.detail": "あなたのコンテンツと知識を活用してドメイン固有の質問に正確に答えるエージェント",
|
|
20
|
+
"template.teams.rag.label": "データとのチャット",
|
|
21
|
+
"template.customEngineAgent.weather.detail": "Microsoft 365 エージェント SDK と LangChain を使用して構築された天気予報エージェント",
|
|
22
|
+
"template.customEngineAgent.weather.label": "天気エージェント",
|
|
23
|
+
"template.customEngineAgent.placeholder": "オプションを選択します",
|
|
24
|
+
"template.customEngineAgent.title": "Microsoft 365 エージェント SDK を使用したアプリ機能"
|
|
25
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"template.customEngineAgent.basic.detail": "Intelligent agent that is built with Microsoft 365 Agents SDK and connects to your LLM",
|
|
3
|
+
"template.customEngineAgent.basic.label": "Basic Custom Engine Agent",
|
|
4
|
+
"template.customEngineAgent.placeholder": "Select an option",
|
|
5
|
+
"template.customEngineAgent.title": "App Features Using Microsoft 365 Agents SDK",
|
|
6
|
+
"template.customEngineAgent.travel.detail": "A travel planning agent, which is built with Microsoft 365 Agents SDK, Microsoft 365 Retrieval API and Agent Framework",
|
|
7
|
+
"template.customEngineAgent.travel.label": "Travel Agent",
|
|
8
|
+
"template.customEngineAgent.weather.detail": "A weather forecast agent that is built with Microsoft 365 Agents SDK and LangChain",
|
|
9
|
+
"template.customEngineAgent.weather.label": "Weather Agent",
|
|
10
|
+
"template.teams.collaboratorAgent.detail": "Agent that enhances collaboration in group chat, channels or meetings through summarization, task management, and conversation search",
|
|
11
|
+
"template.teams.collaboratorAgent.label": "Teams Collaborator Agent",
|
|
12
|
+
"template.teams.general.detail": "Agent that chats with users in Teams built with Teams AI Library and connects to LLMs",
|
|
13
|
+
"template.teams.general.label": "General Teams Agent",
|
|
14
|
+
"template.teams.others.bot.detail": "A simple implementation of an echo bot that's ready for customization",
|
|
15
|
+
"template.teams.others.bot.label": "Simple Bot",
|
|
16
|
+
"template.teams.others.capability.title": "Teams Capability",
|
|
17
|
+
"template.teams.others.detail": "App that uses tab, bot and message extension",
|
|
18
|
+
"template.teams.others.label": "Other Teams Capabilities",
|
|
19
|
+
"template.teams.others.messageExtension.detail": "Receive user input, process it, and send customized results",
|
|
20
|
+
"template.teams.others.messageExtension.label": "Message Extension",
|
|
21
|
+
"template.teams.others.tab.detail": "A simple implementation of a web app that's ready to customize",
|
|
22
|
+
"template.teams.others.tab.label": "Tab",
|
|
23
|
+
"template.teams.rag.detail": "Agent that uses your content and knowledge to accurately answer domain-specific questions",
|
|
24
|
+
"template.teams.rag.label": "Teams Agent with Data",
|
|
25
|
+
"template.teams.rag.source.azureAISearch.detail": "Load your data from Azure AI Search service",
|
|
26
|
+
"template.teams.rag.source.azureAISearch.label": "Azure AI Search",
|
|
27
|
+
"template.teams.rag.source.customApi.detail": "Load your data from custom APIs based on OpenAPI description document",
|
|
28
|
+
"template.teams.rag.source.customApi.label": "Custom API",
|
|
29
|
+
"template.teams.rag.source.customize.detail": "Decide how to load your data",
|
|
30
|
+
"template.teams.rag.source.customize.label": "Customize",
|
|
31
|
+
"template.teams.rag.source.placeholder": "Select an option to load your data",
|
|
32
|
+
"template.teams.title": "Teams Agent or App Using Microsoft Teams SDK"
|
|
33
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"template.teams.others.bot.detail": "사용자 지정할 준비가 된 에코 봇의 간단한 구현",
|
|
3
|
+
"template.teams.others.bot.label": "기본 봇",
|
|
4
|
+
"template.teams.others.messageExtension.detail": "사용자 입력 수신, 처리 및 사용자 지정 결과 보내기",
|
|
5
|
+
"template.teams.others.messageExtension.label": "메시지 확장",
|
|
6
|
+
"template.teams.others.tab.detail": "사용자 지정할 준비가 된 웹앱의 간단한 구현",
|
|
7
|
+
"template.teams.others.tab.label": "기본 탭",
|
|
8
|
+
"template.basicCustomEngineAgent.detail": "Microsoft 365 에이전트 SDK로 구축되고 LLM에 연결되는 지능형 에이전트",
|
|
9
|
+
"template.basicCustomEngineAgent.label": "기본 사용자 지정 엔진 에이전트",
|
|
10
|
+
"template.teams.general.detail": "Teams AI 라이브러리를 사용하여 구축된 Teams에서 사용자와 채팅하고 LLM에 연결하는 에이전트",
|
|
11
|
+
"template.teams.general.label": "Teams용 기본 에이전트",
|
|
12
|
+
"template.teams.rag.source.placeholder": "데이터를 로드하는 옵션 선택",
|
|
13
|
+
"template.teams.rag.source.azureAISearch.detail": "Azure AI Search Service 데이터 로드",
|
|
14
|
+
"template.teams.rag.source.azureAISearch.label": "Azure AI 검색",
|
|
15
|
+
"template.teams.rag.source.customApi.detail": "OpenAPI 설명 문서에 따라 사용자 지정 API에서 데이터 로드",
|
|
16
|
+
"template.teams.rag.source.customApi.label": "사용자 지정 API",
|
|
17
|
+
"template.teams.rag.source.customize.detail": "데이터 로드 방법 결정",
|
|
18
|
+
"template.teams.rag.source.customize.label": "사용자 지정",
|
|
19
|
+
"template.teams.rag.detail": "콘텐츠 및 지식을 사용하여 도메인별 질문에 정확하게 답변하는 에이전트",
|
|
20
|
+
"template.teams.rag.label": "데이터와 채팅",
|
|
21
|
+
"template.customEngineAgent.weather.detail": "Microsoft 365 에이전트 SDK 및 LangChain을 사용하여 구축된 날씨 예측 에이전트",
|
|
22
|
+
"template.customEngineAgent.weather.label": "날씨 에이전트",
|
|
23
|
+
"template.customEngineAgent.placeholder": "옵션 선택",
|
|
24
|
+
"template.customEngineAgent.title": "Microsoft 365 에이전트 SDK를 사용하는 앱 기능"
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"template.teams.others.bot.detail": "Prosta implementacja bota echa gotowego do dostosowania",
|
|
3
|
+
"template.teams.others.bot.label": "Bot podstawowy",
|
|
4
|
+
"template.teams.others.messageExtension.detail": "Odbieraj dane wejściowe użytkownika, przetwarzaj je i wysyłaj dostosowane wyniki",
|
|
5
|
+
"template.teams.others.messageExtension.label": "Rozszerzenie Message",
|
|
6
|
+
"template.teams.others.tab.detail": "Prosta implementacja aplikacji internetowej, którą można dostosowywać",
|
|
7
|
+
"template.teams.others.tab.label": "Karta podstawowa",
|
|
8
|
+
"template.basicCustomEngineAgent.detail": "Inteligentny agent utworzony przy użyciu zestawu Microsoft 365 Agents SDK i łączący się z Twoim dużym modelem językowym",
|
|
9
|
+
"template.basicCustomEngineAgent.label": "Podstawowy agent aparatu niestandardowego",
|
|
10
|
+
"template.teams.general.detail": "Agent, który rozmawia z użytkownikami w usłudze Teams utworzonej za pomocą biblioteki AI usługi Teams i łączy się z dużymi modelami językowymi",
|
|
11
|
+
"template.teams.general.label": "Agent podstawowy dla usługi Teams",
|
|
12
|
+
"template.teams.rag.source.placeholder": "Wybierz opcję ładowania danych",
|
|
13
|
+
"template.teams.rag.source.azureAISearch.detail": "Załaduj dane z platformy Wyszukiwanie AI platformy Azure",
|
|
14
|
+
"template.teams.rag.source.azureAISearch.label": "Wyszukiwanie AI platformy Azure",
|
|
15
|
+
"template.teams.rag.source.customApi.detail": "Załaduj dane z niestandardowych interfejsów API na podstawie dokumentu opisu interfejsu OpenAPI",
|
|
16
|
+
"template.teams.rag.source.customApi.label": "Niestandardowy interfejs API",
|
|
17
|
+
"template.teams.rag.source.customize.detail": "Zdecyduj, jak załadować dane",
|
|
18
|
+
"template.teams.rag.source.customize.label": "Dostosuj",
|
|
19
|
+
"template.teams.rag.detail": "Agent, który używa Twojej zawartości i wiedzy do dokładnego odpowiadania na pytania specyficzne dla domeny",
|
|
20
|
+
"template.teams.rag.label": "Porozmawiaj ze swoimi danymi",
|
|
21
|
+
"template.customEngineAgent.weather.detail": "Agent prognozy pogody utworzony przy użyciu zestawu Microsoft 365 Agents SDK i języka LangChain",
|
|
22
|
+
"template.customEngineAgent.weather.label": "Agent pogody",
|
|
23
|
+
"template.customEngineAgent.placeholder": "Wybierz opcję",
|
|
24
|
+
"template.customEngineAgent.title": "Funkcje aplikacji przy użyciu zestawu SDK agentów usługi Microsoft 365"
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"template.teams.others.bot.detail": "Uma implementação simples de um bot de eco que está pronto para personalização",
|
|
3
|
+
"template.teams.others.bot.label": "Bot Básico",
|
|
4
|
+
"template.teams.others.messageExtension.detail": "Receber entrada do usuário, processá-la e enviar resultados personalizados",
|
|
5
|
+
"template.teams.others.messageExtension.label": "Extensão de Mensagem",
|
|
6
|
+
"template.teams.others.tab.detail": "Uma implementação simples de um aplicativo da web pronto para personalizar",
|
|
7
|
+
"template.teams.others.tab.label": "Guia Básica",
|
|
8
|
+
"template.basicCustomEngineAgent.detail": "Agente inteligente criado com o SDK de Agentes do Microsoft 365 e conectado ao seu LLM",
|
|
9
|
+
"template.basicCustomEngineAgent.label": "Agente Básico de Mecanismo Personalizado",
|
|
10
|
+
"template.teams.general.detail": "Agente que conversa com usuários no Teams, criado com a Biblioteca de IA do Teams e se conecta a LLMs",
|
|
11
|
+
"template.teams.general.label": "Agente Básico para o Teams",
|
|
12
|
+
"template.teams.rag.source.placeholder": "Selecione uma opção para carregar seus dados",
|
|
13
|
+
"template.teams.rag.source.azureAISearch.detail": "Carregar seus dados do serviço de Pesquisa de IA do Azure",
|
|
14
|
+
"template.teams.rag.source.azureAISearch.label": "Pesquisa de IA do Azure",
|
|
15
|
+
"template.teams.rag.source.customApi.detail": "Carregue seus dados de APIs personalizadas com base no documento de descrição do OpenAPI",
|
|
16
|
+
"template.teams.rag.source.customApi.label": "API Personalizada",
|
|
17
|
+
"template.teams.rag.source.customize.detail": "Decida como carregar seus dados",
|
|
18
|
+
"template.teams.rag.source.customize.label": "Personalizar",
|
|
19
|
+
"template.teams.rag.detail": "Agente que usa seu conteúdo e conhecimento para responder com precisão a perguntas específicas de domínio",
|
|
20
|
+
"template.teams.rag.label": "Converse com seus dados",
|
|
21
|
+
"template.customEngineAgent.weather.detail": "Um agente de previsão do clima criado com o SDK de Agentes do Microsoft 365 e LangChain",
|
|
22
|
+
"template.customEngineAgent.weather.label": "Agente de Clima",
|
|
23
|
+
"template.customEngineAgent.placeholder": "Selecione uma opção",
|
|
24
|
+
"template.customEngineAgent.title": "Recursos do Aplicativo que Usam o SDK de Agentes do Microsoft 365"
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"template.teams.others.bot.detail": "Простая реализация эхо-бота, готовая к настройке",
|
|
3
|
+
"template.teams.others.bot.label": "Базовый бот",
|
|
4
|
+
"template.teams.others.messageExtension.detail": "Получение пользовательских входных данных, их обработка и отправка настраиваемых результатов",
|
|
5
|
+
"template.teams.others.messageExtension.label": "Расширение для сообщений",
|
|
6
|
+
"template.teams.others.tab.detail": "Простая реализация веб-приложения, готового к настройке",
|
|
7
|
+
"template.teams.others.tab.label": "Вкладка \"Базовый\"",
|
|
8
|
+
"template.basicCustomEngineAgent.detail": "Интеллектуальный агент, созданный с помощью Пакета SDK агентов Microsoft 365 и подключающийся к LLM",
|
|
9
|
+
"template.basicCustomEngineAgent.label": "Базовый пользовательский агент подсистемы",
|
|
10
|
+
"template.teams.general.detail": "Агент для общения в чате с пользователями в Teams, созданный с использованием библиотеки ИИ Teams и подключенный к большим языковым моделям",
|
|
11
|
+
"template.teams.general.label": "Базовый агент для Teams",
|
|
12
|
+
"template.teams.rag.source.placeholder": "Выберите вариант загрузки данных",
|
|
13
|
+
"template.teams.rag.source.azureAISearch.detail": "Загрузить данные из службы \"Поиск с использованием ИИ Azure\"",
|
|
14
|
+
"template.teams.rag.source.azureAISearch.label": "Поиск с использованием ИИ Azure",
|
|
15
|
+
"template.teams.rag.source.customApi.detail": "Загрузить данные из пользовательских API на основе документа с описанием OpenAPI",
|
|
16
|
+
"template.teams.rag.source.customApi.label": "Пользовательский API",
|
|
17
|
+
"template.teams.rag.source.customize.detail": "Выберите, как следует загружать данные",
|
|
18
|
+
"template.teams.rag.source.customize.label": "Настроить",
|
|
19
|
+
"template.teams.rag.detail": "Агент, который использует контент и знания для точного ответа на вопросы, связанные с конкретной областью",
|
|
20
|
+
"template.teams.rag.label": "Общение в чате с данными",
|
|
21
|
+
"template.customEngineAgent.weather.detail": "Агент прогноза погоды, созданный с помощью Пакета SDK агентов Microsoft 365 и LangChain",
|
|
22
|
+
"template.customEngineAgent.weather.label": "Агент погоды",
|
|
23
|
+
"template.customEngineAgent.placeholder": "Выберите вариант",
|
|
24
|
+
"template.customEngineAgent.title": "Функции приложения, использующие Пакет SDK агентов Microsoft 365"
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"template.teams.others.bot.detail": "Özelleştirilmeye hazır bir echo bota ilişkin basit uygulama",
|
|
3
|
+
"template.teams.others.bot.label": "Temel Bot",
|
|
4
|
+
"template.teams.others.messageExtension.detail": "Kullanıcı girişi alın, işleyin ve özelleştirilmiş sonuçlar gönderin",
|
|
5
|
+
"template.teams.others.messageExtension.label": "İleti Uzantısı",
|
|
6
|
+
"template.teams.others.tab.detail": "Özelleştirmeye hazır bir web uygulaması için basit bir uygulama",
|
|
7
|
+
"template.teams.others.tab.label": "Temel Sekme",
|
|
8
|
+
"template.basicCustomEngineAgent.detail": "Microsoft 365 Aracıları SDK'sı ile oluşturulan ve LLM'nize bağlanan akıllı aracı",
|
|
9
|
+
"template.basicCustomEngineAgent.label": "Temel Özel Altyapı Aracısı",
|
|
10
|
+
"template.teams.general.detail": "Teams AI Kitaplığı ile oluşturulan ve LLM'lere bağlanan Teams'de kullanıcılarla sohbet eden aracı",
|
|
11
|
+
"template.teams.general.label": "Teams için Temel Aracı",
|
|
12
|
+
"template.teams.rag.source.placeholder": "Verinizi yüklemek için bir seçenek belirleyin",
|
|
13
|
+
"template.teams.rag.source.azureAISearch.detail": "Azure Yapay Zeka Arama hizmetinden kendi verilerinizi yükleyin",
|
|
14
|
+
"template.teams.rag.source.azureAISearch.label": "Azure Yapay Zeka Arama",
|
|
15
|
+
"template.teams.rag.source.customApi.detail": "OpenAPI açıklama belgesini temel alan özel API'lerden veri yükleyin",
|
|
16
|
+
"template.teams.rag.source.customApi.label": "Özel API",
|
|
17
|
+
"template.teams.rag.source.customize.detail": "Verilerinizi nasıl yükleyeceğinize karar verin",
|
|
18
|
+
"template.teams.rag.source.customize.label": "Özelleştir",
|
|
19
|
+
"template.teams.rag.detail": "Alanına özgü soruları doğru bir şekilde yanıtlamak için içeriğinizi ve bilgilerinizi kullanan aracı",
|
|
20
|
+
"template.teams.rag.label": "Verilerinizle Sohbet Edin",
|
|
21
|
+
"template.customEngineAgent.weather.detail": "Microsoft 365 Aracıları SDK'sı ve LangChain ile oluşturulan bir hava durumu tahmin aracı",
|
|
22
|
+
"template.customEngineAgent.weather.label": "Hava Durumu Aracısı",
|
|
23
|
+
"template.customEngineAgent.placeholder": "Bir seçenek belirleyin",
|
|
24
|
+
"template.customEngineAgent.title": "Microsoft 365 Aracıları SDK'sını Kullanan Uygulama Özellikleri"
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"template.teams.others.bot.detail": "轻松实现可随时自定义的 Echo Bot",
|
|
3
|
+
"template.teams.others.bot.label": "基本机器人",
|
|
4
|
+
"template.teams.others.messageExtension.detail": "接收用户输入、处理它并发送自定义结果",
|
|
5
|
+
"template.teams.others.messageExtension.label": "消息扩展",
|
|
6
|
+
"template.teams.others.tab.detail": "轻松实现可随时自定义的 Web 应用",
|
|
7
|
+
"template.teams.others.tab.label": "“基本”选项卡",
|
|
8
|
+
"template.basicCustomEngineAgent.detail": "使用 Microsoft 365 智能体 SDK 构建并连接到 LLM 的智能代理",
|
|
9
|
+
"template.basicCustomEngineAgent.label": "基本自定义引擎智能体",
|
|
10
|
+
"template.teams.general.detail": "与使用 Teams AI 库构建的 Teams 中的用户聊天并连接到 LLM 的智能体",
|
|
11
|
+
"template.teams.general.label": "适用于 Teams 的基本智能体",
|
|
12
|
+
"template.teams.rag.source.placeholder": "选择一个选项以加载数据",
|
|
13
|
+
"template.teams.rag.source.azureAISearch.detail": "从 Azure AI 搜索服务加载数据",
|
|
14
|
+
"template.teams.rag.source.azureAISearch.label": "Azure AI 搜索",
|
|
15
|
+
"template.teams.rag.source.customApi.detail": "基于 OpenAPI 说明文档从自定义 API 加载数据",
|
|
16
|
+
"template.teams.rag.source.customApi.label": "自定义 API",
|
|
17
|
+
"template.teams.rag.source.customize.detail": "决定如何加载数据",
|
|
18
|
+
"template.teams.rag.source.customize.label": "自定义",
|
|
19
|
+
"template.teams.rag.detail": "使用你的内容和知识准确回答特定领域问题的智能体",
|
|
20
|
+
"template.teams.rag.label": "与你的数据聊天",
|
|
21
|
+
"template.customEngineAgent.weather.detail": "使用 Microsoft 365 智能体 SDK 和 LangChain 构建的天气预报智能体",
|
|
22
|
+
"template.customEngineAgent.weather.label": "天气智能体",
|
|
23
|
+
"template.customEngineAgent.placeholder": "选择选项",
|
|
24
|
+
"template.customEngineAgent.title": "使用 Microsoft 365 智能体 SDK 的应用功能"
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"template.teams.others.bot.detail": "已備妥供自訂的回應機器人的簡易實作",
|
|
3
|
+
"template.teams.others.bot.label": "基本 Bot",
|
|
4
|
+
"template.teams.others.messageExtension.detail": "接收使用者輸入、處理並傳送自定義結果",
|
|
5
|
+
"template.teams.others.messageExtension.label": "訊息延伸模組",
|
|
6
|
+
"template.teams.others.tab.detail": "簡易實作準備好自訂的 Web 應用程式",
|
|
7
|
+
"template.teams.others.tab.label": "基本索引標籤",
|
|
8
|
+
"template.basicCustomEngineAgent.detail": "使用 Microsoft 365 Agents SDK 建立的智慧型代理程式,可連線至您的 LLM",
|
|
9
|
+
"template.basicCustomEngineAgent.label": "基本自訂引擎代理程式",
|
|
10
|
+
"template.teams.general.detail": "建置於 Teams 上、採用 Teams AI 程式庫並連線至 LLM 的聊天代理程式",
|
|
11
|
+
"template.teams.general.label": "Teams 的基本代理程式",
|
|
12
|
+
"template.teams.rag.source.placeholder": "選取載入資料的選項",
|
|
13
|
+
"template.teams.rag.source.azureAISearch.detail": "從 Azure AI 搜尋服務載入您的資料",
|
|
14
|
+
"template.teams.rag.source.azureAISearch.label": "Azure AI 搜尋服務",
|
|
15
|
+
"template.teams.rag.source.customApi.detail": "根據 OpenAPI 描述文件,從自訂 API 載入您的資料",
|
|
16
|
+
"template.teams.rag.source.customApi.label": "自訂 API",
|
|
17
|
+
"template.teams.rag.source.customize.detail": "決定如何載入您的資料",
|
|
18
|
+
"template.teams.rag.source.customize.label": "自訂",
|
|
19
|
+
"template.teams.rag.detail": "使用您的內容和知識來準確回答特定領域問題的代理程式",
|
|
20
|
+
"template.teams.rag.label": "與您的資料聊天",
|
|
21
|
+
"template.customEngineAgent.weather.detail": "由 Microsoft 365 Agents SDK 和 LangChain 所建置的天氣預測代理程式",
|
|
22
|
+
"template.customEngineAgent.weather.label": "天氣代理程式",
|
|
23
|
+
"template.customEngineAgent.placeholder": "選取選項",
|
|
24
|
+
"template.customEngineAgent.title": "使用 Microsoft 365 Agents SDK 的應用程式功能"
|
|
25
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"template.teams.others.bot.detail": "轻松实现可随时自定义的 Echo Bot",
|
|
3
|
+
"template.teams.others.bot.label": "基本机器人",
|
|
4
|
+
"template.teams.others.messageExtension.detail": "接收用户输入、处理它并发送自定义结果",
|
|
5
|
+
"template.teams.others.messageExtension.label": "消息扩展",
|
|
6
|
+
"template.teams.others.tab.detail": "轻松实现可随时自定义的 Web 应用",
|
|
7
|
+
"template.teams.others.tab.label": "“基本”选项卡",
|
|
8
|
+
"template.teams.general.detail": "在 Teams 中生成基本 AI 聊天机器人",
|
|
9
|
+
"template.teams.general.label": "基本 AI Chatbot",
|
|
10
|
+
"template.teams.rag.source.placeholder": "选择一个选项以加载数据",
|
|
11
|
+
"template.teams.rag.source.azureAISearch.detail": "从 Azure AI 搜索服务加载数据",
|
|
12
|
+
"template.teams.rag.source.azureAISearch.label": "Azure AI 搜索",
|
|
13
|
+
"template.teams.rag.source.customApi.detail": "基于 OpenAPI 说明文档从自定义 API 加载数据",
|
|
14
|
+
"template.teams.rag.source.customApi.label": "自定义 API",
|
|
15
|
+
"template.teams.rag.source.customize.detail": "决定如何加载数据",
|
|
16
|
+
"template.teams.rag.source.customize.label": "自定义",
|
|
17
|
+
"template.teams.rag.detail": "使用你的内容扩展 AI 机器人的知识,以获得问题的准确答案",
|
|
18
|
+
"template.teams.rag.label": "与你的数据聊天",
|
|
19
|
+
"template.customEngineAgent.placeholder": "选择选项",
|
|
20
|
+
"template.customEngineAgent.title": "使用 Teams AI 库的应用功能"
|
|
21
|
+
}
|