You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is more of an FYI than issue. I took what may be a detour other people may go down and find this useful.
Run the container image replacing the nano_llm with the current codebase: jetson-containers run --env HUGGINGFACE_TOKEN=hf_mytoken --volume ./nano_llm:/opt/NanoLLM/nano_llm $(autotag nano_llm) python3 -m nano_llm.studio
You'll get an error:
ModuleNotFoundError: No module named 'rclpy'
Did some digging and copied the vanilla nano_llm image codebase to my local:
Found that the plugins/robotics/ros_connector.py was empty:
#!/usr/bin/env python3
from nano_llm import Plugin
class ROS2Connector(Plugin):
def __init__(self, **kwargs):
super().__init__(**kwargs)
The ros_connector hasn't been implemented in this image yet.
Reading through the issues it looks like there may be some containers that have this implemented. But I was able to get Agent Studio to run by installing the dependencies.
This is more of an FYI than issue. I took what may be a detour other people may go down and find this useful.
Run the container image replacing the nano_llm with the current codebase:
jetson-containers run --env HUGGINGFACE_TOKEN=hf_mytoken --volume ./nano_llm:/opt/NanoLLM/nano_llm $(autotag nano_llm) python3 -m nano_llm.studio
You'll get an error:
ModuleNotFoundError: No module named 'rclpy'
Did some digging and copied the vanilla nano_llm image codebase to my local:
Found that the plugins/robotics/ros_connector.py was empty:
The ros_connector hasn't been implemented in this image yet.
Reading through the issues it looks like there may be some containers that have this implemented. But I was able to get Agent Studio to run by installing the dependencies.
Here's the step by step if Ubuntu 22.04:
Hopefully that saves someone else a few minutes. Thanks Dusty for this awesome project!
The text was updated successfully, but these errors were encountered: