File tree Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -26,9 +26,9 @@ RUN apt-get update && apt-get install -y \
26
26
27
27
# RUN apt-get clean && rm -rf /var/lib/apt/lists/*
28
28
RUN apt-get update && apt-get install -y python3.9
29
- RUN apt-get update && apt-get install -y python3-pip default-jre feh
30
- RUN python3 -m pip install -U python-dotenv catkin_tools && \
31
- python3.9 -m pip install -U langchain langchain-openai python-dotenv numpy
29
+ RUN apt-get update && apt-get install -y python3-pip
30
+ RUN python3 -m pip install -U python-dotenv catkin_tools
31
+ RUN python3.9 -m pip install -U jpl-rosa
32
32
33
33
# Configure ROS
34
34
RUN rosdep update
@@ -37,7 +37,6 @@ RUN echo "export ROSLAUNCH_SSH_UNKNOWN=1" >> /root/.bashrc
37
37
38
38
COPY . /app/
39
39
WORKDIR /app/
40
- RUN python3.9 -m pip install --user -e .
41
40
42
41
# Run roscore in the background, then run `rosrun turtlesim turtlesim_node` in a new terminal, finally run main.py in a new terminal
43
42
CMD /bin/bash -c 'source /opt/ros/noetic/setup.bash && \
Original file line number Diff line number Diff line change @@ -17,7 +17,14 @@ for ROS2 variants.
17
17
18
18
19
19
# TurtleSim Demo
20
- We have included a demo that uses ROSA to control the TurtleSim simulator. You can run the demo using the following command:
20
+ We have included a demo that uses ROSA to control the TurtleSim simulator.
21
+
22
+ ## Configure your LLM
23
+ You will need to configure your LLM by setting the environment variables found in ` .env ` . You will also need
24
+ to ensure the correct LLM is configured in the ` src/turtle_agent/turtle_agent.py ` file, specifically in the
25
+ ` get_llm() ` function.
26
+
27
+ After that is configured properly, you can run the demo using the following command:
21
28
22
29
``` bash
23
30
./demo.sh
Original file line number Diff line number Diff line change
1
+ jpl-rosa
You can’t perform that action at this time.
0 commit comments