Instructions to use Mungert/OpenMath-CodeLlama-7b-Python-hf-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use Mungert/OpenMath-CodeLlama-7b-Python-hf-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Mungert/OpenMath-CodeLlama-7b-Python-hf-GGUF", filename="OpenMath-CodeLlama-7b-Python-hf-bf16.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use Mungert/OpenMath-CodeLlama-7b-Python-hf-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/OpenMath-CodeLlama-7b-Python-hf-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Mungert/OpenMath-CodeLlama-7b-Python-hf-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/OpenMath-CodeLlama-7b-Python-hf-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Mungert/OpenMath-CodeLlama-7b-Python-hf-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/OpenMath-CodeLlama-7b-Python-hf-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Mungert/OpenMath-CodeLlama-7b-Python-hf-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/OpenMath-CodeLlama-7b-Python-hf-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Mungert/OpenMath-CodeLlama-7b-Python-hf-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Mungert/OpenMath-CodeLlama-7b-Python-hf-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use Mungert/OpenMath-CodeLlama-7b-Python-hf-GGUF with Ollama:
ollama run hf.co/Mungert/OpenMath-CodeLlama-7b-Python-hf-GGUF:Q4_K_M
- Unsloth Studio new
How to use Mungert/OpenMath-CodeLlama-7b-Python-hf-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/OpenMath-CodeLlama-7b-Python-hf-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/OpenMath-CodeLlama-7b-Python-hf-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/OpenMath-CodeLlama-7b-Python-hf-GGUF to start chatting
- Docker Model Runner
How to use Mungert/OpenMath-CodeLlama-7b-Python-hf-GGUF with Docker Model Runner:
docker model run hf.co/Mungert/OpenMath-CodeLlama-7b-Python-hf-GGUF:Q4_K_M
- Lemonade
How to use Mungert/OpenMath-CodeLlama-7b-Python-hf-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Mungert/OpenMath-CodeLlama-7b-Python-hf-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.OpenMath-CodeLlama-7b-Python-hf-GGUF-Q4_K_M
List all available models
lemonade list
Commit ·
b501f3f
verified ·
0
Parent(s):
Super-squash history to reclaim storage
Browse files- .gitattributes +77 -0
- OpenMath-CodeLlama-7b-Python-hf-bf16.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-bf16_q8_0.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-f16_q8_0.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-iq2_m.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-iq2_s.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-iq2_xs.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-iq2_xxs.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-iq3_m.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-iq3_s.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-iq3_xs.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-iq3_xxs.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-iq4_nl.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-iq4_xs.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-q2_k_m.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-q2_k_s.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-q3_k_m.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-q3_k_s.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-q4_0.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-q4_1.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-q4_k_m.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-q4_k_s.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-q5_0.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-q5_1.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-q5_k_m.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-q5_k_s.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-q6_k_m.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf-q8_0.gguf +3 -0
- OpenMath-CodeLlama-7b-Python-hf.imatrix +3 -0
- README.md +224 -0
.gitattributes
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
OpenMath-CodeLlama-7b-Python-hf-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
OpenMath-CodeLlama-7b-Python-hf-f16_q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
OpenMath-CodeLlama-7b-Python-hf-bf16_q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
OpenMath-CodeLlama-7b-Python-hf-f16_q6_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
OpenMath-CodeLlama-7b-Python-hf-bf16_q6_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
OpenMath-CodeLlama-7b-Python-hf-f16_q4_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
OpenMath-CodeLlama-7b-Python-hf-bf16_q4_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
OpenMath-CodeLlama-7b-Python-hf-q2_k_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
OpenMath-CodeLlama-7b-Python-hf-q3_k_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
OpenMath-CodeLlama-7b-Python-hf-q4_k_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
OpenMath-CodeLlama-7b-Python-hf-q5_k_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
OpenMath-CodeLlama-7b-Python-hf-q6_k_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
OpenMath-CodeLlama-7b-Python-hf-q2_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
OpenMath-CodeLlama-7b-Python-hf-q2_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
OpenMath-CodeLlama-7b-Python-hf-q3_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
OpenMath-CodeLlama-7b-Python-hf-q3_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
OpenMath-CodeLlama-7b-Python-hf-q4_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
OpenMath-CodeLlama-7b-Python-hf-q4_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
OpenMath-CodeLlama-7b-Python-hf-q5_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
OpenMath-CodeLlama-7b-Python-hf-q5_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
OpenMath-CodeLlama-7b-Python-hf-q6_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
OpenMath-CodeLlama-7b-Python-hf-q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
OpenMath-CodeLlama-7b-Python-hf-q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
OpenMath-CodeLlama-7b-Python-hf-q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
OpenMath-CodeLlama-7b-Python-hf-q4_0_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
OpenMath-CodeLlama-7b-Python-hf-q4_1_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
OpenMath-CodeLlama-7b-Python-hf-q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
OpenMath-CodeLlama-7b-Python-hf-q5_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 64 |
+
OpenMath-CodeLlama-7b-Python-hf-q5_0_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 65 |
+
OpenMath-CodeLlama-7b-Python-hf-q5_1_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 66 |
+
OpenMath-CodeLlama-7b-Python-hf-iq2_xs.gguf filter=lfs diff=lfs merge=lfs -text
|
| 67 |
+
OpenMath-CodeLlama-7b-Python-hf-iq2_xxs.gguf filter=lfs diff=lfs merge=lfs -text
|
| 68 |
+
OpenMath-CodeLlama-7b-Python-hf-iq2_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 69 |
+
OpenMath-CodeLlama-7b-Python-hf-iq2_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 70 |
+
OpenMath-CodeLlama-7b-Python-hf-iq3_xs.gguf filter=lfs diff=lfs merge=lfs -text
|
| 71 |
+
OpenMath-CodeLlama-7b-Python-hf-iq3_xxs.gguf filter=lfs diff=lfs merge=lfs -text
|
| 72 |
+
OpenMath-CodeLlama-7b-Python-hf-iq3_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 73 |
+
OpenMath-CodeLlama-7b-Python-hf-iq3_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 74 |
+
OpenMath-CodeLlama-7b-Python-hf-iq4_xs.gguf filter=lfs diff=lfs merge=lfs -text
|
| 75 |
+
OpenMath-CodeLlama-7b-Python-hf-iq4_nl.gguf filter=lfs diff=lfs merge=lfs -text
|
| 76 |
+
OpenMath-CodeLlama-7b-Python-hf.imatrix filter=lfs diff=lfs merge=lfs -text
|
| 77 |
+
OpenMath-CodeLlama-7b-Python-hf-bf16.gguf filter=lfs diff=lfs merge=lfs -text
|
OpenMath-CodeLlama-7b-Python-hf-bf16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eaa2e1644f414409950e7dbf9b06912c4f797fd40859572219502fa73d8906d7
|
| 3 |
+
size 13478106240
|
OpenMath-CodeLlama-7b-Python-hf-bf16_q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5a18934649df827dd53fd1eb3d20955c7f641ff40ae03d644fc2e74458c8bbde
|
| 3 |
+
size 9766147200
|
OpenMath-CodeLlama-7b-Python-hf-f16_q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:182268cc8f760fd9adfddf814cf07b674715cbf34a41c3293d5ff9e56aaee7ea
|
| 3 |
+
size 9766147200
|
OpenMath-CodeLlama-7b-Python-hf-iq2_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f5ae5cede603b3a93bfa26f439559c6bae3482e6fb90c5078227cb724618d3cf
|
| 3 |
+
size 2468943328
|
OpenMath-CodeLlama-7b-Python-hf-iq2_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e5cd1be7abfb415f55071ae5b3103019fdedd510ea297ff3c77eb7b51b519cc
|
| 3 |
+
size 2359891424
|
OpenMath-CodeLlama-7b-Python-hf-iq2_xs.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:24c56490c9f3c86897f672155019b2608201ffa1223da389887f33d5a00a29b3
|
| 3 |
+
size 2278807008
|
OpenMath-CodeLlama-7b-Python-hf-iq2_xxs.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a061438e3928a04c055421930990a31a59413af926039c97c2fd863fe1e7291a
|
| 3 |
+
size 2092406240
|
OpenMath-CodeLlama-7b-Python-hf-iq3_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:97af38c36aa15f07223df1d03eab7f1f8ec30b86b6fcd2651ea083951786a6c8
|
| 3 |
+
size 3194852832
|
OpenMath-CodeLlama-7b-Python-hf-iq3_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:653e89965646c129dfb3abd48c20fea2979b00a8777e5278b2724b97c0bce8d5
|
| 3 |
+
size 3194852832
|
OpenMath-CodeLlama-7b-Python-hf-iq3_xs.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9c842ccfe1d40eded89fd7496079c3cdd163e84325777a7cddd40d012767bffd
|
| 3 |
+
size 2863175136
|
OpenMath-CodeLlama-7b-Python-hf-iq3_xxs.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3327fb4ee028c8d50b8f977c50c8a33feb872488067304e64b90870cb1563487
|
| 3 |
+
size 2762249696
|
OpenMath-CodeLlama-7b-Python-hf-iq4_nl.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0dcdc285d9e48529aa6640f5d7f1e94a4c0401b0c120a159e6c1cc01c1cd46c4
|
| 3 |
+
size 3825808864
|
OpenMath-CodeLlama-7b-Python-hf-iq4_xs.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0befdbba8779c7a755f382b544770666dbe634846fdd1f44c02c978711a28145
|
| 3 |
+
size 3619337696
|
OpenMath-CodeLlama-7b-Python-hf-q2_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f1c760f5a89301701b1b9311a6b3b154206e7a93e00d4737624be553f7baac4a
|
| 3 |
+
size 2578503136
|
OpenMath-CodeLlama-7b-Python-hf-q2_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da21c5928b98a955f55a183625f4d6769970d7d1338e963038117992dfc866b5
|
| 3 |
+
size 2543687136
|
OpenMath-CodeLlama-7b-Python-hf-q3_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ed8baf50afde61db8ce9c786297acacb834c9ac4c2aacfbfed45b7bf298f9d9d
|
| 3 |
+
size 3321157088
|
OpenMath-CodeLlama-7b-Python-hf-q3_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb0edfb7ce2c8a8bed1215774d42fabd45957fbed8ae8feed0ee2c1deb00ca87
|
| 3 |
+
size 3286341088
|
OpenMath-CodeLlama-7b-Python-hf-q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:605f192bd0a0acb6403e549254de4dea48d517de42fb5507875b85de5bde2885
|
| 3 |
+
size 3792016864
|
OpenMath-CodeLlama-7b-Python-hf-q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f97b1c190a3fa61565e814ef8537180f8e6f336f065a156c6b07829786ccedcf
|
| 3 |
+
size 4213151200
|
OpenMath-CodeLlama-7b-Python-hf-q4_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e8cc6f56b19b71cfca211f5b30390ba1d6a882c2af561f1c298bdd4445942f87
|
| 3 |
+
size 4065842656
|
OpenMath-CodeLlama-7b-Python-hf-q4_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ddc3fafa1c195bfdc7b5840875143e7b44b5633649c09ea61df0b0650cde9650
|
| 3 |
+
size 3938244064
|
OpenMath-CodeLlama-7b-Python-hf-q5_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:37a527934bfad356e7ad89320eb465a455925669afe14dc3169a085f1f6e8cf6
|
| 3 |
+
size 4634285536
|
OpenMath-CodeLlama-7b-Python-hf-q5_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cffe559a7d80d2163d6347445f91d2da10fe44dffb7f5b8bef0ae35e68440e29
|
| 3 |
+
size 5055419872
|
OpenMath-CodeLlama-7b-Python-hf-q5_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c158988f36de0c3d674f97f183ffcfb10e5ae389f0c5b96f1a3b1e6e5dfc37ba
|
| 3 |
+
size 4818392544
|
OpenMath-CodeLlama-7b-Python-hf-q5_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:02001535e9991858ed6f3d39bc0a634fcb2135f3affbe42f3e2343f342ae608a
|
| 3 |
+
size 4752659936
|
OpenMath-CodeLlama-7b-Python-hf-q6_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b12460c4c3060ceab73bb8dc917d3e81ca2838d199f4ff613044e6201b34a345
|
| 3 |
+
size 5529196000
|
OpenMath-CodeLlama-7b-Python-hf-q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0411f062ca8698cc982639cf1e34352fab082b6d33ba12bd50e3317b9bd2b351
|
| 3 |
+
size 7161091200
|
OpenMath-CodeLlama-7b-Python-hf.imatrix
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:df12ce15691a40f62173871fea2f04f5f368ab636ad076ddfe9982e4ee4f8521
|
| 3 |
+
size 4562220
|
README.md
ADDED
|
@@ -0,0 +1,224 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: llama2
|
| 3 |
+
base_model:
|
| 4 |
+
- codellama/CodeLlama-7b-Python-hf
|
| 5 |
+
datasets:
|
| 6 |
+
- nvidia/OpenMathInstruct-1
|
| 7 |
+
language:
|
| 8 |
+
- en
|
| 9 |
+
tags:
|
| 10 |
+
- nvidia
|
| 11 |
+
- code
|
| 12 |
+
- math
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# <span style="color: #7FFF7F;">OpenMath-CodeLlama-7b-Python-hf GGUF Models</span>
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
## <span style="color: #7F7FFF;">Model Generation Details</span>
|
| 19 |
+
|
| 20 |
+
This model was generated using [llama.cpp](https://github.com/ggerganov/llama.cpp) at commit [`21c02174`](https://github.com/ggerganov/llama.cpp/commit/21c021745d781edf9c44b4972ef6cbbf53b0ecff).
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
---
|
| 27 |
+
|
| 28 |
+
## <span style="color: #7FFF7F;">Quantization Beyond the IMatrix</span>
|
| 29 |
+
|
| 30 |
+
I've been experimenting with a new quantization approach that selectively elevates the precision of key layers beyond what the default IMatrix configuration provides.
|
| 31 |
+
|
| 32 |
+
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:
|
| 33 |
+
👉 [Layer bumping with llama.cpp](https://github.com/Mungert69/GGUFModelBuilder/blob/main/model-converter/tensor_list_builder.py)
|
| 34 |
+
|
| 35 |
+
While this does increase model file size, it significantly improves precision for a given quantization level.
|
| 36 |
+
|
| 37 |
+
### **I'd love your feedback—have you tried this? How does it perform for you?**
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
|
| 41 |
+
|
| 42 |
+
---
|
| 43 |
+
|
| 44 |
+
<a href="https://readyforquantum.com/huggingface_gguf_selection_guide.html" style="color: #7FFF7F;">
|
| 45 |
+
Click here to get info on choosing the right GGUF model format
|
| 46 |
+
</a>
|
| 47 |
+
|
| 48 |
+
---
|
| 49 |
+
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
<!--Begin Original Model Card-->
|
| 53 |
+
|
| 54 |
+
|
| 55 |
+
|
| 56 |
+
# OpenMath-CodeLlama-7b-Python-hf
|
| 57 |
+
|
| 58 |
+
OpenMath models were designed to solve mathematical problems by integrating text-based reasoning with code blocks
|
| 59 |
+
executed by Python interpreter. The models were trained on [OpenMathInstruct-1](https://huggingface.co/datasets/nvidia/OpenMathInstruct-1),
|
| 60 |
+
a math instruction tuning dataset with 1.8M problem-solution pairs generated using permissively licensed
|
| 61 |
+
[Mixtral-8x7B](https://huggingface.co/mistralai/Mixtral-8x7B-v0.1) model.
|
| 62 |
+
|
| 63 |
+
<table border="1">
|
| 64 |
+
<tr>
|
| 65 |
+
<td></td>
|
| 66 |
+
<td colspan="2" style="text-align: center;">greedy</td>
|
| 67 |
+
<td colspan="2" style="text-align: center;">majority@50</td>
|
| 68 |
+
</tr>
|
| 69 |
+
<tr>
|
| 70 |
+
<td style="text-align: center;">model</td>
|
| 71 |
+
<td style="text-align: center;">GSM8K</td>
|
| 72 |
+
<td style="text-align: center;">MATH</td>
|
| 73 |
+
<td style="text-align: center;">GMS8K</td>
|
| 74 |
+
<td style="text-align: center;">MATH</td>
|
| 75 |
+
</tr>
|
| 76 |
+
<tr>
|
| 77 |
+
<td style="text-align: right;">OpenMath-CodeLlama-7B (<a href="https://huggingface.co/nvidia/OpenMath-CodeLlama-7b-Python">nemo</a> | <a href="https://huggingface.co/nvidia/OpenMath-CodeLlama-7b-Python-hf">HF</a>)</td>
|
| 78 |
+
<td style="text-align: center;">75.9</td>
|
| 79 |
+
<td style="text-align: center;">43.6</td>
|
| 80 |
+
<td style="text-align: center;">84.8</td>
|
| 81 |
+
<td style="text-align: center;">55.6</td>
|
| 82 |
+
</tr>
|
| 83 |
+
<tr>
|
| 84 |
+
<td style="text-align: right;">OpenMath-Mistral-7B (<a href="https://huggingface.co/nvidia/OpenMath-Mistral-7B-v0.1">nemo</a> | <a href="https://huggingface.co/nvidia/OpenMath-Mistral-7B-v0.1-hf">HF</a>)</td>
|
| 85 |
+
<td style="text-align: center;">80.2</td>
|
| 86 |
+
<td style="text-align: center;">44.5</td>
|
| 87 |
+
<td style="text-align: center;">86.9</td>
|
| 88 |
+
<td style="text-align: center;">57.2</td>
|
| 89 |
+
</tr>
|
| 90 |
+
<tr>
|
| 91 |
+
<td style="text-align: right;">OpenMath-CodeLlama-13B (<a href="https://huggingface.co/nvidia/OpenMath-CodeLlama-13b-Python">nemo</a> | <a href="https://huggingface.co/nvidia/OpenMath-CodeLlama-13b-Python-hf">HF</a>)</td>
|
| 92 |
+
<td style="text-align: center;">78.8</td>
|
| 93 |
+
<td style="text-align: center;">45.5</td>
|
| 94 |
+
<td style="text-align: center;">86.8</td>
|
| 95 |
+
<td style="text-align: center;">57.6</td>
|
| 96 |
+
</tr>
|
| 97 |
+
<tr>
|
| 98 |
+
<td style="text-align: right;">OpenMath-CodeLlama-34B (<a href="https://huggingface.co/nvidia/OpenMath-CodeLlama-34b-Python">nemo</a> | <a href="https://huggingface.co/nvidia/OpenMath-CodeLlama-34b-Python-hf">HF</a>)</td>
|
| 99 |
+
<td style="text-align: center;">80.7</td>
|
| 100 |
+
<td style="text-align: center;">48.3</td>
|
| 101 |
+
<td style="text-align: center;">88.0</td>
|
| 102 |
+
<td style="text-align: center;">60.2</td>
|
| 103 |
+
</tr>
|
| 104 |
+
<tr>
|
| 105 |
+
<td style="text-align: right;">OpenMath-Llama2-70B (<a href="https://huggingface.co/nvidia/OpenMath-Llama-2-70b">nemo</a> | <a href="https://huggingface.co/nvidia/OpenMath-Llama-2-70b-hf">HF</a>)</td>
|
| 106 |
+
<td style="text-align: center;"><b>84.7</b></td>
|
| 107 |
+
<td style="text-align: center;">46.3</td>
|
| 108 |
+
<td style="text-align: center;">90.1</td>
|
| 109 |
+
<td style="text-align: center;">58.3</td>
|
| 110 |
+
</tr>
|
| 111 |
+
<tr>
|
| 112 |
+
<td style="text-align: right;">OpenMath-CodeLlama-70B (<a href="https://huggingface.co/nvidia/OpenMath-CodeLlama-70b-Python">nemo</a> | <a href="https://huggingface.co/nvidia/OpenMath-CodeLlama-70b-Python-hf">HF</a>)</td>
|
| 113 |
+
<td style="text-align: center;">84.6</td>
|
| 114 |
+
<td style="text-align: center;"><b>50.7</b></td>
|
| 115 |
+
<td style="text-align: center;"><b>90.8</b></td>
|
| 116 |
+
<td style="text-align: center;"><b>60.4</b></td>
|
| 117 |
+
</tr>
|
| 118 |
+
</table>
|
| 119 |
+
|
| 120 |
+
The pipeline we used to produce these models is fully open-sourced!
|
| 121 |
+
|
| 122 |
+
- [Code](https://github.com/Kipok/NeMo-Skills)
|
| 123 |
+
- [Models](https://huggingface.co/collections/nvidia/openmath-65c5619de2ba059be0775014)
|
| 124 |
+
- [Dataset](https://huggingface.co/datasets/nvidia/OpenMathInstruct-1)
|
| 125 |
+
|
| 126 |
+
See our [paper](https://arxiv.org/abs/2402.10176) for more details!
|
| 127 |
+
|
| 128 |
+
# How to use the models?
|
| 129 |
+
|
| 130 |
+
Try to [run inference with our models](https://github.com/Kipok/NeMo-Skills/blob/main/docs/inference.md) with just a few commands!
|
| 131 |
+
|
| 132 |
+
# Reproducing our results
|
| 133 |
+
|
| 134 |
+
We provide [all instructions](https://github.com/Kipok/NeMo-Skills/blob/main/docs/reproducing-results.md) to fully reproduce our results.
|
| 135 |
+
|
| 136 |
+
# Improving other models
|
| 137 |
+
|
| 138 |
+
To improve other models or to learn more about our code, read through the docs below.
|
| 139 |
+
|
| 140 |
+
- [NeMo-Skills Pipeline](https://github.com/Kipok/NeMo-Skills)
|
| 141 |
+
- [Generating synthetic data](https://github.com/Kipok/NeMo-Skills/blob/main/docs/synthetic-data-generation.md)
|
| 142 |
+
- [Finetuning models](https://github.com/Kipok/NeMo-Skills/blob/main/docs/finetuning.md)
|
| 143 |
+
- [Evaluating models](https://github.com/Kipok/NeMo-Skills/blob/main/docs/evaluation.md)
|
| 144 |
+
|
| 145 |
+
In our pipeline we use [NVIDIA NeMo](https://www.nvidia.com/en-us/ai-data-science/generative-ai/nemo-framework/),
|
| 146 |
+
an end-to-end, cloud-native framework to build, customize, and deploy generative AI models anywhere.
|
| 147 |
+
It includes training and inferencing frameworks, guardrailing toolkits, data curation tools, and pretrained models,
|
| 148 |
+
offering enterprises an easy, cost-effective, and fast way to adopt generative AI.
|
| 149 |
+
|
| 150 |
+
# Citation
|
| 151 |
+
|
| 152 |
+
If you find our work useful, please consider citing us!
|
| 153 |
+
|
| 154 |
+
```bibtex
|
| 155 |
+
@article{toshniwal2024openmath,
|
| 156 |
+
title = {OpenMathInstruct-1: A 1.8 Million Math Instruction Tuning Dataset},
|
| 157 |
+
author = {Shubham Toshniwal and Ivan Moshkov and Sean Narenthiran and Daria Gitman and Fei Jia and Igor Gitman},
|
| 158 |
+
year = {2024},
|
| 159 |
+
journal = {arXiv preprint arXiv: Arxiv-2402.10176}
|
| 160 |
+
}
|
| 161 |
+
```
|
| 162 |
+
|
| 163 |
+
# License
|
| 164 |
+
|
| 165 |
+
The use of this model is governed by the [Llama 2 Community License Agreement](https://ai.meta.com/llama/license/)
|
| 166 |
+
|
| 167 |
+
<!--End Original Model Card-->
|
| 168 |
+
|
| 169 |
+
---
|
| 170 |
+
|
| 171 |
+
# <span id="testllm" style="color: #7F7FFF;">🚀 If you find these models useful</span>
|
| 172 |
+
|
| 173 |
+
Help me test my **AI-Powered Quantum Network Monitor Assistant** with **quantum-ready security checks**:
|
| 174 |
+
|
| 175 |
+
👉 [Quantum Network Monitor](https://readyforquantum.com/?assistant=open&utm_source=huggingface&utm_medium=referral&utm_campaign=huggingface_repo_readme)
|
| 176 |
+
|
| 177 |
+
|
| 178 |
+
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)
|
| 179 |
+
|
| 180 |
+
💬 **How to test**:
|
| 181 |
+
Choose an **AI assistant type**:
|
| 182 |
+
- `TurboLLM` (GPT-4.1-mini)
|
| 183 |
+
- `HugLLM` (Hugginface Open-source models)
|
| 184 |
+
- `TestLLM` (Experimental CPU-only)
|
| 185 |
+
|
| 186 |
+
### **What I’m Testing**
|
| 187 |
+
I’m pushing the limits of **small open-source models for AI network monitoring**, specifically:
|
| 188 |
+
- **Function calling** against live network services
|
| 189 |
+
- **How small can a model go** while still handling:
|
| 190 |
+
- Automated **Nmap security scans**
|
| 191 |
+
- **Quantum-readiness checks**
|
| 192 |
+
- **Network Monitoring tasks**
|
| 193 |
+
|
| 194 |
+
🟡 **TestLLM** – Current experimental model (llama.cpp on 2 CPU threads on huggingface docker space):
|
| 195 |
+
- ✅ **Zero-configuration setup**
|
| 196 |
+
- ⏳ 30s load time (slow inference but **no API costs**) . No token limited as the cost is low.
|
| 197 |
+
- 🔧 **Help wanted!** If you’re into **edge-device AI**, let’s collaborate!
|
| 198 |
+
|
| 199 |
+
### **Other Assistants**
|
| 200 |
+
🟢 **TurboLLM** – Uses **gpt-4.1-mini** :
|
| 201 |
+
- **It performs very well but unfortunatly OpenAI charges per token. For this reason tokens usage is limited.
|
| 202 |
+
- **Create custom cmd processors to run .net code on Quantum Network Monitor Agents**
|
| 203 |
+
- **Real-time network diagnostics and monitoring**
|
| 204 |
+
- **Security Audits**
|
| 205 |
+
- **Penetration testing** (Nmap/Metasploit)
|
| 206 |
+
|
| 207 |
+
🔵 **HugLLM** – Latest Open-source models:
|
| 208 |
+
- 🌐 Runs on Hugging Face Inference API. Performs pretty well using the lastest models hosted on Novita.
|
| 209 |
+
|
| 210 |
+
### 💡 **Example commands you could test**:
|
| 211 |
+
1. `"Give me info on my websites SSL certificate"`
|
| 212 |
+
2. `"Check if my server is using quantum safe encyption for communication"`
|
| 213 |
+
3. `"Run a comprehensive security audit on my server"`
|
| 214 |
+
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!
|
| 215 |
+
|
| 216 |
+
### Final Word
|
| 217 |
+
|
| 218 |
+
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.
|
| 219 |
+
|
| 220 |
+
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.
|
| 221 |
+
|
| 222 |
+
I'm also open to job opportunities or sponsorship.
|
| 223 |
+
|
| 224 |
+
Thank you! 😊
|