Registry / llm-agents / nemollm

nemollm

JSON →
library0.3.5pypypi✓ verified 79d ago

Python client library for NVIDIA NeMo LLM API. Version 0.3.5. The library enables interaction with NeMo LLM services for text generation. Release cadence is irregular.

pip install nemollm
INSTALL
IMPORT
SIG · NEMOLLM
N
nemollm
llm-agentspythonv0.3.5
Install
2.5s avg
Import
Disk
22MB
Pass rate
10/ 10
Env Coverage10 / 10
glibc
3.93.13
musl
3.93.13
Install & Compatibility
Where this runs
tested against v0.3.5 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.103.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 23.3MB
glibc
py 3.103.95 runs
installs and imports cleanly · install 2.5s · import 0.000s · 24MB
22MB installed
● package 22MB
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

NeMoLLM
import nemollm
from nemollm import NeMoLLM
Connection
from nemollm import Connection
api
from nemollm import api

Initialize the client with an API key and generate text.

from nemollm import NeMoLLM api_key = os.environ.get('NEMO_API_KEY', '') client = NeMoLLM(api_key=api_key) response = client.generate("Hello, how are you?") print(response)
Debug
Known issues
gotchaThe NeMoLLM client does not automatically retry on rate limits. You may need to implement retry logic with backoff.
fix
Wrap calls with retry logic using tenacity or similar.
affects: all
gotchaThe API key must be passed as a keyword argument, not positional. Omitting the parameter name may cause unexpected error.
fix
Always use client = NeMoLLM(api_key='your_key')
affects: all
Upgrade
Version history
0.3.5latest on PyPI · released Jan 5, 2024
Audit
Dependencies
requestsrequiredHTTP client
Agent activity
31 hits · last 30 days
node
28
Amazon
1
OpenAI (training)
1
Resources
nemollm — pip install nemollm · libregistry