A new package that processes user queries about system performance and resource usage on Nvidia Jetson boards. It takes natural language input, such as a request for current GPU utilization or memory
Project description
Jetson NLP Monitor
Package for processing user queries about system performance and resource usage on Nvidia Jetson boards.
Overview
This package processes natural language input regarding system performance and resource usage on Nvidia Jetson boards. It takes user queries, extracts relevant metrics, and returns structured, pattern-verified responses.
Installation
pip install jetson_nlp_monitor
Usage
from jetson_nlp_monitor import jetson_nlp_monitor
response = jetson_nlp_monitor(user_input="What's the current GPU utilization?")
print(response)
Function Parameters
user_input: str - the user input text to processllm: Optional[BaseChatModel] - the langchain llm instance to use, if not provided the default ChatLLM7 will be used.api_key: Optional[str] - the api key for llm7, if not provided the default ChatLLM7 will be used.
Default LLM Usage
This package uses the ChatLLM7 from langchain_llm7 by default. You can safely pass your own llm instance (based on https://docs.langchain.com/llm/) if you want to use another LLM, via passing it like jetson_nlp_monitor(user_input, llm=your_llm_instance).
Example usage with different LLMs:
from langchain_openai import ChatOpenAI
from jetson_nlp_monitor import jetson_nlp_monitor
llm = ChatOpenAI()
response = jetson_nlp_monitor(user_input, llm=llm)
from langchain_anthropic import ChatAnthropic
from jetson_nlp_monitor import jetson_nlp_monitor
llm = ChatAnthropic()
response = jetson_nlp_monitor(user_input, llm=llm)
from langchain_google_genai import ChatGoogleGenerativeAI
from jetson_nlp_monitor import jetson_nlp_monitor
llm = ChatGoogleGenerativeAI()
response = jetson_nlp_monitor(user_input, llm=llm)
Rate Limits
The default rate limits for LLM7 free tier are sufficient for most use cases of this package. If you want higher rate limits for LLM7, you can pass your own api_key via environment variable LLM7_API_KEY or via passing it directly like jetson_nlp_monitor(user_input, api_key="your_api_key").
You can get a free api key by registering at https://token.llm7.io/
Issues
Report any issues to https://github.com/chigwell/jetson-nlp-monitor
Author
Eugene Evstafev (eugene@eugene.plus)
License
Not specified.
GitHub
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jetson_nlp_monitor-2025.12.21140514.tar.gz.
File metadata
- Download URL: jetson_nlp_monitor-2025.12.21140514.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15689dee2ed926e688a9d245105578c7c4e0448bfd126178e9c22bc18ebc5afc
|
|
| MD5 |
f66f4007ed4cc115c69c5d33929404cf
|
|
| BLAKE2b-256 |
c0a1c1560c031f2e340aa98283ccf39c989132661d59a976f5765d6b1abb8547
|
File details
Details for the file jetson_nlp_monitor-2025.12.21140514-py3-none-any.whl.
File metadata
- Download URL: jetson_nlp_monitor-2025.12.21140514-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9623de7d1df86e8fb0d32af959b8ebac0c5fc955c3e30b67c6215f83646327d
|
|
| MD5 |
0c0f14cecb883e74ced214b33728b6db
|
|
| BLAKE2b-256 |
8f5b59b02449625063ddb02e64b22c5b5c9b52bef526dd7f8ee82d607d0461de
|