Instructions to use prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF", dtype="auto") - llama-cpp-python
How to use prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF", filename="Pyxidis-Manim-CodeGen-1.7B.BF16.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 prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-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 prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-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 prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-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 prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-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": "prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF:Q4_K_M
- SGLang
How to use prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-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 "prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-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": "prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-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 "prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-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": "prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF with Ollama:
ollama run hf.co/prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF:Q4_K_M
- Unsloth Studio
How to use prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-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 prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-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 prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF to start chatting
- Pi
How to use prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-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": "prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-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 prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-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 prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF with Docker Model Runner:
docker model run hf.co/prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF:Q4_K_M
- Lemonade
How to use prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull prithivMLmods/Pyxidis-Manim-CodeGen-1.7B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Pyxidis-Manim-CodeGen-1.7B-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +19 -0
- Pyxidis-Manim-CodeGen-1.7B.BF16.gguf +3 -0
- Pyxidis-Manim-CodeGen-1.7B.F16.gguf +3 -0
- Pyxidis-Manim-CodeGen-1.7B.F32.gguf +3 -0
- Pyxidis-Manim-CodeGen-1.7B.Q2_K.gguf +3 -0
- Pyxidis-Manim-CodeGen-1.7B.Q3_K_L.gguf +3 -0
- Pyxidis-Manim-CodeGen-1.7B.Q3_K_M.gguf +3 -0
- Pyxidis-Manim-CodeGen-1.7B.Q3_K_S.gguf +3 -0
- Pyxidis-Manim-CodeGen-1.7B.Q4_0.gguf +3 -0
- Pyxidis-Manim-CodeGen-1.7B.Q4_1.gguf +3 -0
- Pyxidis-Manim-CodeGen-1.7B.Q4_K.gguf +3 -0
- Pyxidis-Manim-CodeGen-1.7B.Q4_K_M.gguf +3 -0
- Pyxidis-Manim-CodeGen-1.7B.Q4_K_S.gguf +3 -0
- Pyxidis-Manim-CodeGen-1.7B.Q5_0.gguf +3 -0
- Pyxidis-Manim-CodeGen-1.7B.Q5_1.gguf +3 -0
- Pyxidis-Manim-CodeGen-1.7B.Q5_K.gguf +3 -0
- Pyxidis-Manim-CodeGen-1.7B.Q5_K_M.gguf +3 -0
- Pyxidis-Manim-CodeGen-1.7B.Q5_K_S.gguf +3 -0
- Pyxidis-Manim-CodeGen-1.7B.Q6_K.gguf +3 -0
- Pyxidis-Manim-CodeGen-1.7B.Q8_0.gguf +3 -0
|
@@ -33,3 +33,22 @@ saved_model/**/* 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
Pyxidis-Manim-CodeGen-1.7B.BF16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Pyxidis-Manim-CodeGen-1.7B.F16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Pyxidis-Manim-CodeGen-1.7B.F32.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Pyxidis-Manim-CodeGen-1.7B.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Pyxidis-Manim-CodeGen-1.7B.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Pyxidis-Manim-CodeGen-1.7B.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Pyxidis-Manim-CodeGen-1.7B.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Pyxidis-Manim-CodeGen-1.7B.Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Pyxidis-Manim-CodeGen-1.7B.Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Pyxidis-Manim-CodeGen-1.7B.Q4_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Pyxidis-Manim-CodeGen-1.7B.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Pyxidis-Manim-CodeGen-1.7B.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Pyxidis-Manim-CodeGen-1.7B.Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Pyxidis-Manim-CodeGen-1.7B.Q5_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
Pyxidis-Manim-CodeGen-1.7B.Q5_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
Pyxidis-Manim-CodeGen-1.7B.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
Pyxidis-Manim-CodeGen-1.7B.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
Pyxidis-Manim-CodeGen-1.7B.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
Pyxidis-Manim-CodeGen-1.7B.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b770bf129c0492773402cad7d9568ccf8a7ed3de46b34af8145f9368d52abd6d
|
| 3 |
+
size 3447349568
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ba343825bc3ea0b03e5bc7a74ca11e8b113d1c4631a075570014b1e687f0f4a5
|
| 3 |
+
size 3447349568
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:75c7629faa83748a3f783226b4c3936e7c766fd939a0ec4e7f26f3c8fd6da44b
|
| 3 |
+
size 6888251712
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:47c1a346e9304f47cdc34d44862abb2eb6695a4409787a10ea48a96f3afc825b
|
| 3 |
+
size 777795904
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9cf59548a550a1f905ab55b9bcda4a1826e1739867d3733dc92e2bc66ed3dcbf
|
| 3 |
+
size 1003501888
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fe997a0efc217cea9c4fd90f3401dc501a94b903cbcb98e6c0d4d8e94a7e0118
|
| 3 |
+
size 939538752
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3dda7fde540533328b70f92e8d2f25f06fef843bcddee680fc4ffafbcc9b82d9
|
| 3 |
+
size 867252544
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:33f467144169f9276d4f33fcf9285582df54705ad5e16e49326e856d0e74eebb
|
| 3 |
+
size 1054423360
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9b8c0fd4846a483b324876022ddfd895187a10aafec119d5938b80f243a01f99
|
| 3 |
+
size 1142503744
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:af26db2052222130e0b10ef700d127302816140f7586d5cd3bc53763a405fdca
|
| 3 |
+
size 1107409216
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:af26db2052222130e0b10ef700d127302816140f7586d5cd3bc53763a405fdca
|
| 3 |
+
size 1107409216
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f177668038f7c6f7a88e41bde1aad889a66109807c69c72d1a8bf9b57d809568
|
| 3 |
+
size 1060190528
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:57432b9fbcd37b55ff0ac993b05f0744ca0c4e897c460e4984ae9239592e00cb
|
| 3 |
+
size 1230584128
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:131f1a11edcb74e7e879ca215a8f1d1a5b912d453f0687c7c3bd7b361c2a8760
|
| 3 |
+
size 1318664512
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:110c15144881efbab99534887f143670547e742173e2b040a079a244a6bf6b33
|
| 3 |
+
size 1257879872
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:110c15144881efbab99534887f143670547e742173e2b040a079a244a6bf6b33
|
| 3 |
+
size 1257879872
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c1851ddaf52b9ada00103353d1638f052ac9f6e5be2d865e29c8e7746edcaaa
|
| 3 |
+
size 1230584128
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f875a5afb5cdde48089484c21611bd4fb2521c8275b6ee5e0ce1ac2bea76577
|
| 3 |
+
size 1417754944
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:79a4627a7b2235d34c2e617bf82ae7f08df44c084da4467d7073e5f6b6e00a48
|
| 3 |
+
size 1834426688
|