Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PVA Error : Your Skill Manifest is not compatible. #6596

Open
amoyalan20 opened this issue May 26, 2023 · 1 comment
Open

PVA Error : Your Skill Manifest is not compatible. #6596

amoyalan20 opened this issue May 26, 2023 · 1 comment
Labels
bug Indicates an unexpected problem or an unintended behavior. needs-triage The issue has just been created and it has not been reviewed by the team.

Comments

@amoyalan20
Copy link

While adding the skill in PVA got the error below.
image
For reference here is the skill manifest that I'm using,

{
"$schema": "https://schemas.botframework.com/schemas/skills/skill-manifest-2.1.preview-0.json",
"$id": "Test",
"name": "Test",
"description": "Test description",
"publisherName": "Your Company",
"version": "1.1",
"iconUrl": "https://{YOUR_SKILL_URL}/TestSkillDelete.png",
"copyright": "Copyright (c) Microsoft Corporation. All rights reserved.",
"license": "",
"privacyUrl": "https://{YOUR_SKILL_URL}/privacy.html",
"tags": [
"sample",
"skill"
],
"endpoints": [
{
"name": "production",
"protocol": "BotFrameworkV3",
"description": "Production endpoint for the skill",
"endpointUrl": "https://{YOUR_SKILL_URL}/api/messages",
"msAppId": "{YOUR_SKILL_APPID}"
}
],
"dispatchModels": {
"languages": {
"en-us": [
{
"id": "TestSkillLuModel-en",
"name": "TestSkill LU (English)",
"contentType": "application/lu",
"url": "file://TestSkill.lu",
"description": "English language model for the skill"
}
],
"de-de": [
{
"id": "TestSkillLuModel-de",
"name": "TestSkill LU (German)",
"contentType": "application/lu",
"url": "file://TestSkill.lu",
"description": "German language model for the skill"
}
],
"es-es": [
{
"id": "TestSkillLuModel-es",
"name": "TestSkill LU (Spanish)",
"contentType": "application/lu",
"url": "file://TestSkill.lu",
"description": "Spanish language model for the skill"
}
],
"fr-fr": [
{
"id": "TestSkillLuModel-fr",
"name": "TestSkill LU (French)",
"contentType": "application/lu",
"url": "file://TestSkill.lu",
"description": "French language model for the skill"
}
],
"it-it": [
{
"id": "TestSkillLuModel-it",
"name": "TestSkill LU (Italian)",
"contentType": "application/lu",
"url": "file://TestSkill.lu",
"description": "Italian language model for the skill"
}
],
"zh-cn": [
{
"id": "TestSkillLuModel-zh",
"name": "TestSkill LU (Chinese)",
"contentType": "application/lu",
"url": "file://TestSkill.lu",
"description": "Chinese language model for the skill"
}
]
},
"intents": {
"Sample": "#/activities/message",
"*": "#/activities/message"
}
},
"activities": {
"sampleAction": {
"description": "Sample action which accepts an input object and returns an object back.",
"type": "event",
"name": "SampleAction",
"value": {
"$ref": "#/definitions/inputObject"
},
"resultValue": {
"$ref": "#/definitions/responseObject"
}
},
"message": {
"type": "message",
"description": "Receives the users utterance and attempts to resolve it using the skill's LU models"
}
},
"definitions": {
"inputObject": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The users name."
}
}
},
"responseObject": {
"type": "object",
"properties": {
"customerId": {
"type": "integer",
"description": "A customer identifier."
}
}
}
}
}

Kindly check and let me know if there anything required from my end.

@amoyalan20 amoyalan20 added bug Indicates an unexpected problem or an unintended behavior. needs-triage The issue has just been created and it has not been reviewed by the team. labels May 26, 2023
@amoyalan20
Copy link
Author

is there any update on this feature?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Indicates an unexpected problem or an unintended behavior. needs-triage The issue has just been created and it has not been reviewed by the team.
Projects
None yet
Development

No branches or pull requests

1 participant