Instructions to use prithivMLmods/mem-agent-f32-gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/mem-agent-f32-gguf with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="prithivMLmods/mem-agent-f32-gguf") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("prithivMLmods/mem-agent-f32-gguf", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use prithivMLmods/mem-agent-f32-gguf with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf prithivMLmods/mem-agent-f32-gguf:Q4_K_M # Run inference directly in the terminal: llama cli -hf prithivMLmods/mem-agent-f32-gguf:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf prithivMLmods/mem-agent-f32-gguf:Q4_K_M # Run inference directly in the terminal: llama cli -hf prithivMLmods/mem-agent-f32-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/mem-agent-f32-gguf:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf prithivMLmods/mem-agent-f32-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/mem-agent-f32-gguf:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf prithivMLmods/mem-agent-f32-gguf:Q4_K_M
Use Docker
docker model run hf.co/prithivMLmods/mem-agent-f32-gguf:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use prithivMLmods/mem-agent-f32-gguf with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "prithivMLmods/mem-agent-f32-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/mem-agent-f32-gguf", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/prithivMLmods/mem-agent-f32-gguf:Q4_K_M
- SGLang
How to use prithivMLmods/mem-agent-f32-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/mem-agent-f32-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/mem-agent-f32-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/mem-agent-f32-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/mem-agent-f32-gguf", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use prithivMLmods/mem-agent-f32-gguf with Ollama:
ollama run hf.co/prithivMLmods/mem-agent-f32-gguf:Q4_K_M
- Unsloth Studio
How to use prithivMLmods/mem-agent-f32-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/mem-agent-f32-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/mem-agent-f32-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/mem-agent-f32-gguf to start chatting
- Pi
How to use prithivMLmods/mem-agent-f32-gguf with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf prithivMLmods/mem-agent-f32-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/mem-agent-f32-gguf:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use prithivMLmods/mem-agent-f32-gguf with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf prithivMLmods/mem-agent-f32-gguf:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "prithivMLmods/mem-agent-f32-gguf:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use prithivMLmods/mem-agent-f32-gguf with Docker Model Runner:
docker model run hf.co/prithivMLmods/mem-agent-f32-gguf:Q4_K_M
- Lemonade
How to use prithivMLmods/mem-agent-f32-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull prithivMLmods/mem-agent-f32-gguf:Q4_K_M
Run and chat with the model
lemonade run user.mem-agent-f32-gguf-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use prithivMLmods/mem-agent-f32-gguf with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf prithivMLmods/mem-agent-f32-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/mem-agent-f32-gguf:Q4_K_M
Run Hermes
hermes
- Atomic Chat
Upload folder using huggingface_hub
Browse files- .gitattributes +13 -0
- mem-agent.BF16.gguf +3 -0
- mem-agent.F16.gguf +3 -0
- mem-agent.F32.gguf +3 -0
- mem-agent.Q2_K.gguf +3 -0
- mem-agent.Q3_K_L.gguf +3 -0
- mem-agent.Q3_K_M.gguf +3 -0
- mem-agent.Q3_K_S.gguf +3 -0
- mem-agent.Q4_K_M.gguf +3 -0
- mem-agent.Q4_K_S.gguf +3 -0
- mem-agent.Q5_K_M.gguf +3 -0
- mem-agent.Q5_K_S.gguf +3 -0
- mem-agent.Q6_K.gguf +3 -0
- mem-agent.Q8_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,16 @@ 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 |
+
mem-agent.BF16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
mem-agent.F16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
mem-agent.F32.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
mem-agent.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
mem-agent.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
mem-agent.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
mem-agent.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
mem-agent.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
mem-agent.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
mem-agent.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
mem-agent.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
mem-agent.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
mem-agent.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
mem-agent.BF16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7bf5b5c9d1a7029dd3f8ef274e7319562df4e4a096560dc1fa82bca60d4223da
|
| 3 |
+
size 8051284768
|
mem-agent.F16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:57c06d836a51d99dbbf59ad7a3c6b30cb4802cda79e5da86313b1c3bbe086f7c
|
| 3 |
+
size 8051284768
|
mem-agent.F32.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ffda3add3fd962d512b651f670e5bd0e91600f99f09ebec6c35db813b6bf221
|
| 3 |
+
size 16095828768
|
mem-agent.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6998c19cd50fc7c20570ffdb882d62cc43a024edf6a4f5cbd39b0f6519b3526d
|
| 3 |
+
size 1669499168
|
mem-agent.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e7bc791f9161a04e12d1b22ef21dce01838fa312df73ff127dd5e8bf54ac490a
|
| 3 |
+
size 2239785248
|
mem-agent.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4386c77407b0a9851b4e1d978918f6612fedab47d69a4773b00e81492d6a034d
|
| 3 |
+
size 2075617568
|
mem-agent.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e38a3e8986c91bfa567f9d5fbd6b05a6d92202b3e2d056b7f3eda14e90c69ed2
|
| 3 |
+
size 1886996768
|
mem-agent.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:944ce327e8daac14a0551943bc46739dc511d032ff9ccd2218941326d431e77e
|
| 3 |
+
size 2497280288
|
mem-agent.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:71be3233caa95c56c61a4fb0dd78d47102990057399f93152048cd8b6f51cf9e
|
| 3 |
+
size 2383309088
|
mem-agent.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c510a04b7b3cae88265bcabda3c3be4ca026b147b95420ffbb0db97d1f155bd1
|
| 3 |
+
size 2889513248
|
mem-agent.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f3dc79963310763a73cd96851ae685ea584204bd374142b1243adf522b2225be
|
| 3 |
+
size 2823711008
|
mem-agent.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:453dfc223f641b466f09b27f5298ba28b4ed5f5e931664fcbed4b7f1c18f67f8
|
| 3 |
+
size 3306260768
|
mem-agent.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fef2322b04c7d8753e52f7e814b0059cb6f7141adc5f2991ec7280d8662306e7
|
| 3 |
+
size 4280404768
|