Text Generation
Transformers
Safetensors
GGUF
llama
chatbot
multilingual
arabic
french
tamazight
english
conversational
text-generation-inference
4-bit precision
bitsandbytes
Instructions to use kaisser/LLM-Maroc with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use kaisser/LLM-Maroc with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="kaisser/LLM-Maroc") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("kaisser/LLM-Maroc") model = AutoModelForCausalLM.from_pretrained("kaisser/LLM-Maroc", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use kaisser/LLM-Maroc 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 kaisser/LLM-Maroc:BF16 # Run inference directly in the terminal: llama cli -hf kaisser/LLM-Maroc:BF16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf kaisser/LLM-Maroc:BF16 # Run inference directly in the terminal: llama cli -hf kaisser/LLM-Maroc:BF16
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 kaisser/LLM-Maroc:BF16 # Run inference directly in the terminal: ./llama-cli -hf kaisser/LLM-Maroc:BF16
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 kaisser/LLM-Maroc:BF16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf kaisser/LLM-Maroc:BF16
Use Docker
docker model run hf.co/kaisser/LLM-Maroc:BF16
- LM Studio
- Jan
- vLLM
How to use kaisser/LLM-Maroc with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "kaisser/LLM-Maroc" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "kaisser/LLM-Maroc", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/kaisser/LLM-Maroc:BF16
- SGLang
How to use kaisser/LLM-Maroc with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "kaisser/LLM-Maroc" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "kaisser/LLM-Maroc", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "kaisser/LLM-Maroc" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "kaisser/LLM-Maroc", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use kaisser/LLM-Maroc with Ollama:
ollama run hf.co/kaisser/LLM-Maroc:BF16
- Unsloth Studio
How to use kaisser/LLM-Maroc 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 kaisser/LLM-Maroc 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 kaisser/LLM-Maroc to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for kaisser/LLM-Maroc to start chatting
- Docker Model Runner
How to use kaisser/LLM-Maroc with Docker Model Runner:
docker model run hf.co/kaisser/LLM-Maroc:BF16
- Lemonade
How to use kaisser/LLM-Maroc with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull kaisser/LLM-Maroc:BF16
Run and chat with the model
lemonade run user.LLM-Maroc-BF16
List all available models
lemonade list
- Atomic Chat
File size: 6,373 Bytes
305a42c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | # CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.31
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/local/lib/python3.11/dist-packages/cmake/data/bin/cmake
# The command to remove a file.
RM = /usr/local/lib/python3.11/dist-packages/cmake/data/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /content/llama.cpp
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /content/llama.cpp/build
# Include any dependencies generated for this target.
include examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/depend.make
# Include any dependencies generated by the compiler for this target.
include examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/compiler_depend.make
# Include the progress variables for this target.
include examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/progress.make
# Include the compile flags for this target's objects.
include examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/flags.make
examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/codegen:
.PHONY : examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/codegen
examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/diffusion-cli.cpp.o: examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/flags.make
examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/diffusion-cli.cpp.o: /content/llama.cpp/examples/diffusion/diffusion-cli.cpp
examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/diffusion-cli.cpp.o: examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/content/llama.cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/diffusion-cli.cpp.o"
cd /content/llama.cpp/build/examples/diffusion && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/diffusion-cli.cpp.o -MF CMakeFiles/llama-diffusion-cli.dir/diffusion-cli.cpp.o.d -o CMakeFiles/llama-diffusion-cli.dir/diffusion-cli.cpp.o -c /content/llama.cpp/examples/diffusion/diffusion-cli.cpp
examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/diffusion-cli.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/llama-diffusion-cli.dir/diffusion-cli.cpp.i"
cd /content/llama.cpp/build/examples/diffusion && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /content/llama.cpp/examples/diffusion/diffusion-cli.cpp > CMakeFiles/llama-diffusion-cli.dir/diffusion-cli.cpp.i
examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/diffusion-cli.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/llama-diffusion-cli.dir/diffusion-cli.cpp.s"
cd /content/llama.cpp/build/examples/diffusion && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /content/llama.cpp/examples/diffusion/diffusion-cli.cpp -o CMakeFiles/llama-diffusion-cli.dir/diffusion-cli.cpp.s
# Object files for target llama-diffusion-cli
llama__diffusion__cli_OBJECTS = \
"CMakeFiles/llama-diffusion-cli.dir/diffusion-cli.cpp.o"
# External object files for target llama-diffusion-cli
llama__diffusion__cli_EXTERNAL_OBJECTS =
bin/llama-diffusion-cli: examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/diffusion-cli.cpp.o
bin/llama-diffusion-cli: examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/build.make
bin/llama-diffusion-cli: src/libllama.a
bin/llama-diffusion-cli: common/libcommon.a
bin/llama-diffusion-cli: src/libllama.a
bin/llama-diffusion-cli: ggml/src/libggml.a
bin/llama-diffusion-cli: ggml/src/libggml-cpu.a
bin/llama-diffusion-cli: ggml/src/libggml-base.a
bin/llama-diffusion-cli: /usr/lib/gcc/x86_64-linux-gnu/11/libgomp.so
bin/llama-diffusion-cli: /usr/lib/x86_64-linux-gnu/libpthread.a
bin/llama-diffusion-cli: /usr/lib/x86_64-linux-gnu/libcurl.so
bin/llama-diffusion-cli: examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/content/llama.cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable ../../bin/llama-diffusion-cli"
cd /content/llama.cpp/build/examples/diffusion && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/llama-diffusion-cli.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/build: bin/llama-diffusion-cli
.PHONY : examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/build
examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/clean:
cd /content/llama.cpp/build/examples/diffusion && $(CMAKE_COMMAND) -P CMakeFiles/llama-diffusion-cli.dir/cmake_clean.cmake
.PHONY : examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/clean
examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/depend:
cd /content/llama.cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /content/llama.cpp /content/llama.cpp/examples/diffusion /content/llama.cpp/build /content/llama.cpp/build/examples/diffusion /content/llama.cpp/build/examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/DependInfo.cmake "--color=$(COLOR)"
.PHONY : examples/diffusion/CMakeFiles/llama-diffusion-cli.dir/depend
|