Instructions to use CISCai/OpenCodeInterpreter-DS-6.7B-SOTA-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use CISCai/OpenCodeInterpreter-DS-6.7B-SOTA-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 CISCai/OpenCodeInterpreter-DS-6.7B-SOTA-GGUF:IQ1_S # Run inference directly in the terminal: llama cli -hf CISCai/OpenCodeInterpreter-DS-6.7B-SOTA-GGUF:IQ1_S
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf CISCai/OpenCodeInterpreter-DS-6.7B-SOTA-GGUF:IQ1_S # Run inference directly in the terminal: llama cli -hf CISCai/OpenCodeInterpreter-DS-6.7B-SOTA-GGUF:IQ1_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 CISCai/OpenCodeInterpreter-DS-6.7B-SOTA-GGUF:IQ1_S # Run inference directly in the terminal: ./llama-cli -hf CISCai/OpenCodeInterpreter-DS-6.7B-SOTA-GGUF:IQ1_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 CISCai/OpenCodeInterpreter-DS-6.7B-SOTA-GGUF:IQ1_S # Run inference directly in the terminal: ./build/bin/llama-cli -hf CISCai/OpenCodeInterpreter-DS-6.7B-SOTA-GGUF:IQ1_S
Use Docker
docker model run hf.co/CISCai/OpenCodeInterpreter-DS-6.7B-SOTA-GGUF:IQ1_S
- LM Studio
- Jan
- vLLM
How to use CISCai/OpenCodeInterpreter-DS-6.7B-SOTA-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "CISCai/OpenCodeInterpreter-DS-6.7B-SOTA-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": "CISCai/OpenCodeInterpreter-DS-6.7B-SOTA-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/CISCai/OpenCodeInterpreter-DS-6.7B-SOTA-GGUF:IQ1_S
- Ollama
How to use CISCai/OpenCodeInterpreter-DS-6.7B-SOTA-GGUF with Ollama:
ollama run hf.co/CISCai/OpenCodeInterpreter-DS-6.7B-SOTA-GGUF:IQ1_S
- Unsloth Desktop
- Docker Model Runner
How to use CISCai/OpenCodeInterpreter-DS-6.7B-SOTA-GGUF with Docker Model Runner:
docker model run hf.co/CISCai/OpenCodeInterpreter-DS-6.7B-SOTA-GGUF:IQ1_S
- Lemonade
How to use CISCai/OpenCodeInterpreter-DS-6.7B-SOTA-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull CISCai/OpenCodeInterpreter-DS-6.7B-SOTA-GGUF:IQ1_S
Run and chat with the model
lemonade run user.OpenCodeInterpreter-DS-6.7B-SOTA-GGUF-IQ1_S
List all available models
lemonade list
- Atomic Chat
Updated with correct pre-tokenizer
Browse filesIn preparation for full requantization with correct pre-tokenization and gpt2 tokenizer, see the following PRs:
[lama : improve BPE pre-processing + LLaMA 3 and Deepseek support](https://github.com/ggerganov/llama.cpp/pull/6920) - Sets correct pre-tokenizer, applied to new fp16.gguf
[lama3 custom regex split](https://github.com/ggerganov/llama.cpp/pull/6965) - Fixes gpt2 tokenization
- .gitattributes +1 -0
- OpenCodeInterpreter-DS-6.7B.fp16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -45,3 +45,4 @@ OpenCodeInterpreter-DS-6.7B.IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
|
| 45 |
OpenCodeInterpreter-DS-6.7B.IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
OpenCodeInterpreter-DS-6.7B.imatrix-4096.dat filter=lfs diff=lfs merge=lfs -text
|
| 47 |
OpenCodeInterpreter-DS-6.7B.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 45 |
OpenCodeInterpreter-DS-6.7B.IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
OpenCodeInterpreter-DS-6.7B.imatrix-4096.dat filter=lfs diff=lfs merge=lfs -text
|
| 47 |
OpenCodeInterpreter-DS-6.7B.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
OpenCodeInterpreter-DS-6.7B.fp16.gguf filter=lfs diff=lfs merge=lfs -text
|
OpenCodeInterpreter-DS-6.7B.fp16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d227d02983842c1025a37b47bbf12f22ac0582f0769b551a7a8d6398c00a1891
|
| 3 |
+
size 13482732384
|