No project description provided
Project description
Galadriel inference node
Run a Galadriel GPU node to provide LLM inference to the network.
Check out the documentation.
Requirements
Hardware requirements
- At least 4 CPU cores
- At least 8GB RAM
- A supported Nvidia GPU
Software requirements
- linux (Ubuntu recommended)
- python (version 3.8+)
- nvidia drivers, version > 450.
nvidia-smi
must work
API keys
- A valid galadriel API key
- A valid huggingface access token
LLM deployment
To run a Galadriel node, you must first run an LLM.
Create a python environment
python3 -m venv venv
source venv/bin/activate
Install vllm
pip install vllm==0.5.5
Run vllm
HUGGING_FACE_HUB_TOKEN=<HUGGING_FACE_TOKEN> \
nohup vllm serve neuralmagic/Meta-Llama-3.1-8B-Instruct-FP8 \
--revision 3aed33c3d2bfa212a137f6c855d79b5426862b24 \
--max-model-len 8192 \
--gpu-memory-utilization 1 \
--host 127.0.0.1 \
--disable-frontend-multiprocessing \
--port 11434 > logs_llm.log 2>&1 &
Ensure vllm works
tail -f logs_llm.log
Should see something like INFO: Uvicorn running on http://127.0.0.1:11434
Once you see the API is working try calling it
curl http://localhost:11434/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: a" \
-d '{
"model": "neuralmagic/Meta-Llama-3.1-8B-Instruct-FP8",
"messages": [
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Hi, whats up?"
}
]
}'
Run a GPU node from the command line
Create a (separate) python environment
deactivate
mkdir galadriel
cd galadriel
python3 -m venv venv
source venv/bin/activate
Install galadriel-node
pip install galadriel-node
Setup the environment
Only update values that are not the default ones, and make sure to set the API key
galadriel init
Run the node
galadriel node run
If this is your first time running the GPU node, it will perform hardware validation and LLM benchmarking, to ensure your setup is working correctly and is fast enough.
Or run with nohup to run in the background
nohup galadriel node run > logs.log 2>&1 &
Or include .env values in the command
GALADRIEL_LLM_BASE_URL="http://localhost:8000" galadriel node run
# or with nohup
GALADRIEL_LLM_BASE_URL="http://localhost:8000" nohup galadriel node run > logs.log 2>&1 &
Check node status
galadriel node status
Should see status: online
Check node metrics
galadriel node stats
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
File details
Details for the file galadriel_node-0.0.6.tar.gz
.
File metadata
- Download URL: galadriel_node-0.0.6.tar.gz
- Upload date:
- Size: 361.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8cd9c4d60f7c72ea73d231fda68133438b02e75cc1905e94218d0059d6cce28 |
|
MD5 | de57f71b623741deb830c57197ab5fbd |
|
BLAKE2b-256 | 6b9ea317f961af6fd41a2c1dc8d050005ae34cf297c1c51d0242345e369b62b2 |
File details
Details for the file galadriel_node-0.0.6-py3-none-any.whl
.
File metadata
- Download URL: galadriel_node-0.0.6-py3-none-any.whl
- Upload date:
- Size: 365.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 835d58869033a52b468e441eff56100599bb934dd09654987181523f4fb3f974 |
|
MD5 | 952edc60d89f007db1e379e11670a72f |
|
BLAKE2b-256 | 43b2595e7133d882bbc5444ebd6dc40fa516e9002930ac17c741dedd118ff36a |