Как исправить: «Шаблон запроса« zeige mir deine $ media: media-Seite »содержит неопределенный параметр (имя:« media-Seite », тип:« media »)» - PullRequest
0 голосов
/ 20 апреля 2019

Когда я тестирую свой агент диалогового потока для помощника Google, он выдает ошибку.

Шаблон запроса 'zeige mir deine $ media: media-Seite' содержит неопределенный параметр (имя: 'media-Seite' тип: 'media')

Ожидалось, что симулятор откроется, но вместо этого он снова и снова выдает эту ошибку

Есть идеи, как ее решить?

мой код agent.json

{
  "description": "Use this agent in your app so it can answer support related inquiries and provided a channel for users to contact your developers or support representatives.",
  "language": "en",
  "shortDescription": "Support and CRM related conversations",
  "examples": "User: Who created you?\nUser: Tell your developers I love you.\nUser: Report bug: It\u0027s not working!\nUser: What\u0027s your Facebook page?\nUser: I want to join the beta testing group.\nUser: Search for your developers phone number.\nUser: What\u0027s your developers email?\nUser: Do you have Instagram account?",
  "activeAssistantAgents": [
    "smalltalk-domain-on",
    "smalltalk-fulfillment-on"
  ],
  "disableInteractionLogs": false,
  "disableStackdriverLogs": true,
  "googleAssistant": {
    "googleAssistantCompatible": true,
    "welcomeIntentSignInRequired": false,
    "startIntents": [],
    "systemIntents": [],
    "endIntentIds": [],
    "oAuthLinking": {
      "required": false,
      "grantType": "AUTH_CODE_GRANT"
    },
    "voiceType": "MALE_1",
    "capabilities": [],
    "protocolVersion": "V2",
    "autoPreviewEnabled": true,
    "isDeviceAgent": false
  },
  "defaultTimezone": "America/New_York",
  "webhook": {
    "url": "https://us-central1-barcode-app-for-university.cloudfunctions.net/dialogflowFirebaseFulfillment",
    "available": true,
    "useForDomains": false,
    "cloudFunctionsEnabled": true,
    "cloudFunctionsInitialized": true
  },
  "isPrivate": true,
  "customClassifierMode": "use.instead",
  "mlMinConfidence": 0.3,
  "supportedLanguages": [
    "de",
    "es",
    "fr",
    "it",
    "ja",
    "pt",
    "pt-br",
    "ru",
    "zh-hk",
    "zh-tw"
  ],
  "onePlatformApiVersion": "v2beta1",
  "analyzeQueryTextSentiment": false,
  "enabledKnowledgeBaseNames": [],
  "knowledgeServiceConfidenceAdjustment": -0.4,
  "dialogBuilderMode": false
}
...