Instructions to use Mungert/NextCoder-14B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Mungert/NextCoder-14B-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Mungert/NextCoder-14B-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Mungert/NextCoder-14B-GGUF", dtype="auto") - llama-cpp-python
How to use Mungert/NextCoder-14B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Mungert/NextCoder-14B-GGUF", filename="NextCoder-14B-bf16.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use Mungert/NextCoder-14B-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Mungert/NextCoder-14B-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Mungert/NextCoder-14B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Mungert/NextCoder-14B-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Mungert/NextCoder-14B-GGUF: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 Mungert/NextCoder-14B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Mungert/NextCoder-14B-GGUF: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 Mungert/NextCoder-14B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Mungert/NextCoder-14B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Mungert/NextCoder-14B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Mungert/NextCoder-14B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Mungert/NextCoder-14B-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Mungert/NextCoder-14B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Mungert/NextCoder-14B-GGUF:Q4_K_M
- SGLang
How to use Mungert/NextCoder-14B-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Mungert/NextCoder-14B-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Mungert/NextCoder-14B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Mungert/NextCoder-14B-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Mungert/NextCoder-14B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use Mungert/NextCoder-14B-GGUF with Ollama:
ollama run hf.co/Mungert/NextCoder-14B-GGUF:Q4_K_M
- Unsloth Studio new
How to use Mungert/NextCoder-14B-GGUF 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 Mungert/NextCoder-14B-GGUF 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 Mungert/NextCoder-14B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Mungert/NextCoder-14B-GGUF to start chatting
- Pi new
How to use Mungert/NextCoder-14B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf Mungert/NextCoder-14B-GGUF: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": "Mungert/NextCoder-14B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Mungert/NextCoder-14B-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf Mungert/NextCoder-14B-GGUF: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 Mungert/NextCoder-14B-GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use Mungert/NextCoder-14B-GGUF with Docker Model Runner:
docker model run hf.co/Mungert/NextCoder-14B-GGUF:Q4_K_M
- Lemonade
How to use Mungert/NextCoder-14B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Mungert/NextCoder-14B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.NextCoder-14B-GGUF-Q4_K_M
List all available models
lemonade list
Commit ·
4047f7e
verified ·
0
Parent(s):
Super-squash history to reclaim storage
Browse files- .gitattributes +79 -0
- NextCoder-14B-bf16.gguf +3 -0
- NextCoder-14B-bf16_q8_0.gguf +3 -0
- NextCoder-14B-f16_q8_0.gguf +3 -0
- NextCoder-14B-iq1_m.gguf +3 -0
- NextCoder-14B-iq1_s.gguf +3 -0
- NextCoder-14B-iq2_m.gguf +3 -0
- NextCoder-14B-iq2_s.gguf +3 -0
- NextCoder-14B-iq2_xs.gguf +3 -0
- NextCoder-14B-iq2_xxs.gguf +3 -0
- NextCoder-14B-iq3_m.gguf +3 -0
- NextCoder-14B-iq3_s.gguf +3 -0
- NextCoder-14B-iq3_xs.gguf +3 -0
- NextCoder-14B-iq3_xxs.gguf +3 -0
- NextCoder-14B-iq4_nl.gguf +3 -0
- NextCoder-14B-iq4_xs.gguf +3 -0
- NextCoder-14B-q2_k_m.gguf +3 -0
- NextCoder-14B-q2_k_s.gguf +3 -0
- NextCoder-14B-q3_k_m.gguf +3 -0
- NextCoder-14B-q3_k_s.gguf +3 -0
- NextCoder-14B-q4_0.gguf +3 -0
- NextCoder-14B-q4_1.gguf +3 -0
- NextCoder-14B-q4_k_m.gguf +3 -0
- NextCoder-14B-q4_k_s.gguf +3 -0
- NextCoder-14B-q5_0.gguf +3 -0
- NextCoder-14B-q5_1.gguf +3 -0
- NextCoder-14B-q5_k_m.gguf +3 -0
- NextCoder-14B-q5_k_s.gguf +3 -0
- NextCoder-14B-q6_k_m.gguf +3 -0
- NextCoder-14B-q8_0.gguf +3 -0
- NextCoder-14B.imatrix +3 -0
- README.md +237 -0
.gitattributes
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
NextCoder-14B-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
NextCoder-14B-f16_q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
NextCoder-14B-bf16_q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
NextCoder-14B-f16_q6_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
NextCoder-14B-bf16_q6_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
NextCoder-14B-f16_q4_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
NextCoder-14B-bf16_q4_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
NextCoder-14B-q2_k_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
NextCoder-14B-q3_k_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
NextCoder-14B-q4_k_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
NextCoder-14B-q5_k_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
NextCoder-14B-q6_k_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
NextCoder-14B-q2_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
NextCoder-14B-q2_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
NextCoder-14B-q3_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
NextCoder-14B-q3_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
NextCoder-14B-q4_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
NextCoder-14B-q4_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
NextCoder-14B-q5_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
NextCoder-14B-q5_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
NextCoder-14B-q6_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
NextCoder-14B-q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
NextCoder-14B-q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
NextCoder-14B-q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
NextCoder-14B-q4_0_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
NextCoder-14B-q4_1_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
NextCoder-14B-q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
NextCoder-14B-q5_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 64 |
+
NextCoder-14B-q5_0_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 65 |
+
NextCoder-14B-q5_1_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 66 |
+
NextCoder-14B-iq1_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 67 |
+
NextCoder-14B-iq1_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 68 |
+
NextCoder-14B-iq2_xs.gguf filter=lfs diff=lfs merge=lfs -text
|
| 69 |
+
NextCoder-14B-iq2_xxs.gguf filter=lfs diff=lfs merge=lfs -text
|
| 70 |
+
NextCoder-14B-iq2_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 71 |
+
NextCoder-14B-iq2_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 72 |
+
NextCoder-14B-iq3_xs.gguf filter=lfs diff=lfs merge=lfs -text
|
| 73 |
+
NextCoder-14B-iq3_xxs.gguf filter=lfs diff=lfs merge=lfs -text
|
| 74 |
+
NextCoder-14B-iq3_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 75 |
+
NextCoder-14B-iq3_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 76 |
+
NextCoder-14B-iq4_xs.gguf filter=lfs diff=lfs merge=lfs -text
|
| 77 |
+
NextCoder-14B-iq4_nl.gguf filter=lfs diff=lfs merge=lfs -text
|
| 78 |
+
NextCoder-14B.imatrix filter=lfs diff=lfs merge=lfs -text
|
| 79 |
+
NextCoder-14B-bf16.gguf filter=lfs diff=lfs merge=lfs -text
|
NextCoder-14B-bf16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:115402b8cfc60bd931b2d5ba3e9f1a267aee97e176df1ffcc96825f90b40eb2c
|
| 3 |
+
size 29547717408
|
NextCoder-14B-bf16_q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:af408f46b56a8de1363dc1d830bd32f49f83a35a7600b70345792fbc91a1b830
|
| 3 |
+
size 21762040608
|
NextCoder-14B-f16_q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e1978e80acebb0c9dadbc328da9717288cdbc5278cd9230adb854ae7a67783b6
|
| 3 |
+
size 21762040608
|
NextCoder-14B-iq1_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3471df5374e7b09b610176260a5b98d2adb6965d8b8d8f17417785aa8e511834
|
| 3 |
+
size 4840236128
|
NextCoder-14B-iq1_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:198ed640e6f07d40d62a6f42ce3c69352fcab4e58b5249c6f53a7a4edd076bf6
|
| 3 |
+
size 4515587168
|
NextCoder-14B-iq2_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ed19a266c45d31d5f9851250656565d3614454080f7e4a34d7c2011ec04f7907
|
| 3 |
+
size 5719319648
|
NextCoder-14B-iq2_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db2549f7a244cc6a653403493383586f4d040c53595bb5b7c923b926e31ac126
|
| 3 |
+
size 5479457888
|
NextCoder-14B-iq2_xs.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e9c814a7f6f3e594b45bed51679cf330072d98cd936afbd6d58cdea8bf542808
|
| 3 |
+
size 5317993568
|
NextCoder-14B-iq2_xxs.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dfd1609dfec4f225e7377c8253f9168df8cee047b95c378718d1e1d4040c47fd
|
| 3 |
+
size 4940260448
|
NextCoder-14B-iq3_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c36caa87d83443b0f354de6bc3a3f585ce144a17f1a95aafcdac9b8d9ecee46d
|
| 3 |
+
size 7177905248
|
NextCoder-14B-iq3_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:adb4567ea72ba28c4df82e8846b4525c3193e3ba7c3e57e6b84f6f759dbd149b
|
| 3 |
+
size 7177905248
|
NextCoder-14B-iq3_xs.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5cba00b5648a9237dda4f2f595ec8aa9e5416d9c0be7bccdafdae93a71183cab
|
| 3 |
+
size 6524470368
|
NextCoder-14B-iq3_xxs.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6bc30d1efdddceef0ee54f374fdbb66953cf4a40eed529b920b7e32572d065f8
|
| 3 |
+
size 6350472288
|
NextCoder-14B-iq4_nl.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ede7330a21559a09b740c7e310b867aca01d54070c82438d9b0fe805b11c64e0
|
| 3 |
+
size 8549184608
|
NextCoder-14B-iq4_xs.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e48fa03e2c0fae2fde78ce7f02aef79b73eefde9efcd144820d2327326844995
|
| 3 |
+
size 8119841888
|
NextCoder-14B-q2_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:68ee31870088a4ae8942e3cc3a824f58947b447029915e22672d1fc2e756e129
|
| 3 |
+
size 6073582688
|
NextCoder-14B-q2_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:67ba734d2609852e09896b63666566bd3784456ea09d7b5c17170b006e99d00b
|
| 3 |
+
size 5866775648
|
NextCoder-14B-q3_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6ff00e0f52c4094da01d8e520d61db99fd062f754070ad4b9b8c5529105cdbfd
|
| 3 |
+
size 7584351328
|
NextCoder-14B-q3_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5d411878ee136884cbca4bccb7ecb5ea9bc7fda6b26307bc2525eba19417add
|
| 3 |
+
size 7377544288
|
NextCoder-14B-q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f29958d1ef86d40d7b84a11c34cfc382020af582e16212569abcf85a2734919b
|
| 3 |
+
size 8317002848
|
NextCoder-14B-q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ee1e78f7e11e3c1d5951013d6555e60fc1395766142b1b25b1f1b2ef400fd38
|
| 3 |
+
size 9240077408
|
NextCoder-14B-q4_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:249102227e15191a1d0f1f42a79ec448a3182a38d44452a16133b90bb716dc3b
|
| 3 |
+
size 9120638048
|
NextCoder-14B-q4_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d422e132c1be6fd9944c3d7a6826818ee12f18f3d38242766df589b48f630591
|
| 3 |
+
size 8855094368
|
NextCoder-14B-q5_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d726bd77c6d679a91e4d42b44ad87c3359ad29ae244fdcb199ff42f208f9ccd6
|
| 3 |
+
size 10163151968
|
NextCoder-14B-q5_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3e99d0d246db62a7db1af0802681b59919708f5ab5eddb606eafc18ec09ddace
|
| 3 |
+
size 11086226528
|
NextCoder-14B-q5_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd5d16dc33c94d859d7d7b1a00e57327d26df6a6d46a122ce2f29929b48937cb
|
| 3 |
+
size 10647094368
|
NextCoder-14B-q5_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e96954d917b0d8fe2f6de3474b5c940e5af3441806e7108276c2c9295ae14556
|
| 3 |
+
size 10505741408
|
NextCoder-14B-q6_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cf634d0f23163db218855de0d8d832fc9919ce86473b29f440c805819023240e
|
| 3 |
+
size 12124685408
|
NextCoder-14B-q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a903600e8125ddac1e3831db7c003463ed6272c3071d8ff40a498096b971ee4e
|
| 3 |
+
size 15701599008
|
NextCoder-14B.imatrix
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dbf66cae87080dbdb573e768c353d5ae3e337f3b7b9475e914602ae568aa6fce
|
| 3 |
+
size 8563644
|
README.md
ADDED
|
@@ -0,0 +1,237 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
base_model:
|
| 6 |
+
- Qwen/Qwen2.5-Coder-14B-Instruct
|
| 7 |
+
pipeline_tag: text-generation
|
| 8 |
+
library_name: transformers
|
| 9 |
+
tags:
|
| 10 |
+
- code
|
| 11 |
+
- chat
|
| 12 |
+
- microsoft
|
| 13 |
+
- nextcoder
|
| 14 |
+
- selekt
|
| 15 |
+
datasets:
|
| 16 |
+
- microsoft/NextCoderDataset
|
| 17 |
+
- microsoft/NextCoderDataset-Conversational
|
| 18 |
+
- bigcode/commitpackft
|
| 19 |
+
- bigcode/starcoderdata
|
| 20 |
+
---
|
| 21 |
+
|
| 22 |
+
# <span style="color: #7FFF7F;">NextCoder-14B GGUF Models</span>
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
## <span style="color: #7F7FFF;">Model Generation Details</span>
|
| 26 |
+
|
| 27 |
+
This model was generated using [llama.cpp](https://github.com/ggerganov/llama.cpp) at commit [`e743cddb`](https://github.com/ggerganov/llama.cpp/commit/e743cddb60dc3a8815b9de7dd7d5c491e61b2259).
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
---
|
| 34 |
+
|
| 35 |
+
## <span style="color: #7FFF7F;">Quantization Beyond the IMatrix</span>
|
| 36 |
+
|
| 37 |
+
I've been experimenting with a new quantization approach that selectively elevates the precision of key layers beyond what the default IMatrix configuration provides.
|
| 38 |
+
|
| 39 |
+
In my testing, standard IMatrix quantization underperforms at lower bit depths, especially with Mixture of Experts (MoE) models. To address this, I'm using the `--tensor-type` option in `llama.cpp` to manually "bump" important layers to higher precision. You can see the implementation here:
|
| 40 |
+
👉 [Layer bumping with llama.cpp](https://github.com/Mungert69/GGUFModelBuilder/blob/main/model-converter/tensor_list_builder.py)
|
| 41 |
+
|
| 42 |
+
While this does increase model file size, it significantly improves precision for a given quantization level.
|
| 43 |
+
|
| 44 |
+
### **I'd love your feedback—have you tried this? How does it perform for you?**
|
| 45 |
+
|
| 46 |
+
|
| 47 |
+
|
| 48 |
+
|
| 49 |
+
---
|
| 50 |
+
|
| 51 |
+
<a href="https://readyforquantum.com/huggingface_gguf_selection_guide.html" style="color: #7FFF7F;">
|
| 52 |
+
Click here to get info on choosing the right GGUF model format
|
| 53 |
+
</a>
|
| 54 |
+
|
| 55 |
+
---
|
| 56 |
+
|
| 57 |
+
|
| 58 |
+
|
| 59 |
+
<!--Begin Original Model Card-->
|
| 60 |
+
|
| 61 |
+
|
| 62 |
+
|
| 63 |
+
# NextCoder-14B
|
| 64 |
+
<p align="center">
|
| 65 |
+
<a href="https://github.com/microsoft/NextCoder">GitHub</a>   |    <a href="https://www.microsoft.com/en-us/research/publication/nextcoder-robust-adaptation-of-code-lms-to-diverse-code-edits/">Paper</a>
|
| 66 |
+
</p>
|
| 67 |
+
|
| 68 |
+
> NextCoder: Robust Adaptation of Code LMs to Diverse Code Edits (ICML'2025)
|
| 69 |
+
|
| 70 |
+
## Introduction
|
| 71 |
+
|
| 72 |
+
NextCoder is the latest series of Code-Editing large language models developed using the Qwen2.5-Coder Instruct variants as base and trained with novel Selective Knowledge Transfer finetuning methodology as introduced in the paper. NextCoder family model comes in 3 different sizes 7, 14, 32 billion parameters, to meet the needs of different developers.
|
| 73 |
+
Following are the key improvements:
|
| 74 |
+
- Significantly improvements in **code editing**, NextCoder-32B has performing on par with GPT-4o on complex benchmarks like Aider-Polyglot with performance increment of 44% from their base model.
|
| 75 |
+
- No loss of generalizibility, due to our new finetuning method **SeleKT**
|
| 76 |
+
- **Long-context Support** up to 32K tokens.
|
| 77 |
+
|
| 78 |
+
**This repo contains the NextCoder 14B model**, which has the following features:
|
| 79 |
+
- Type: Causal Language Models
|
| 80 |
+
- Training Stage: Post-training with SeleKT
|
| 81 |
+
- Architecture: transformers with RoPE, SwiGLU, RMSNorm, and Attention QKV bias
|
| 82 |
+
- Number of Parameters: 14.7B
|
| 83 |
+
- Number of Paramaters (Non-Embedding): 13.1B
|
| 84 |
+
- Number of Layers: 48
|
| 85 |
+
- Number of Attention Heads (GQA): 40 for Q and 8 for KV
|
| 86 |
+
|
| 87 |
+
For more details, please refer to our [blog](), [GitHub](https://github.com/microsoft/NextCoder), [Paper](https://www.microsoft.com/en-us/research/publication/nextcoder-robust-adaptation-of-code-lms-to-diverse-code-edits/).
|
| 88 |
+
|
| 89 |
+
## Requirements
|
| 90 |
+
|
| 91 |
+
The code of NextCoder is based on Qwen2.5 base models which has been in the latest Hugging face `transformers` and we advise you to use the latest version of `transformers`.
|
| 92 |
+
|
| 93 |
+
With `transformers<4.37.0`, you will encounter the following error:
|
| 94 |
+
```
|
| 95 |
+
KeyError: 'qwen2'
|
| 96 |
+
```
|
| 97 |
+
|
| 98 |
+
## Quickstart
|
| 99 |
+
|
| 100 |
+
Here provides a code snippet with `apply_chat_template` to show you how to load the tokenizer and model and how to generate contents.
|
| 101 |
+
|
| 102 |
+
```python
|
| 103 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 104 |
+
|
| 105 |
+
model_name = "microsoft/NextCoder-14B"
|
| 106 |
+
|
| 107 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 108 |
+
model_name,
|
| 109 |
+
torch_dtype="auto",
|
| 110 |
+
device_map="auto",
|
| 111 |
+
)
|
| 112 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 113 |
+
|
| 114 |
+
prompt = """
|
| 115 |
+
Fix the following function that divides two numbers to handle all the edge cases:
|
| 116 |
+
|
| 117 |
+
def divide(a, b)
|
| 118 |
+
returm a/b
|
| 119 |
+
"""
|
| 120 |
+
messages = [
|
| 121 |
+
{"role": "user", "content": prompt}
|
| 122 |
+
]
|
| 123 |
+
text = tokenizer.apply_chat_template(
|
| 124 |
+
messages,
|
| 125 |
+
tokenize=False,
|
| 126 |
+
add_generation_prompt=True
|
| 127 |
+
)
|
| 128 |
+
model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
|
| 129 |
+
|
| 130 |
+
generated_ids = model.generate(
|
| 131 |
+
**model_inputs,
|
| 132 |
+
max_new_tokens=1024
|
| 133 |
+
)
|
| 134 |
+
generated_ids = [
|
| 135 |
+
output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
|
| 136 |
+
]
|
| 137 |
+
|
| 138 |
+
response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
|
| 139 |
+
```
|
| 140 |
+
## Evaluation and Performance
|
| 141 |
+
|
| 142 |
+
| Models | HUMANEVALFIX | CANITEDIT | AIDER | POLYGLOT |
|
| 143 |
+
|--------|---------------|-----------|-------|----------|
|
| 144 |
+
| QwenCoder-2.5-3B | 73.2 | 37.1 | 36.8 | - |
|
| 145 |
+
| QwenCoder-2.5-3B-LoRA | 64.6 | 36.2 | 35.8 | - |
|
| 146 |
+
| QwenCoder-2.5-3B-SFT | 76.2 | 32.4 | 30.1 | - |
|
| 147 |
+
| **NextCoder-3B** | 75.6 | 42.4 | 37.6 | - |
|
| 148 |
+
| QwenCoder-2.5-7B | 73.8 | 48.1 | 59.4 | - |
|
| 149 |
+
| QwenCoder-2.5-7B-LoRA | 70.7 | 44.3 | 40.6 | - |
|
| 150 |
+
| QwenCoder-2.5-7B-SFT | 70.1 | 36.7 | 48.9 | - |
|
| 151 |
+
| **NextCoder-7B** | 81.1 | 50.5 | 65.7 | - |
|
| 152 |
+
| QwenCoder-2.5-14B | 87.8 | 58.1 | 66.9 | 9.3 |
|
| 153 |
+
| QwenCoder-2.5-14B-LoRA | 78.0 | 50.9 | 66.2 | 5.3 |
|
| 154 |
+
| QwenCoder-2.5-14B-SFT | 79.9 | 42.4 | 36.8 | 3.1 |
|
| 155 |
+
| **NextCoder-14B** | 89.8 | 60.2 | 72.2 | 12.2 |
|
| 156 |
+
| QwenCoder-2.5-32B | **90.2** | 61.0 | 72.9 | 16.4 |
|
| 157 |
+
| QwenCoder-2.5-32B-LoRA | 82.3 | 52.4 | 60.2 | 6.7 |
|
| 158 |
+
| QwenCoder-2.5-32B-SFT | 81.7 | 49.5 | 66.9 | 8.4 |
|
| 159 |
+
| **NextCoder-32B** | 88.9 | **62.4** | **74.7** | **23.6** |
|
| 160 |
+
|
| 161 |
+
*Comparison of base QwenCoder-2.5 models of different sizes and their SELEKT-enhanced versions across three code editing benchmarks.*
|
| 162 |
+
|
| 163 |
+
**Detailed evaluation results are reported in this [📑 paper](https://www.microsoft.com/en-us/research/publication/nextcoder-robust-adaptation-of-code-lms-to-diverse-code-edits/).**
|
| 164 |
+
|
| 165 |
+
## Responsible AI Use
|
| 166 |
+
The base models (from the QwenCoder-2.5 family) are suspectible to malicious prompts and may generate or execute harmful code. Our finetuning does not enhance or impede such behaviors. The users should use the models and their outputs responsibly and with caution. Model outputs should be subjected to additional analysis, including manual inspection, and sandboxing before execution.
|
| 167 |
+
|
| 168 |
+
## Citation
|
| 169 |
+
|
| 170 |
+
```bibtex
|
| 171 |
+
@inproceedings{aggarwal2025nextcoder,
|
| 172 |
+
author = {Aggarwal, Tushar and Singh, Swayam and Awasthi, Abhijeet and Kanade, Aditya and Natarajan, Nagarajan},
|
| 173 |
+
title = {NextCoder: Robust Adaptation of Code LMs to Diverse Code Edits},
|
| 174 |
+
booktitle = {International Conference on Machine Learning},
|
| 175 |
+
year = {2025},
|
| 176 |
+
url = {https://www.microsoft.com/en-us/research/publication/nextcoder-robust-adaptation-of-code-lms-to-diverse-code-edits/},
|
| 177 |
+
}
|
| 178 |
+
```
|
| 179 |
+
|
| 180 |
+
<!--End Original Model Card-->
|
| 181 |
+
|
| 182 |
+
---
|
| 183 |
+
|
| 184 |
+
# <span id="testllm" style="color: #7F7FFF;">🚀 If you find these models useful</span>
|
| 185 |
+
|
| 186 |
+
Help me test my **AI-Powered Quantum Network Monitor Assistant** with **quantum-ready security checks**:
|
| 187 |
+
|
| 188 |
+
👉 [Quantum Network Monitor](https://readyforquantum.com/?assistant=open&utm_source=huggingface&utm_medium=referral&utm_campaign=huggingface_repo_readme)
|
| 189 |
+
|
| 190 |
+
|
| 191 |
+
The full Open Source Code for the Quantum Network Monitor Service available at my github repos ( repos with NetworkMonitor in the name) : [Source Code Quantum Network Monitor](https://github.com/Mungert69). You will also find the code I use to quantize the models if you want to do it yourself [GGUFModelBuilder](https://github.com/Mungert69/GGUFModelBuilder)
|
| 192 |
+
|
| 193 |
+
💬 **How to test**:
|
| 194 |
+
Choose an **AI assistant type**:
|
| 195 |
+
- `TurboLLM` (GPT-4.1-mini)
|
| 196 |
+
- `HugLLM` (Hugginface Open-source models)
|
| 197 |
+
- `TestLLM` (Experimental CPU-only)
|
| 198 |
+
|
| 199 |
+
### **What I’m Testing**
|
| 200 |
+
I’m pushing the limits of **small open-source models for AI network monitoring**, specifically:
|
| 201 |
+
- **Function calling** against live network services
|
| 202 |
+
- **How small can a model go** while still handling:
|
| 203 |
+
- Automated **Nmap security scans**
|
| 204 |
+
- **Quantum-readiness checks**
|
| 205 |
+
- **Network Monitoring tasks**
|
| 206 |
+
|
| 207 |
+
🟡 **TestLLM** – Current experimental model (llama.cpp on 2 CPU threads on huggingface docker space):
|
| 208 |
+
- ✅ **Zero-configuration setup**
|
| 209 |
+
- ⏳ 30s load time (slow inference but **no API costs**) . No token limited as the cost is low.
|
| 210 |
+
- 🔧 **Help wanted!** If you’re into **edge-device AI**, let’s collaborate!
|
| 211 |
+
|
| 212 |
+
### **Other Assistants**
|
| 213 |
+
🟢 **TurboLLM** – Uses **gpt-4.1-mini** :
|
| 214 |
+
- **It performs very well but unfortunatly OpenAI charges per token. For this reason tokens usage is limited.
|
| 215 |
+
- **Create custom cmd processors to run .net code on Quantum Network Monitor Agents**
|
| 216 |
+
- **Real-time network diagnostics and monitoring**
|
| 217 |
+
- **Security Audits**
|
| 218 |
+
- **Penetration testing** (Nmap/Metasploit)
|
| 219 |
+
|
| 220 |
+
🔵 **HugLLM** – Latest Open-source models:
|
| 221 |
+
- 🌐 Runs on Hugging Face Inference API. Performs pretty well using the lastest models hosted on Novita.
|
| 222 |
+
|
| 223 |
+
### 💡 **Example commands you could test**:
|
| 224 |
+
1. `"Give me info on my websites SSL certificate"`
|
| 225 |
+
2. `"Check if my server is using quantum safe encyption for communication"`
|
| 226 |
+
3. `"Run a comprehensive security audit on my server"`
|
| 227 |
+
4. '"Create a cmd processor to .. (what ever you want)" Note you need to install a [Quantum Network Monitor Agent](https://readyforquantum.com/Download/?utm_source=huggingface&utm_medium=referral&utm_campaign=huggingface_repo_readme) to run the .net code on. This is a very flexible and powerful feature. Use with caution!
|
| 228 |
+
|
| 229 |
+
### Final Word
|
| 230 |
+
|
| 231 |
+
I fund the servers used to create these model files, run the Quantum Network Monitor service, and pay for inference from Novita and OpenAI—all out of my own pocket. All the code behind the model creation and the Quantum Network Monitor project is [open source](https://github.com/Mungert69). Feel free to use whatever you find helpful.
|
| 232 |
+
|
| 233 |
+
If you appreciate the work, please consider [buying me a coffee](https://www.buymeacoffee.com/mahadeva) ☕. Your support helps cover service costs and allows me to raise token limits for everyone.
|
| 234 |
+
|
| 235 |
+
I'm also open to job opportunities or sponsorship.
|
| 236 |
+
|
| 237 |
+
Thank you! 😊
|