Instructions to use cortexso/intellect-1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use cortexso/intellect-1 with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="cortexso/intellect-1", filename="intellect-1-instruct-q2_k.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use cortexso/intellect-1 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 cortexso/intellect-1:Q4_K_M # Run inference directly in the terminal: llama cli -hf cortexso/intellect-1:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf cortexso/intellect-1:Q4_K_M # Run inference directly in the terminal: llama cli -hf cortexso/intellect-1: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 cortexso/intellect-1:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf cortexso/intellect-1: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 cortexso/intellect-1:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf cortexso/intellect-1:Q4_K_M
Use Docker
docker model run hf.co/cortexso/intellect-1:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use cortexso/intellect-1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "cortexso/intellect-1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cortexso/intellect-1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/cortexso/intellect-1:Q4_K_M
- Ollama
How to use cortexso/intellect-1 with Ollama:
ollama run hf.co/cortexso/intellect-1:Q4_K_M
- Unsloth Studio
How to use cortexso/intellect-1 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 cortexso/intellect-1 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 cortexso/intellect-1 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for cortexso/intellect-1 to start chatting
- Atomic Chat new
- Docker Model Runner
How to use cortexso/intellect-1 with Docker Model Runner:
docker model run hf.co/cortexso/intellect-1:Q4_K_M
- Lemonade
How to use cortexso/intellect-1 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull cortexso/intellect-1:Q4_K_M
Run and chat with the model
lemonade run user.intellect-1-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +10 -0
- intellect-1-instruct-q2_k.gguf +3 -0
- intellect-1-instruct-q3_k_l.gguf +3 -0
- intellect-1-instruct-q3_k_m.gguf +3 -0
- intellect-1-instruct-q3_k_s.gguf +3 -0
- intellect-1-instruct-q4_k_m.gguf +3 -0
- intellect-1-instruct-q4_k_s.gguf +3 -0
- intellect-1-instruct-q5_k_m.gguf +3 -0
- intellect-1-instruct-q5_k_s.gguf +3 -0
- intellect-1-instruct-q6_k.gguf +3 -0
- intellect-1-instruct-q8_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,13 @@ 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 |
+
intellect-1-instruct-q2_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
intellect-1-instruct-q3_k_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
intellect-1-instruct-q3_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
intellect-1-instruct-q3_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
intellect-1-instruct-q4_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
intellect-1-instruct-q4_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
intellect-1-instruct-q5_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
intellect-1-instruct-q5_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
intellect-1-instruct-q6_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
intellect-1-instruct-q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
intellect-1-instruct-q2_k.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a4588de97f0b7eb749f54b1dd15c8d8809ea6c77e700cf2eab59dab69456618b
|
| 3 |
+
size 3981629888
|
intellect-1-instruct-q3_k_l.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f8eeae1e67f819027bb4c7dd65926e20a653fe3f30c4f016f4e6ecc2dd6faf0c
|
| 3 |
+
size 5464914368
|
intellect-1-instruct-q3_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8219337af720732ae984e7e7273d44daed8d4f20e778af256731222bfa44864b
|
| 3 |
+
size 5062261184
|
intellect-1-instruct-q3_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b10a9b29b4b01e1145c333f0926416a6b7c85de4a1ee348e4f252b7f0ccfd9b
|
| 3 |
+
size 4602001856
|
intellect-1-instruct-q4_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9549b6a4d79f52087a7ceb0505dec1f44821419245af86c63c90b979e5dc67d2
|
| 3 |
+
size 6229006784
|
intellect-1-instruct-q4_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:33ce077c67ac37bfd0e595460a54f74e4ba84882ef8e3102a014831b894685aa
|
| 3 |
+
size 5927180736
|
intellect-1-instruct-q5_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:888177ec252995a9686a9d8d0c9e9aab00cb31557d138a8731076a53243a53f8
|
| 3 |
+
size 7274568128
|
intellect-1-instruct-q5_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:036fe307b1cdc49b554f3a2be19e80d0e038fcd03ddd076959a11d5a08f655cc
|
| 3 |
+
size 7099095488
|
intellect-1-instruct-q6_k.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:090fc7ec633168f1bcd32e61ec5ed919ce8652411f027b8c9f92025c1b505132
|
| 3 |
+
size 8385477056
|
intellect-1-instruct-q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:348d12200d19b06d7b6124db8aacd292b13d22095a66a58486c8f5d22448519d
|
| 3 |
+
size 10858461632
|