Instructions to use ataeff/WTForacle with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use ataeff/WTForacle with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="ataeff/WTForacle", filename="ws360/wtf360_v2_q4_0.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use ataeff/WTForacle with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf ataeff/WTForacle:Q4_0 # Run inference directly in the terminal: llama-cli -hf ataeff/WTForacle:Q4_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf ataeff/WTForacle:Q4_0 # Run inference directly in the terminal: llama-cli -hf ataeff/WTForacle:Q4_0
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 ataeff/WTForacle:Q4_0 # Run inference directly in the terminal: ./llama-cli -hf ataeff/WTForacle:Q4_0
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 ataeff/WTForacle:Q4_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf ataeff/WTForacle:Q4_0
Use Docker
docker model run hf.co/ataeff/WTForacle:Q4_0
- LM Studio
- Jan
- Ollama
How to use ataeff/WTForacle with Ollama:
ollama run hf.co/ataeff/WTForacle:Q4_0
- Unsloth Studio new
How to use ataeff/WTForacle 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 ataeff/WTForacle 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 ataeff/WTForacle to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for ataeff/WTForacle to start chatting
- Docker Model Runner
How to use ataeff/WTForacle with Docker Model Runner:
docker model run hf.co/ataeff/WTForacle:Q4_0
- Lemonade
How to use ataeff/WTForacle with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull ataeff/WTForacle:Q4_0
Run and chat with the model
lemonade run user.WTForacle-Q4_0
List all available models
lemonade list
Upload 2 files
Browse files- .gitattributes +2 -0
- ws360/wtf360_v2_q4_0.gguf +3 -0
- ws360/wtf_qwen_v2_q4_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -41,3 +41,5 @@ wtfweights3/qwen3b_1500_q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
|
| 41 |
wtfweights3/qwen3b_2000_q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
wtf360_900_q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
wtf360/wtf360_900_q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 41 |
wtfweights3/qwen3b_2000_q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
wtf360_900_q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
wtf360/wtf360_900_q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
ws360/wtf_qwen_v2_q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
ws360/wtf360_v2_q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
ws360/wtf360_v2_q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f302690e56a8cdad8930b54827fd89239544eb758b58f8a4409d685d0094bbe1
|
| 3 |
+
size 229118464
|
ws360/wtf_qwen_v2_q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:88af5d86af81e871c186d820d378fce32652afa54355f31720e05f9b27d018bf
|
| 3 |
+
size 352154560
|