Text Generation
GGUF
English
Romansh
llama.cpp
instruction-tuned
llama
chatbot
code
imatrix
conversational
Instructions to use CorelynAI/NeoH with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use CorelynAI/NeoH 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 CorelynAI/NeoH # Run inference directly in the terminal: llama cli -hf CorelynAI/NeoH
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf CorelynAI/NeoH # Run inference directly in the terminal: llama cli -hf CorelynAI/NeoH
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 CorelynAI/NeoH # Run inference directly in the terminal: ./llama-cli -hf CorelynAI/NeoH
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 CorelynAI/NeoH # Run inference directly in the terminal: ./build/bin/llama-cli -hf CorelynAI/NeoH
Use Docker
docker model run hf.co/CorelynAI/NeoH
- LM Studio
- Jan
- vLLM
How to use CorelynAI/NeoH with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "CorelynAI/NeoH" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "CorelynAI/NeoH", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/CorelynAI/NeoH
- Ollama
How to use CorelynAI/NeoH with Ollama:
ollama run hf.co/CorelynAI/NeoH
- Unsloth Desktop
- Pi
How to use CorelynAI/NeoH with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf CorelynAI/NeoH
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "CorelynAI/NeoH" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use CorelynAI/NeoH with Docker Model Runner:
docker model run hf.co/CorelynAI/NeoH
- Lemonade
How to use CorelynAI/NeoH with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull CorelynAI/NeoH
Run and chat with the model
lemonade run user.NeoH-{{QUANT_TAG}}List all available models
lemonade list
- Hermes Agent
How to use CorelynAI/NeoH with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf CorelynAI/NeoH
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 CorelynAI/NeoH
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use CorelynAI/NeoH with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf CorelynAI/NeoH
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 "CorelynAI/NeoH" \ --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"
edited a bit
Browse files
README.md
CHANGED
|
@@ -1,18 +1,23 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
tags:
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
|
|
|
| 9 |
library_name: llama.cpp
|
| 10 |
-
language:
|
|
|
|
|
|
|
| 11 |
datasets:
|
| 12 |
-
|
| 13 |
model-index:
|
| 14 |
-
|
| 15 |
-
|
|
|
|
|
|
|
| 16 |
---
|
| 17 |
|
| 18 |
|
|
@@ -28,13 +33,13 @@ model-index:
|
|
| 28 |
|
| 29 |
## Model Overview
|
| 30 |
|
| 31 |
-
Corelyn NeoH is a
|
| 32 |
|
| 33 |
- Fine-tuning type: Instruct
|
| 34 |
|
| 35 |
- Base architecture: LLaMA
|
| 36 |
|
| 37 |
-
- Parameter count:
|
| 38 |
|
| 39 |
- Context length: 131,072 tokens
|
| 40 |
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
tags:
|
| 4 |
+
- text-generation
|
| 5 |
+
- instruction-tuned
|
| 6 |
+
- llama
|
| 7 |
+
- gguf
|
| 8 |
+
- chatbot
|
| 9 |
+
- code
|
| 10 |
library_name: llama.cpp
|
| 11 |
+
language:
|
| 12 |
+
- en
|
| 13 |
+
- rm
|
| 14 |
datasets:
|
| 15 |
+
- custom
|
| 16 |
model-index:
|
| 17 |
+
- name: Corelyn NeoH
|
| 18 |
+
results: []
|
| 19 |
+
base_model:
|
| 20 |
+
- bartowski/Llama-3.2-3B-Instruct-uncensored-GGUF
|
| 21 |
---
|
| 22 |
|
| 23 |
|
|
|
|
| 33 |
|
| 34 |
## Model Overview
|
| 35 |
|
| 36 |
+
Corelyn NeoH is a 3-billion parameter LLaMA-based instruction-tuned model, designed for general-purpose assistant tasks and knowledge extraction. It is a fine-tuned variant optimized for instruction-following use cases.
|
| 37 |
|
| 38 |
- Fine-tuning type: Instruct
|
| 39 |
|
| 40 |
- Base architecture: LLaMA
|
| 41 |
|
| 42 |
+
- Parameter count: 3B
|
| 43 |
|
| 44 |
- Context length: 131,072 tokens
|
| 45 |
|