Instructions to use fatihburakkaragoz/EksiZeka 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 fatihburakkaragoz/EksiZeka 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 fatihburakkaragoz/EksiZeka:Q4_1 # Run inference directly in the terminal: llama cli -hf fatihburakkaragoz/EksiZeka:Q4_1
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf fatihburakkaragoz/EksiZeka:Q4_1 # Run inference directly in the terminal: llama cli -hf fatihburakkaragoz/EksiZeka:Q4_1
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 fatihburakkaragoz/EksiZeka:Q4_1 # Run inference directly in the terminal: ./llama-cli -hf fatihburakkaragoz/EksiZeka:Q4_1
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 fatihburakkaragoz/EksiZeka:Q4_1 # Run inference directly in the terminal: ./build/bin/llama-cli -hf fatihburakkaragoz/EksiZeka:Q4_1
Use Docker
docker model run hf.co/fatihburakkaragoz/EksiZeka:Q4_1
- LM Studio
- Jan
- Ollama
How to use fatihburakkaragoz/EksiZeka with Ollama:
ollama run hf.co/fatihburakkaragoz/EksiZeka:Q4_1
- Unsloth Desktop
- Docker Model Runner
How to use fatihburakkaragoz/EksiZeka with Docker Model Runner:
docker model run hf.co/fatihburakkaragoz/EksiZeka:Q4_1
- Lemonade
How to use fatihburakkaragoz/EksiZeka with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull fatihburakkaragoz/EksiZeka:Q4_1
Run and chat with the model
lemonade run user.EksiZeka-Q4_1
List all available models
lemonade list
- Atomic Chat
| { | |
| "add_bos_token": true, | |
| "add_eos_token": false, | |
| "add_prefix_space": true, | |
| "added_tokens_decoder": { | |
| "0": { | |
| "content": "<unk>", | |
| "lstrip": false, | |
| "normalized": true, | |
| "rstrip": false, | |
| "single_word": false, | |
| "special": true | |
| }, | |
| "1": { | |
| "content": "<s>", | |
| "lstrip": false, | |
| "normalized": true, | |
| "rstrip": false, | |
| "single_word": false, | |
| "special": true | |
| }, | |
| "2": { | |
| "content": "</s>", | |
| "lstrip": false, | |
| "normalized": true, | |
| "rstrip": false, | |
| "single_word": false, | |
| "special": true | |
| } | |
| }, | |
| "bos_token": "<s>", | |
| "chat_template": "{% if messages[0]['role'] == 'system' %}{% set loop_messages = messages[1:] %}{% set system_message = messages[0]['content'] %}{% elif false == true and not '<<SYS>>' in messages[0]['content'] %}{% set loop_messages = messages %}{% set system_message = 'Sen yardımsever bir chatbotsun. Sana verilen diyalog akışına dikkat ederek diyaloğu devam ettir.\n' %}{% else %}{% set loop_messages = messages %}{% set system_message = false %}{% endif %}{% for message in loop_messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if loop.index0 == 0 and system_message != false %}{% set content = '<<SYS>>\\n' + system_message + '\\n<</SYS>>\\n\\n' + message['content'] %}{% else %}{% set content = message['content'] %}{% endif %}{% if message['role'] == 'user' %}{{ bos_token + '[INST] ' + content.strip() + ' [/INST]' }}{% elif message['role'] == 'system' %}{{ '<<SYS>>\\n' + content.strip() + '\\n<</SYS>>\\n\\n' }}{% elif message['role'] == 'assistant' %}{{ ' ' + content.strip() + ' ' + eos_token }}{% endif %}{% endfor %}", | |
| "clean_up_tokenization_spaces": false, | |
| "eos_token": "</s>", | |
| "legacy": true, | |
| "model_max_length": 1000000000000000019884624838656, | |
| "pad_token": "</s>", | |
| "sp_model_kwargs": {}, | |
| "spaces_between_special_tokens": false, | |
| "tokenizer_class": "LlamaTokenizer", | |
| "unk_token": "<unk>", | |
| "use_default_system_prompt": false, | |
| "use_fast": true | |
| } | |