Image-Text-to-Text
GGUF
llama.cpp
quantized
imatrix
Mixture of Experts
agent
tool-calling
reasoning
vision
multimodal
conversational
Instructions to use stepfun-ai/Step-3.7-Flash-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use stepfun-ai/Step-3.7-Flash-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="stepfun-ai/Step-3.7-Flash-GGUF", filename="BF16/Step3.7-flash-bf16-00001-of-00009.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use stepfun-ai/Step-3.7-Flash-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf stepfun-ai/Step-3.7-Flash-GGUF:Q4_K_S # Run inference directly in the terminal: llama-cli -hf stepfun-ai/Step-3.7-Flash-GGUF:Q4_K_S
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf stepfun-ai/Step-3.7-Flash-GGUF:Q4_K_S # Run inference directly in the terminal: llama-cli -hf stepfun-ai/Step-3.7-Flash-GGUF:Q4_K_S
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 stepfun-ai/Step-3.7-Flash-GGUF:Q4_K_S # Run inference directly in the terminal: ./llama-cli -hf stepfun-ai/Step-3.7-Flash-GGUF:Q4_K_S
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 stepfun-ai/Step-3.7-Flash-GGUF:Q4_K_S # Run inference directly in the terminal: ./build/bin/llama-cli -hf stepfun-ai/Step-3.7-Flash-GGUF:Q4_K_S
Use Docker
docker model run hf.co/stepfun-ai/Step-3.7-Flash-GGUF:Q4_K_S
- LM Studio
- Jan
- vLLM
How to use stepfun-ai/Step-3.7-Flash-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "stepfun-ai/Step-3.7-Flash-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": "stepfun-ai/Step-3.7-Flash-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/stepfun-ai/Step-3.7-Flash-GGUF:Q4_K_S
- Ollama
How to use stepfun-ai/Step-3.7-Flash-GGUF with Ollama:
ollama run hf.co/stepfun-ai/Step-3.7-Flash-GGUF:Q4_K_S
- Unsloth Studio
How to use stepfun-ai/Step-3.7-Flash-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 stepfun-ai/Step-3.7-Flash-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 stepfun-ai/Step-3.7-Flash-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for stepfun-ai/Step-3.7-Flash-GGUF to start chatting
- Pi
How to use stepfun-ai/Step-3.7-Flash-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf stepfun-ai/Step-3.7-Flash-GGUF:Q4_K_S
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": "stepfun-ai/Step-3.7-Flash-GGUF:Q4_K_S" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use stepfun-ai/Step-3.7-Flash-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 stepfun-ai/Step-3.7-Flash-GGUF:Q4_K_S
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 stepfun-ai/Step-3.7-Flash-GGUF:Q4_K_S
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use stepfun-ai/Step-3.7-Flash-GGUF with Docker Model Runner:
docker model run hf.co/stepfun-ai/Step-3.7-Flash-GGUF:Q4_K_S
- Lemonade
How to use stepfun-ai/Step-3.7-Flash-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull stepfun-ai/Step-3.7-Flash-GGUF:Q4_K_S
Run and chat with the model
lemonade run user.Step-3.7-Flash-GGUF-Q4_K_S
List all available models
lemonade list
Add files using upload-large-folder tool
Browse files- .gitattributes +26 -0
- BF16/Step3.7-flash-bf16-00001-of-00009.gguf +3 -0
- BF16/Step3.7-flash-bf16-00002-of-00009.gguf +3 -0
- BF16/Step3.7-flash-bf16-00003-of-00009.gguf +3 -0
- BF16/Step3.7-flash-bf16-00004-of-00009.gguf +3 -0
- BF16/Step3.7-flash-bf16-00005-of-00009.gguf +3 -0
- BF16/Step3.7-flash-bf16-00006-of-00009.gguf +3 -0
- BF16/Step3.7-flash-bf16-00007-of-00009.gguf +3 -0
- BF16/Step3.7-flash-bf16-00008-of-00009.gguf +3 -0
- BF16/Step3.7-flash-bf16-00009-of-00009.gguf +3 -0
- IQ4_XS/Step-3.7-flash-IQ4_XS-00001-of-00003.gguf +3 -0
- IQ4_XS/Step-3.7-flash-IQ4_XS-00002-of-00003.gguf +3 -0
- IQ4_XS/Step-3.7-flash-IQ4_XS-00003-of-00003.gguf +3 -0
- Q3_K_L/Step-3.7-flash-Q3_K_L-00001-of-00003.gguf +3 -0
- Q3_K_L/Step-3.7-flash-Q3_K_L-00002-of-00003.gguf +3 -0
- Q3_K_L/Step-3.7-flash-Q3_K_L-00003-of-00003.gguf +3 -0
- Q3_K_M/Step-3.7-flash-Q3_K_M-00001-of-00003.gguf +3 -0
- Q3_K_M/Step-3.7-flash-Q3_K_M-00002-of-00003.gguf +3 -0
- Q3_K_M/Step-3.7-flash-Q3_K_M-00003-of-00003.gguf +3 -0
- Q4_K_S/Step-3.7-flash-Q4_K_S-00001-of-00003.gguf +3 -0
- Q4_K_S/Step-3.7-flash-Q4_K_S-00002-of-00003.gguf +3 -0
- Q4_K_S/Step-3.7-flash-Q4_K_S-00003-of-00003.gguf +3 -0
- Q8_0/Step-3.7-flash-Q8_0-00001-of-00005.gguf +3 -0
- Q8_0/Step-3.7-flash-Q8_0-00002-of-00005.gguf +3 -0
- Q8_0/Step-3.7-flash-Q8_0-00003-of-00005.gguf +3 -0
- Q8_0/Step-3.7-flash-Q8_0-00004-of-00005.gguf +3 -0
- Q8_0/Step-3.7-flash-Q8_0-00005-of-00005.gguf +3 -0
.gitattributes
CHANGED
|
@@ -34,3 +34,29 @@ saved_model/**/* 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 |
mmproj-step3.7-flash-f16.gguf 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 |
mmproj-step3.7-flash-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Q3_K_M/Step-3.7-flash-Q3_K_M-00003-of-00003.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Q3_K_L/Step-3.7-flash-Q3_K_L-00003-of-00003.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
IQ4_XS/Step-3.7-flash-IQ4_XS-00003-of-00003.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Q4_K_S/Step-3.7-flash-Q4_K_S-00003-of-00003.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Q8_0/Step-3.7-flash-Q8_0-00005-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
BF16/Step3.7-flash-bf16-00009-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Q8_0/Step-3.7-flash-Q8_0-00002-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Q8_0/Step-3.7-flash-Q8_0-00004-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
BF16/Step3.7-flash-bf16-00001-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Q3_K_M/Step-3.7-flash-Q3_K_M-00002-of-00003.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Q4_K_S/Step-3.7-flash-Q4_K_S-00001-of-00003.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Q8_0/Step-3.7-flash-Q8_0-00001-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Q8_0/Step-3.7-flash-Q8_0-00003-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
IQ4_XS/Step-3.7-flash-IQ4_XS-00001-of-00003.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
Q3_K_L/Step-3.7-flash-Q3_K_L-00002-of-00003.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
Q4_K_S/Step-3.7-flash-Q4_K_S-00002-of-00003.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
Q3_K_M/Step-3.7-flash-Q3_K_M-00001-of-00003.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
Q3_K_L/Step-3.7-flash-Q3_K_L-00001-of-00003.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
IQ4_XS/Step-3.7-flash-IQ4_XS-00002-of-00003.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
BF16/Step3.7-flash-bf16-00008-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
BF16/Step3.7-flash-bf16-00005-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
BF16/Step3.7-flash-bf16-00002-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
BF16/Step3.7-flash-bf16-00004-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
BF16/Step3.7-flash-bf16-00007-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
BF16/Step3.7-flash-bf16-00003-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
BF16/Step3.7-flash-bf16-00006-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
BF16/Step3.7-flash-bf16-00001-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6099791a9fc408d99ca0881499a7e36dda2858ea873e3bdde1031612ef378b96
|
| 3 |
+
size 44661465152
|
BF16/Step3.7-flash-bf16-00002-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2c04e0dbb2cd57d86392c561cbe386c231163c2bb41c63f431eb96123b8fd771
|
| 3 |
+
size 46506622944
|
BF16/Step3.7-flash-bf16-00003-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f3c9de8afcb02046c026112023877d5b908eb6a5d8d27c7a0ffe8cc3b7f4a697
|
| 3 |
+
size 46439251968
|
BF16/Step3.7-flash-bf16-00004-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72c57f5ff06e9c3bd91df218e7118c636abd1a36d217b2852b744ac1ed77e539
|
| 3 |
+
size 46506622976
|
BF16/Step3.7-flash-bf16-00005-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7bdfb33c7a32a2855201d86ec24f01a1586eecd9b2fa0c0c66263f09884bf4a7
|
| 3 |
+
size 46506622976
|
BF16/Step3.7-flash-bf16-00006-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a3facf43620353ea164eb13c2a83b37f56903ff4fcf0c1fb1d54ba9f32be71ce
|
| 3 |
+
size 46506622976
|
BF16/Step3.7-flash-bf16-00007-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:33842ae0365834c376dfb4194447d3823211c095075303939fab1a1a7e128cee
|
| 3 |
+
size 46439251968
|
BF16/Step3.7-flash-bf16-00008-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f83f5731cf7f2c8a1724cb0b8ec1cafebc7b6c6925e13efff5aa9d06b1cb2a37
|
| 3 |
+
size 46506622976
|
BF16/Step3.7-flash-bf16-00009-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:69159889da94e002c95dcbf6ff697a91905ad9daaaea07f8e63a51f49ac6acdc
|
| 3 |
+
size 23944339840
|
IQ4_XS/Step-3.7-flash-IQ4_XS-00001-of-00003.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b940497a9cec2f801f07e3a9783f2115fd8bf79cbd453225b4f73d86bcd11259
|
| 3 |
+
size 46483327296
|
IQ4_XS/Step-3.7-flash-IQ4_XS-00002-of-00003.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e7e0caaaf0057fabc8bf9b71cbe41322f9945a44df7240bb58e6b7c375e7ffec
|
| 3 |
+
size 46999941600
|
IQ4_XS/Step-3.7-flash-IQ4_XS-00003-of-00003.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ccbd3df81b4f4cb8e73d899734944bcbdefcf436faec9203353419c6750c0590
|
| 3 |
+
size 11510293728
|
Q3_K_L/Step-3.7-flash-Q3_K_L-00001-of-00003.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:24f32d7b773911c24ab9c091d7981c0c937803cea06c221c4a6af5d99ef45643
|
| 3 |
+
size 46544161344
|
Q3_K_L/Step-3.7-flash-Q3_K_L-00002-of-00003.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:12fcc89a40a355b2965b2e4296882036ea13481b48d912398aeb1edda3639903
|
| 3 |
+
size 46401560832
|
Q3_K_L/Step-3.7-flash-Q3_K_L-00003-of-00003.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a7a44416742c188d8adf3c147473e22a5efb594e5c4bf0f29ef884d29071191b
|
| 3 |
+
size 9558706368
|
Q3_K_M/Step-3.7-flash-Q3_K_M-00001-of-00003.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1f79f2c30fbbc10cd180589288e0a047b72fc56a27fd7d85444f70351bd9521d
|
| 3 |
+
size 46768409504
|
Q3_K_M/Step-3.7-flash-Q3_K_M-00002-of-00003.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c0bd348948b5c15316a54c6880d5868e5643066c930bc91045a309e9dd359618
|
| 3 |
+
size 46381975392
|
Q3_K_M/Step-3.7-flash-Q3_K_M-00003-of-00003.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:65ab284b7c0cf8a6ba45dd0b0d0b354625f2a58a487c0210fc14e4002d87f833
|
| 3 |
+
size 651059456
|
Q4_K_S/Step-3.7-flash-Q4_K_S-00001-of-00003.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f61e134f722146e94d33342ecb836df3ad1148781f83cd02b40fc7c55b9e527c
|
| 3 |
+
size 46946540672
|
Q4_K_S/Step-3.7-flash-Q4_K_S-00002-of-00003.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5cc5d422d06b408d7a8fc626425df3d6a39ff5e010431f150dbd394ce9d4195f
|
| 3 |
+
size 46289593504
|
Q4_K_S/Step-3.7-flash-Q4_K_S-00003-of-00003.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2469a8413e496d7c59755281865e91a3457bcb43b640d40dfaee338f6a791ae4
|
| 3 |
+
size 18262953696
|
Q8_0/Step-3.7-flash-Q8_0-00001-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fea0d62416de3f5b8a2197493b425175c9101f510658ce5dbf7f40a1f5c8b862
|
| 3 |
+
size 46446888192
|
Q8_0/Step-3.7-flash-Q8_0-00002-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4ad7b46d4f1e1ea4daab26d32339862fa2e481dc9082b08047ec39e67f0004db
|
| 3 |
+
size 46094750560
|
Q8_0/Step-3.7-flash-Q8_0-00003-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ffd0512aaa25f29e26b72e75dea939413621202e9e873647312137d64f9a6ad8
|
| 3 |
+
size 46099485664
|
Q8_0/Step-3.7-flash-Q8_0-00004-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be2519ee22cc0c838e7d365bd612e5bbbdb51868275dd01d9b0f690fd7b8dc56
|
| 3 |
+
size 46175264256
|
Q8_0/Step-3.7-flash-Q8_0-00005-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aeaae2a031515155e87b81ae00dc6698bc7c6162590f05989bace811f61192cc
|
| 3 |
+
size 24601482592
|