Skip to content

Commit

Permalink
Added connections to VLNav app and added new app for just testing pro…
Browse files Browse the repository at this point in the history
…mpts

Signed-off-by: Ettore Landini <[email protected]>
  • Loading branch information
elandini84 committed Oct 21, 2024
1 parent 7981822 commit e746245
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
25 changes: 25 additions & 0 deletions app/VLNav/scripts/VLNav_llm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,29 @@
<node>console-llm</node>
</module>

<!-- Connections -->
<connection>
<from>/speechTranscription_nws/text:o</from>
<to>/vlnav_chat/LLMStream/text:i</to>
<protocol>fast_tcp</protocol>
</connection>

<connection>
<from>/vlnav_chat/LLMStream/text:o</from>
<to>/vlmaps/index/text:i</to>
<protocol>fast_tcp</protocol>
</connection>

<connection>
<from>/vlmaps/index/text:o</from>
<to>/vlnavRep_chat/LLMStream/text:i</to>
<protocol>fast_tcp</protocol>
</connection>

<connection>
<from>/vlnavRep_chat/LLMStream/text:o</from>
<to>/speechSynthesis_nws/text:i</to>
<protocol>fast_tcp</protocol>
</connection>

</application>
34 changes: 34 additions & 0 deletions app/VLNav/scripts/VLNav_llm_test_prompts.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<application>
<name>VLNav_llm_test</name>


<dependencies>
</dependencies>


<!-- Modules -->
<module>
<name>yarprobotinterface</name>
<parameters>--context VLNav --from vlnavChat.ini --vlnav_prompt VisualNavigationQueryBlank_prompt.txt</parameters>
<node>console-llm</node>
</module>

<module>
<name>LLMStream</name>
<parameters>--context VLNav --from vlnavStream.ini</parameters>
<node>console-llm</node>
</module>

<module>
<name>yarprobotinterface</name>
<parameters>--context VLNav --from vlnavReplyChat.ini</parameters>
<node>console-llm</node>
</module>

<module>
<name>LLMStream</name>
<parameters>--context VLNav --from vlnavReplyStream.ini</parameters>
<node>console-llm</node>
</module>

</application>

0 comments on commit e746245

Please sign in to comment.