This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
78 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"browse": { | ||
"databaseFilename": "", | ||
"limitSymbolsToIncludedHeaders": true | ||
}, | ||
"includePath": [ | ||
"C:\\opt\\ros\\melodic\\x64\\tools\\vcpkg\\installed\\x64-windows\\include\\**", | ||
"C:\\opt\\ros\\melodic\\x64\\include\\**", | ||
"C:\\ws\\luis_ws\\devel\\include\\**", | ||
"C:\\opt\\ros\\melodic\\x64\\tools\\vcpkg\\installed\\x64-windows\\include\\**" | ||
], | ||
"name": "ROS" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"python.autoComplete.extraPaths": [ | ||
"C:/ws/luis_ws/devel\\lib/site-packages", | ||
"C:/opt/ros/melodic/x64\\lib/site-packages" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,23 @@ | ||
<launch> | ||
<arg name="azure_cs_luis_endpoint" default="$(env azure_cs_luis_key)"/> | ||
<arg name="azure_cs_luis_key" default="$(env azure_cs_luis_key)"/> | ||
<arg name="azure_cs_luis_endpoint" default="$(env azure_cs_luis_endpoint)"/> | ||
<arg name="azure_cs_luis_endpoint" default="$(env azure_cs_luis_appid)"/> | ||
<arg name="azure_cs_luis_endpoint" default="$(env azure_cs_luis_region)"/> | ||
<arg name="azure_cs_luis_appid" default="$(env azure_cs_luis_appid)"/> | ||
<arg name="azure_cs_luis_region" default="$(env azure_cs_luis_region)"/> | ||
|
||
<arg name="azure_cs_kw_key" default="$(env azure_cs_kw_key)"/> | ||
<arg name="azure_cs_kw" default="$(env azure_cs_kw)"/> | ||
<arg name="azure_cs_kw_path" default="$(env azure_cs_kw_path)"/> | ||
<arg name="azure_cs_kw_region" default="$(env azure_cs_kw_region)"/> | ||
|
||
<node name="luis_test" pkg="ros_msft_luis" type="ros_msft_luis_node" output="screen"> | ||
<param name="luiskey" value="Enter your Primary Key mentioned in the luis portal" /> | ||
<param name="region" value="Enter your location mentioned in the luis portal" /> | ||
<param name="appid" value="Enter your APP ID mentioned in the luis portal" /> | ||
<param name="kwkey" value="Enter your key mentioned in the speech studio" /> | ||
<param name="kwregion" value="Enter your location mentioned in the speech studio" /> | ||
<param name="keywordpath" value="Enter the location of the of .table file that you downloaded from the speech studio" /> | ||
<param name="keyword" value="Enter your custom keyword" /> | ||
<param name="luiskey" value="$(arg robotId)" /> | ||
<param name="region" value="$(arg azure_cs_luis_region)" /> | ||
<param name="appid" value="$(arg azure_cs_luis_appid)" /> | ||
<param name="endpoint" value="$(arg azure_cs_luis_endpoint)" /> | ||
|
||
<param name="kwkey" value="$(arg azure_cs_kw_key)" /> | ||
<param name="kwregion" value="$(arg azure_cs_kw_region)" /> | ||
<param name="keywordpath" value="$(arg azure_cs_kw_path)" /> | ||
<param name="keyword" value="$(arg azure_cs_kw)" /> | ||
</node> | ||
</launch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters