• Home
  • About Us
  • Contact Us
  • Disclaimer
  • Privacy Policy
Saturday, August 22, 2026
newsaiworld
  • Home
  • Artificial Intelligence
  • ChatGPT
  • Data Science
  • Machine Learning
  • Crypto Coins
  • Contact Us
No Result
View All Result
  • Home
  • Artificial Intelligence
  • ChatGPT
  • Data Science
  • Machine Learning
  • Crypto Coins
  • Contact Us
No Result
View All Result
Morning News
No Result
View All Result
Home Data Science

Run Muse Glimmer for Native Vibe Coding with llama.cpp, DFlash, and Pi

Admin by Admin
August 22, 2026
in Data Science
0
Awan run muse glimmer local vibe coding llamacpp dflash pi 8.png
0
SHARES
0
VIEWS
Share on FacebookShare on Twitter


Run Muse Glimmer for Local Vibe Coding with llama.cpp, DFlash, and Pi

Muse Glimmer is gaining consideration within the native AI group and is being in contrast with Qwen’s 27B-class fashions. In lots of circumstances, it’s performing higher, particularly for native coding and agentic workflows.

Meta appears to be like robust within the open-model area, and with just a few extra iterations, fashions like this might begin competing intently with proprietary techniques. As an AI fanatic, it is thrilling to have the ability to run this degree of AI domestically.

On this information, we’ll run Muse Glimmer with llama.cpp, pace it up with DFlash, and join it to Pi for native vibe coding. Will probably be capable of construct, take a look at, and debug a undertaking immediately from the terminal.

1. Downloading Muse Glimmer

First, obtain the primary Muse Glimmer mannequin and its DFlash drafter from Hugging Face.

Set up the Hugging Face CLI:

curl -LsSf https://hf.co/cli/set up.sh | bash
echo 'export PATH="/root/.native/bin:$PATH"' >> ~/.bashrc
supply ~/.bashrc

Log in:

hf auth login

Create a mannequin listing:

mkdir -p /workspace/muse-glimmer

Obtain the 16.8 GB foremost mannequin:

hf obtain meta-models/Muse-Glimmer-30B-GGUF 
  muse-glimmer-30B-kquant-17gb.gguf 
  --local-dir /workspace/muse-glimmer

Obtain the 1.63 GB DFlash drafter:

hf obtain meta-models/Muse-Glimmer-30B-GGUF 
  dflash-kquant.gguf 
  --local-dir /workspace/muse-glimmer

Each recordsdata can be saved in /workspace/muse-glimmer.

2. Putting in and Working llama.cpp

Subsequent, set up llama.cpp with CUDA help and use it to serve Muse Glimmer with the DFlash drafter.

Set up and construct llama.cpp:

cd /workspace

git clone https://github.com/ggml-org/llama.cpp.git
cd llama.cpp
git pull origin grasp
cmake -B construct -DGGML_CUDA=ON -DCMAKE_BUILD_TYPE=Launch
cmake --build construct --config Launch -j$(nproc)
ln -sf "$(pwd)/construct/bin/llama-server" /root/.native/bin/llama-server

Verify the set up:

git pull origin grasp
cmake -B construct -DGGML_CUDA=ON -DCMAKE_BUILD_TYPE=Launch
cmake --build construct --config Launch -j$(nproc)
ln -sf "$(pwd)/construct/bin/llama-server" /root/.native/bin/llama-server

You must see the put in llama.cpp model and construct info.

Now begin Muse Glimmer with DFlash speculative decoding:

llama-server 
  -m /workspace/muse-glimmer/muse-glimmer-30B-kquant-17gb.gguf 
  -md /workspace/muse-glimmer/dflash-kquant.gguf 
  --spec-type draft-dflash 
  --spec-draft-n-max 15 
  -ngl all 
  --spec-draft-ngl all 
  -fa on 
  --ctx-size 16384 
  --alias muse 
  --host 0.0.0.0 
  --port 8080 
  --jinja

Run Muse Glimmer for Local Vibe Coding with llama.cpp, DFlash, and Pi

Right here, llama.cpp masses the primary mannequin and the separate DFlash drafter onto the GPU, utilizing speculative decoding to enhance era pace.

3. Testing Muse Glimmer

As soon as the server is operating, you may take a look at Muse Glimmer immediately via the built-in llama.cpp Internet UI.

Open:

http://localhost:8080/

In my preliminary testing, I used to be getting round 46 tokens/second, which is already fairly good.

Run Muse Glimmer for Local Vibe Coding with llama.cpp, DFlash, and Pi

Throughout longer coding duties, I noticed speeds attain round 127 tokens/second, making the mannequin really feel a lot sooner for agentic coding workflows.

Run Muse Glimmer for Local Vibe Coding with llama.cpp, DFlash, and Pi

The outcomes have been blended, although. Muse Glimmer created an HTML recreation for me, however it did not work notably effectively. For this sort of process, I nonetheless discovered Qwen3.8-27B noticeably higher at producing working HTML apps and video games.

Run Muse Glimmer for Local Vibe Coding with llama.cpp, DFlash, and Pi

4. Putting in Pi Coding Agent

Subsequent, set up Pi and join it to the llama.cpp server operating Muse Glimmer.

Set up Pi:

curl -fsSL https://pi.dev/set up.sh | sh

Then set up Hugging Face’s llama.cpp extension:

pi set up git:github.com/huggingface/pi-llama

Restart your terminal after set up.

The pi-llama extension robotically connects to:

http://localhost:8080/v1

It detects the fashions being served by llama.cpp, so you don’t want to configure fashions.json manually.

5. Beginning Native Vibe Coding

Now create a undertaking and choose Muse Glimmer because the mannequin inside Pi.

Create an empty undertaking:

mkdir -p /workspace/glimmer-test
cd /workspace/glimmer-test

Launch Pi:

pi

Inside Pi, run:

/mannequin

Seek for:

llama-cpp

Then choose:

muse

Run Muse Glimmer for Local Vibe Coding with llama.cpp, DFlash, and Pi

Muse Glimmer ought to now be out there via Pi’s llama-cpp supplier.

Run Muse Glimmer for Local Vibe Coding with llama.cpp, DFlash, and Pi

6. Testing Muse Glimmer as a Coding Agent

Lastly, give Muse Glimmer an entire coding process and let it construct, take a look at, and debug the undertaking itself.

I used this immediate:

 

Construct an entire Python process administration API from scratch utilizing FastAPI.

Necessities:
– Create a clear undertaking construction.
– Add endpoints to create, checklist, replace, and delete duties.
– Use SQLite for persistence.
– Add enter validation and error dealing with.
– Add pytest assessments for all endpoints.
– Create necessities.txt and README.md.
– Run the assessments your self.
– Repair any errors and rerun the assessments till the whole lot passes.

Don’t ask me to create recordsdata or run instructions for you. Construct and take a look at the entire undertaking your self.

 

Run Muse Glimmer for Local Vibe Coding with llama.cpp, DFlash, and Pi

Muse Glimmer constructed the undertaking in round 2 minutes.

To check it domestically:

pip set up -r necessities.txt
uvicorn app.foremost:app --reload

Run Muse Glimmer for Local Vibe Coding with llama.cpp, DFlash, and Pi

Open the API documentation at:

http://localhost:8000/docs

Run Muse Glimmer for Local Vibe Coding with llama.cpp, DFlash, and Pi

As a substitute of manually testing each endpoint, I additionally requested Muse Glimmer to check the entire API itself and provides me a last report.

Run Muse Glimmer for Local Vibe Coding with llama.cpp, DFlash, and Pi

For native agentic coding, that is the place Muse Glimmer impressed me most. It was quick, dealt with multi-step duties effectively, and took only some seconds to determine and repair points throughout debugging.

Closing Ideas

Muse Glimmer is an effective indicator of how far native AI coding has come, particularly when Meta offers the official mannequin recordsdata and really helpful configuration. For me, it was very straightforward to arrange and begin utilizing.

There are nonetheless just a few tough edges, however as Muse Glimmer, llama.cpp, DFlash, and the encircling tooling matures, I anticipate higher outcomes, sooner speeds, and stronger agentic coding efficiency domestically.

In case you have an RTX 3090, 4090, or 5090, I’d extremely suggest attempting both Muse Glimmer or Qwen3.8 domestically. At this level, it’s changing into more durable to justify paying for each AI coding request or sharing your code and information with third-party providers.

