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
- 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
| import os | |
| import torch | |
| from transformers import AutoTokenizer, AutoModelForCausalLM, pipeline | |
| class EndpointHandler(): | |
| """ | |
| Custom handler for Hugging Face Inference Endpoints. | |
| This handler will be used to load the model and tokenizer, and to handle inference requests. | |
| """ | |
| def __init__(self, path=""): | |
| """ | |
| Initializes the model and tokenizer. This method is called only once | |
| when the endpoint is created. | |
| Args: | |
| path (str, optional): The path to the model directory. | |
| If not provided, it defaults to the model loaded by the endpoint. | |
| """ | |
| # Get the model ID from the environment variable set by Hugging Face Inference Endpoints | |
| model_id = os.environ.get("HF_MODEL_ID", "Pragmanic0/Nomadic-ICDU-v8") | |
| print(f"Loading model: {model_id}...") | |
| # Load the tokenizer from the pretrained model | |
| self.tokenizer = AutoTokenizer.from_pretrained(model_id) | |
| # Load the model with recommended settings | |
| # torch.bfloat16 is used for better performance on compatible hardware (e.g., Ampere GPUs) | |
| # device_map="auto" automatically distributes the model across available GPUs | |
| self.model = AutoModelForCausalLM.from_pretrained( | |
| model_id, | |
| torch_dtype=torch.bfloat16, | |
| device_map="auto" | |
| ) | |
| # Create a text generation pipeline | |
| # This simplifies the process of generating text from a prompt | |
| self.pipeline = pipeline( | |
| "text-generation", | |
| model=self.model, | |
| tokenizer=self.tokenizer, | |
| ) | |
| print("Model and pipeline loaded successfully.") | |
| def __call__(self, data: dict) -> list: | |
| """ | |
| This method is called for every inference request. | |
| Args: | |
| data (dict): The request payload from the user. It contains the inputs and parameters. | |
| Returns: | |
| list: A list containing the generated text in a dictionary. | |
| """ | |
| # Extract the prompt from the input data | |
| prompt = data.get("inputs", "") | |
| # Extract generation parameters, with sensible defaults | |
| # These parameters can be overridden by the user in the request | |
| parameters = data.get("parameters", {}) | |
| max_new_tokens = parameters.get("max_new_tokens", 512) | |
| temperature = parameters.get("temperature", 0.7) | |
| top_p = parameters.get("top_p", 0.95) | |
| do_sample = parameters.get("do_sample", True) | |
| # Apply the specific prompt template required by the Nomadic-ICDU-v8 model | |
| # This is crucial for getting high-quality responses from instruction-tuned models | |
| formatted_prompt = f"<s>[INST] {prompt} [/INST]" | |
| print(f"Generating text for prompt: '{prompt}'") | |
| # Use the pipeline to generate text | |
| # We pass the formatted prompt and the generation parameters | |
| try: | |
| generated = self.pipeline( | |
| formatted_prompt, | |
| max_new_tokens=max_new_tokens, | |
| do_sample=do_sample, | |
| temperature=temperature, | |
| top_p=top_p, | |
| return_full_text=False, # Only return the generated part, not the prompt | |
| ) | |
| # The pipeline returns a list of dictionaries | |
| # We extract the 'generated_text' from the first element | |
| result = generated[0] | |
| except Exception as e: | |
| print(f"An error occurred during generation: {e}") | |
| # Return an error message in the expected format | |
| result = {"generated_text": f"Error: {e}"} | |
| print(f"Generated text: {result['generated_text']}") | |
| # Return the result in a list, as expected by the Inference Endpoints framework | |
| return [result] | |