This commit is contained in:
r-ca 2024-07-15 19:18:24 +09:00
parent 5458d4df95
commit 0244123396
3 changed files with 76 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
ask-resources.json
.ask
.vscode
lambda/node_modules

View File

@ -0,0 +1,35 @@
{
"interactionModel": {
"languageModel": {
"intents": [
{
"name": "AMAZON.CancelIntent",
"samples": []
},
{
"name": "AMAZON.HelpIntent",
"samples": []
},
{
"name": "AMAZON.StopIntent",
"samples": []
},
{
"slots": [],
"name": "HelloWorldIntent",
"samples": [
"hello",
"how are you",
"say hi world",
"say hi",
"hi",
"say hello world",
"say hello"
]
}
],
"types": [],
"invocationName": "きっずしふと"
}
}
}

37
skill-package/skill.json Normal file
View File

@ -0,0 +1,37 @@
{
"manifest": {
"apis": {
"custom": {
"endpoint": {
"uri": "arn:aws:lambda:eu-west-1:905418273489:function:147755bb-cf6c-4601-8738-0db4cca3047e:Release_0"
},
"interfaces": [],
"locales": {},
"regions": {
"NA": {
"endpoint": {
"uri": "arn:aws:lambda:us-east-1:905418273489:function:147755bb-cf6c-4601-8738-0db4cca3047e:Release_0"
}
},
"EU": {
"endpoint": {
"uri": "arn:aws:lambda:eu-west-1:905418273489:function:147755bb-cf6c-4601-8738-0db4cca3047e:Release_0"
}
},
"FE": {
"endpoint": {
"uri": "arn:aws:lambda:us-west-2:905418273489:function:147755bb-cf6c-4601-8738-0db4cca3047e:Release_0"
}
}
}
}
},
"publishingInformation": {
"locales": {
"ja-JP": {
"name": "KidShift-skills"
}
}
}
}
}