Native fashions are already getting surprisingly near the expertise of fashions like GLM-5.2, and I believe the subsequent few iterations will make native AI coding much more compelling.

 
 

Abid Ali Awan (@1abidaliawan) is an authorized information scientist skilled who loves constructing machine studying fashions. Presently, he’s specializing in content material creation and writing technical blogs on machine studying and information science applied sciences. Abid holds a Grasp’s diploma in expertise administration and a bachelor’s diploma in telecommunication engineering. His imaginative and prescient is to construct an AI product utilizing a graph neural community for college kids fighting psychological sickness.

READ ALSO

It is Nonetheless a Wager Value Watching |

The best way to Construct a Profession in AI: 3 Distinct Pathways


Run Muse Glimmer for Local Vibe Coding with llama.cpp, DFlash, and Pi

Muse Glimmer is gaining consideration within the native AI group and is being in contrast with Qwen’s 27B-class fashions. In lots of circumstances, it’s performing higher, particularly for native coding and agentic workflows.

Meta appears to be like robust within the open-model area, and with just a few extra iterations, fashions like this might begin competing intently with proprietary techniques. As an AI fanatic, it is thrilling to have the ability to run this degree of AI domestically.

On this information, we’ll run Muse Glimmer with llama.cpp, pace it up with DFlash, and join it to Pi for native vibe coding. Will probably be capable of construct, take a look at, and debug a undertaking immediately from the terminal.

1. Downloading Muse Glimmer

First, obtain the primary Muse Glimmer mannequin and its DFlash drafter from Hugging Face.

Set up the Hugging Face CLI:

curl -LsSf https://hf.co/cli/set up.sh | bash
echo 'export PATH="/root/.native/bin:$PATH"' >> ~/.bashrc
supply ~/.bashrc

Log in:

hf auth login

Create a mannequin listing:

mkdir -p /workspace/muse-glimmer

Obtain the 16.8 GB foremost mannequin:

hf obtain meta-models/Muse-Glimmer-30B-GGUF 
  muse-glimmer-30B-kquant-17gb.gguf 
  --local-dir /workspace/muse-glimmer

Obtain the 1.63 GB DFlash drafter:

hf obtain meta-models/Muse-Glimmer-30B-GGUF 
  dflash-kquant.gguf 
  --local-dir /workspace/muse-glimmer

Each recordsdata can be saved in /workspace/muse-glimmer.

2. Putting in and Working llama.cpp

Subsequent, set up llama.cpp with CUDA help and use it to serve Muse Glimmer with the DFlash drafter.

Set up and construct llama.cpp:

cd /workspace

git clone https://github.com/ggml-org/llama.cpp.git
cd llama.cpp
git pull origin grasp
cmake -B construct -DGGML_CUDA=ON -DCMAKE_BUILD_TYPE=Launch
cmake --build construct --config Launch -j$(nproc)
ln -sf "$(pwd)/construct/bin/llama-server" /root/.native/bin/llama-server

Verify the set up:

git pull origin grasp
cmake -B construct -DGGML_CUDA=ON -DCMAKE_BUILD_TYPE=Launch
cmake --build construct --config Launch -j$(nproc)
ln -sf "$(pwd)/construct/bin/llama-server" /root/.native/bin/llama-server

You must see the put in llama.cpp model and construct info.

Now begin Muse Glimmer with DFlash speculative decoding:

llama-server 
  -m /workspace/muse-glimmer/muse-glimmer-30B-kquant-17gb.gguf 
  -md /workspace/muse-glimmer/dflash-kquant.gguf 
  --spec-type draft-dflash 
  --spec-draft-n-max 15 
  -ngl all 
  --spec-draft-ngl all 
  -fa on 
  --ctx-size 16384 
  --alias muse 
  --host 0.0.0.0 
  --port 8080 
  --jinja

Run Muse Glimmer for Local Vibe Coding with llama.cpp, DFlash, and Pi

Right here, llama.cpp masses the primary mannequin and the separate DFlash drafter onto the GPU, utilizing speculative decoding to enhance era pace.

3. Testing Muse Glimmer

