Instructions to use Gadsdencode/Nomadic-ICDU-v8 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use Gadsdencode/Nomadic-ICDU-v8 with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Gadsdencode/Nomadic-ICDU-v8", filename="nomadic-icdu-v8-Q4_K_M.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Gadsdencode/Nomadic-ICDU-v8 with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf Gadsdencode/Nomadic-ICDU-v8:Q4_K_M # Run inference directly in the terminal: llama cli -hf Gadsdencode/Nomadic-ICDU-v8:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Gadsdencode/Nomadic-ICDU-v8:Q4_K_M # Run inference directly in the terminal: llama cli -hf Gadsdencode/Nomadic-ICDU-v8:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf Gadsdencode/Nomadic-ICDU-v8:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Gadsdencode/Nomadic-ICDU-v8:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf Gadsdencode/Nomadic-ICDU-v8:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Gadsdencode/Nomadic-ICDU-v8:Q4_K_M
Use Docker
docker model run hf.co/Gadsdencode/Nomadic-ICDU-v8:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use Gadsdencode/Nomadic-ICDU-v8 with Ollama:
ollama run hf.co/Gadsdencode/Nomadic-ICDU-v8:Q4_K_M
- Unsloth Studio
How to use Gadsdencode/Nomadic-ICDU-v8 with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Gadsdencode/Nomadic-ICDU-v8 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Gadsdencode/Nomadic-ICDU-v8 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Gadsdencode/Nomadic-ICDU-v8 to start chatting
- Pi
How to use Gadsdencode/Nomadic-ICDU-v8 with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Gadsdencode/Nomadic-ICDU-v8:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Gadsdencode/Nomadic-ICDU-v8:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Gadsdencode/Nomadic-ICDU-v8 with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Gadsdencode/Nomadic-ICDU-v8:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default Gadsdencode/Nomadic-ICDU-v8:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use Gadsdencode/Nomadic-ICDU-v8 with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Gadsdencode/Nomadic-ICDU-v8:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "Gadsdencode/Nomadic-ICDU-v8:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use Gadsdencode/Nomadic-ICDU-v8 with Docker Model Runner:
docker model run hf.co/Gadsdencode/Nomadic-ICDU-v8:Q4_K_M
- Lemonade
How to use Gadsdencode/Nomadic-ICDU-v8 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Gadsdencode/Nomadic-ICDU-v8:Q4_K_M
Run and chat with the model
lemonade run user.Nomadic-ICDU-v8-Q4_K_M
List all available models
lemonade list
Jordan Martens commited on
Create handler.py
Browse filesadded handler file for hf inference
- handler.py +97 -0
handler.py
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import os
|
| 2 |
+
import torch
|
| 3 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM, pipeline
|
| 4 |
+
|
| 5 |
+
class EndpointHandler():
|
| 6 |
+
"""
|
| 7 |
+
Custom handler for Hugging Face Inference Endpoints.
|
| 8 |
+
This handler will be used to load the model and tokenizer, and to handle inference requests.
|
| 9 |
+
"""
|
| 10 |
+
def __init__(self, path=""):
|
| 11 |
+
"""
|
| 12 |
+
Initializes the model and tokenizer. This method is called only once
|
| 13 |
+
when the endpoint is created.
|
| 14 |
+
|
| 15 |
+
Args:
|
| 16 |
+
path (str, optional): The path to the model directory.
|
| 17 |
+
If not provided, it defaults to the model loaded by the endpoint.
|
| 18 |
+
"""
|
| 19 |
+
# Get the model ID from the environment variable set by Hugging Face Inference Endpoints
|
| 20 |
+
model_id = os.environ.get("HF_MODEL_ID", "Pragmanic0/Nomadic-ICDU-v8")
|
| 21 |
+
|
| 22 |
+
print(f"Loading model: {model_id}...")
|
| 23 |
+
|
| 24 |
+
# Load the tokenizer from the pretrained model
|
| 25 |
+
self.tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 26 |
+
|
| 27 |
+
# Load the model with recommended settings
|
| 28 |
+
# torch.bfloat16 is used for better performance on compatible hardware (e.g., Ampere GPUs)
|
| 29 |
+
# device_map="auto" automatically distributes the model across available GPUs
|
| 30 |
+
self.model = AutoModelForCausalLM.from_pretrained(
|
| 31 |
+
model_id,
|
| 32 |
+
torch_dtype=torch.bfloat16,
|
| 33 |
+
device_map="auto"
|
| 34 |
+
)
|
| 35 |
+
|
| 36 |
+
# Create a text generation pipeline
|
| 37 |
+
# This simplifies the process of generating text from a prompt
|
| 38 |
+
self.pipeline = pipeline(
|
| 39 |
+
"text-generation",
|
| 40 |
+
model=self.model,
|
| 41 |
+
tokenizer=self.tokenizer,
|
| 42 |
+
)
|
| 43 |
+
|
| 44 |
+
print("Model and pipeline loaded successfully.")
|
| 45 |
+
|
| 46 |
+
def __call__(self, data: dict) -> list:
|
| 47 |
+
"""
|
| 48 |
+
This method is called for every inference request.
|
| 49 |
+
|
| 50 |
+
Args:
|
| 51 |
+
data (dict): The request payload from the user. It contains the inputs and parameters.
|
| 52 |
+
|
| 53 |
+
Returns:
|
| 54 |
+
list: A list containing the generated text in a dictionary.
|
| 55 |
+
"""
|
| 56 |
+
# Extract the prompt from the input data
|
| 57 |
+
prompt = data.get("inputs", "")
|
| 58 |
+
|
| 59 |
+
# Extract generation parameters, with sensible defaults
|
| 60 |
+
# These parameters can be overridden by the user in the request
|
| 61 |
+
parameters = data.get("parameters", {})
|
| 62 |
+
max_new_tokens = parameters.get("max_new_tokens", 512)
|
| 63 |
+
temperature = parameters.get("temperature", 0.7)
|
| 64 |
+
top_p = parameters.get("top_p", 0.95)
|
| 65 |
+
do_sample = parameters.get("do_sample", True)
|
| 66 |
+
|
| 67 |
+
# Apply the specific prompt template required by the Nomadic-ICDU-v8 model
|
| 68 |
+
# This is crucial for getting high-quality responses from instruction-tuned models
|
| 69 |
+
formatted_prompt = f"<s>[INST] {prompt} [/INST]"
|
| 70 |
+
|
| 71 |
+
print(f"Generating text for prompt: '{prompt}'")
|
| 72 |
+
|
| 73 |
+
# Use the pipeline to generate text
|
| 74 |
+
# We pass the formatted prompt and the generation parameters
|
| 75 |
+
try:
|
| 76 |
+
generated = self.pipeline(
|
| 77 |
+
formatted_prompt,
|
| 78 |
+
max_new_tokens=max_new_tokens,
|
| 79 |
+
do_sample=do_sample,
|
| 80 |
+
temperature=temperature,
|
| 81 |
+
top_p=top_p,
|
| 82 |
+
return_full_text=False, # Only return the generated part, not the prompt
|
| 83 |
+
)
|
| 84 |
+
|
| 85 |
+
# The pipeline returns a list of dictionaries
|
| 86 |
+
# We extract the 'generated_text' from the first element
|
| 87 |
+
result = generated[0]
|
| 88 |
+
|
| 89 |
+
except Exception as e:
|
| 90 |
+
print(f"An error occurred during generation: {e}")
|
| 91 |
+
# Return an error message in the expected format
|
| 92 |
+
result = {"generated_text": f"Error: {e}"}
|
| 93 |
+
|
| 94 |
+
print(f"Generated text: {result['generated_text']}")
|
| 95 |
+
|
| 96 |
+
# Return the result in a list, as expected by the Inference Endpoints framework
|
| 97 |
+
return [result]
|