Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing
    • Website
      • Tasks
      • HuggingChat
      • Collections
      • Languages
      • Organizations
    • Community
      • Blog
      • Posts
      • Daily Papers
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

logihertzsystems
/
Nyra-Code-7B-GGUF-IQ1_S

Text Generation
GGUF
English
gated
logihertz
local-ai
universal-intelligence
sovereign-ai
titan-7b
Eval Results
imatrix
conversational
Model card Files Files and versions
xet
Community

Instructions to use logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • llama-cpp-python

    How to use logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S with llama-cpp-python:

    # !pip install llama-cpp-python
    
    from llama_cpp import Llama
    
    llm = Llama.from_pretrained(
    	repo_id="logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S",
    	filename="Nyra-Code-7B.IQ1_S.gguf",
    )
    
    llm.create_chat_completion(
    	messages = [
    		{
    			"role": "user",
    			"content": "What is the capital of France?"
    		}
    	]
    )
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps Settings
  • llama.cpp

    How to use logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S with llama.cpp:

    Install from brew
    brew install llama.cpp
    # Start a local OpenAI-compatible server with a web UI:
    llama-server -hf logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S:IQ1_S
    # Run inference directly in the terminal:
    llama-cli -hf logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S:IQ1_S
    Install from WinGet (Windows)
    winget install llama.cpp
    # Start a local OpenAI-compatible server with a web UI:
    llama-server -hf logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S:IQ1_S
    # Run inference directly in the terminal:
    llama-cli -hf logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S:IQ1_S
    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 logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S:IQ1_S
    # Run inference directly in the terminal:
    ./llama-cli -hf logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S:IQ1_S
    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 logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S:IQ1_S
    # Run inference directly in the terminal:
    ./build/bin/llama-cli -hf logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S:IQ1_S
    Use Docker
    docker model run hf.co/logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S:IQ1_S
  • LM Studio
  • Jan
  • vLLM

    How to use logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S with vLLM:

    Install from pip and serve model
    # Install vLLM from pip:
    pip install vllm
    # Start the vLLM server:
    vllm serve "logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S"
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:8000/v1/chat/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S",
    		"messages": [
    			{
    				"role": "user",
    				"content": "What is the capital of France?"
    			}
    		]
    	}'
    Use Docker
    docker model run hf.co/logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S:IQ1_S
  • Ollama

    How to use logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S with Ollama:

    ollama run hf.co/logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S:IQ1_S
  • Unsloth Studio

    How to use logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S 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 logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S 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 logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S to start chatting
    Using HuggingFace Spaces for Unsloth
    # No setup required
    # Open https://huggingface.co/spaces/unsloth/studio in your browser
    # Search for logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S to start chatting
  • Docker Model Runner

    How to use logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S with Docker Model Runner:

    docker model run hf.co/logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S:IQ1_S
  • Lemonade

    How to use logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S with Lemonade:

    Pull the model
    # Download Lemonade from https://lemonade-server.ai/
    lemonade pull logihertzsystems/Nyra-Code-7B-GGUF-IQ1_S:IQ1_S
    Run and chat with the model
    lemonade run user.Nyra-Code-7B-GGUF-IQ1_S-IQ1_S
    List all available models
    lemonade list

You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

Gated model
You can list files but not access them

Preview of files found in this repository
  • .eval_results
    Update .eval_results/results.yaml about 2 months ago
  • evaluation_logs
    πŸ”¬ Logihertz Sovereign Rollout: Uploading Raw Evaluation Traces about 2 months ago
  • .gitattributes
    1.63 kB
    πŸš€ Logihertz Sovereign Rollout: Production Build for Nyra-Code-7B-GGUF-IQ1_S about 2 months ago
  • Nyra-Code-7B.IQ1_S.gguf
    1.91 GB
    xet
    πŸ› οΈ Logihertz Hotfix: Uploading healthy quantized payload. about 2 months ago
  • README.md
    3.91 kB
    Update README.md about 1 month ago
  • imatrix.dat

    Pickle imports

    • No problematic imports detected

    What is a pickle import?

    4.56 MB
    xet
    πŸš€ Logihertz Sovereign Rollout: Production Build for Nyra-Code-7B-GGUF-IQ1_S about 2 months ago