As soon as the server is operating, you may take a look at Muse Glimmer immediately via the built-in llama.cpp Internet UI.

Open:

http://localhost:8080/

In my preliminary testing, I used to be getting round 46 tokens/second, which is already fairly good.

Run Muse Glimmer for Local Vibe Coding with llama.cpp, DFlash, and Pi

Throughout longer coding duties, I noticed speeds attain round 127 tokens/second, making the mannequin really feel a lot sooner for agentic coding workflows.

Run Muse Glimmer for Local Vibe Coding with llama.cpp, DFlash, and Pi

The outcomes have been blended, although. Muse Glimmer created an HTML recreation for me, however it did not work notably effectively. For this sort of process, I nonetheless discovered Qwen3.8-27B noticeably higher at producing working HTML apps and video games.

Run Muse Glimmer for Local Vibe Coding with llama.cpp, DFlash, and Pi

4. Putting in Pi Coding Agent

Subsequent, set up Pi and join it to the llama.cpp server operating Muse Glimmer.

Set up Pi:

curl -fsSL https://pi.dev/set up.sh | sh

Then set up Hugging Face’s llama.cpp extension:

pi set up git:github.com/huggingface/pi-llama

Restart your terminal after set up.

The pi-llama extension robotically connects to:

http://localhost:8080/v1

It detects the fashions being served by llama.cpp, so you don’t want to configure fashions.json manually.

5. Beginning Native Vibe Coding

Now create a undertaking and choose Muse Glimmer because the mannequin inside Pi.

Create an empty undertaking:

mkdir -p /workspace/glimmer-test
cd /workspace/glimmer-test

Launch Pi:

pi

Inside Pi, run:

/mannequin

Seek for:

llama-cpp

Then choose:

muse

Run Muse Glimmer for Local Vibe Coding with llama.cpp, DFlash, and Pi

Muse Glimmer ought to now be out there via Pi’s llama-cpp supplier.

Run Muse Glimmer for Local Vibe Coding with llama.cpp, DFlash, and Pi

6. Testing Muse Glimmer as a Coding Agent

Lastly, give Muse Glimmer an entire coding process and let it construct, take a look at, and debug the undertaking itself.

I used this immediate:

 

Construct an entire Python process administration API from scratch utilizing FastAPI.

Necessities:
– Create a clear undertaking construction.
– Add endpoints to create, checklist, replace, and delete duties.
– Use SQLite for persistence.
– Add enter validation and error dealing with.
– Add pytest assessments for all endpoints.
– Create necessities.txt and README.md.
– Run the assessments your self.
– Repair any errors and rerun the assessments till the whole lot passes.

Don’t ask me to create recordsdata or run instructions for you. Construct and take a look at the entire undertaking your self.

 

Run Muse Glimmer for Local Vibe Coding with llama.cpp, DFlash, and Pi

Muse Glimmer constructed the undertaking in round 2 minutes.

To check it domestically:

pip set up -r necessities.txt
uvicorn app.foremost:app --reload

Run Muse Glimmer for Local Vibe Coding with llama.cpp, DFlash, and Pi

Open the API documentation at:

http://localhost:8000/docs

Run Muse Glimmer for Local Vibe Coding with llama.cpp, DFlash, and Pi

As a substitute of manually testing each endpoint, I additionally requested Muse Glimmer to check the entire API itself and provides me a last report.

Run Muse Glimmer for Local Vibe Coding with llama.cpp, DFlash, and Pi

For native agentic coding, that is the place Muse Glimmer impressed me most. It was quick, dealt with multi-step duties effectively, and took only some seconds to determine and repair points throughout debugging.

Closing Ideas

Muse Glimmer is an effective indicator of how far native AI coding has come, particularly when Meta offers the official mannequin recordsdata and really helpful configuration. For me, it was very straightforward to arrange and begin utilizing.

There are nonetheless just a few tough edges, however as Muse Glimmer, llama.cpp, DFlash, and the encircling tooling matures, I anticipate higher outcomes, sooner speeds, and stronger agentic coding efficiency domestically.

In case you have an RTX 3090, 4090, or 5090, I’d extremely suggest attempting both Muse Glimmer or Qwen3.8 domestically. At this level, it’s changing into more durable to justify paying for each AI coding request or sharing your code and information with third-party providers.

Native fashions are already getting surprisingly near the expertise of fashions like GLM-5.2, and I believe the subsequent few iterations will make native AI coding much more compelling.

 
 

Abid Ali Awan (@1abidaliawan) is an authorized information scientist skilled who loves constructing machine studying fashions. Presently, he’s specializing in content material creation and writing technical blogs on machine studying and information science applied sciences. Abid holds a Grasp’s diploma in expertise administration and a bachelor’s diploma in telecommunication engineering. His imaginative and prescient is to construct an AI product utilizing a graph neural community for college kids fighting psychological sickness.

Tags: CodingDFlashGlimmerllama.cpplocalMuserunVibe

Related Posts

Betavolt bv100 nuclear battery micro drone lab.jpg.png
Data Science

It is Nonetheless a Wager Value Watching |

August 21, 2026
Kdn chugani build career ai 3 distinct pathways feature 2.png
Data Science

The best way to Construct a Profession in AI: 3 Distinct Pathways

August 21, 2026
Openai astra gpt math proofs authorship.jpg.png
Data Science

OpenAI Solved Ten Open Math Issues. No one Can Say Who Will get Credit score |

August 20, 2026
Rosidi AI System Design Interview Questions 1.png
Data Science

Find out how to Reply AI System Design Interview Questions

August 19, 2026
Marketing strategy data governance and quality management featured.jpg
Data Science

Constructing a Dependable Information Governance Basis for Digital Growth

August 19, 2026
Diamonds in diamonds out data infrastructure ai.jpg.png
Data Science

Garbage in, garbage out. Diamonds in, diamonds out. |

August 19, 2026

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

POPULAR NEWS

Gemini 2.0 Fash Vs Gpt 4o.webp.webp

Gemini 2.0 Flash vs GPT 4o: Which is Higher?

January 19, 2025
Chainlink Link And Cardano Ada Dominate The Crypto Coin Development Chart.jpg

Chainlink’s Run to $20 Beneficial properties Steam Amid LINK Taking the Helm because the High Creating DeFi Challenge ⋆ ZyCrypto

May 17, 2025
Image 100 1024x683.png

Easy methods to Use LLMs for Highly effective Computerized Evaluations

August 13, 2025
Blog.png

XMN is accessible for buying and selling!

October 10, 2025
0 3.png

College endowments be a part of crypto rush, boosting meme cash like Meme Index

February 10, 2025

EDITOR'S PICK

0WXHFSDatl54yEdw1.jpeg

Find out how to Cut back Class Imbalance Bias in AI? (Defined with a Riddle) | by Diana Morales

August 8, 2024
Proxy pointer 2 scaled 1.jpg

Proxy-Pointer RAG: Construction Meets Scale at 100% Accuracy with Smarter Retrieval

April 19, 2026
Chugh Digital Transformation Playbook Modern Businesses.png

Digital Transformation Playbook for Fashionable Companies

August 30, 2024
Image 127.png

AI Agent with Multi-Session Reminiscence

June 29, 2025

About Us

Welcome to News AI World, your go-to source for the latest in artificial intelligence news and developments. Our mission is to deliver comprehensive and insightful coverage of the rapidly evolving AI landscape, keeping you informed about breakthroughs, trends, and the transformative impact of AI technologies across industries.

Categories

  • Artificial Intelligence
  • ChatGPT
  • Crypto Coins
  • Data Science
  • Machine Learning

Recent Posts

  • Run Muse Glimmer for Native Vibe Coding with llama.cpp, DFlash, and Pi
  • Multi-Doc RAG: A Folder of Unrelated PDFs Is One Lengthy Doc with a Nested Define
  • BounceBit Shuts Down Layer 1 after An Authorization Exploit
  • Home
  • About Us
  • Contact Us
  • Disclaimer
  • Privacy Policy

© 2024 Newsaiworld.com. All rights reserved.

No Result
View All Result
  • Home
  • Artificial Intelligence
  • ChatGPT
  • Data Science
  • Machine Learning
  • Crypto Coins
  • Contact Us

© 2024 Newsaiworld.com. All rights reserved.

Are you sure want to unlock this post?
Unlock left : 0
Are you sure want to cancel subscription?