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") 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]:])) - llama-cpp-python
How to use kaisser/LLM-Maroc with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="kaisser/LLM-Maroc", filename="llama.cpp/models/ggml-vocab-aquila.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use kaisser/LLM-Maroc with llama.cpp:
Install from brew
brew install llama.cpp # 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
Install from WinGet (Windows)
winget install llama.cpp # 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
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 new
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
| # CMAKE generated file: DO NOT EDIT! | |
| # Generated by "Unix Makefiles" Generator, CMake Version 3.31 | |
| # Default target executed when no arguments are given to make. | |
| default_target: all | |
| .PHONY : default_target | |
| # Allow only one "make -f Makefile2" at a time, but pass parallelism. | |
| .NOTPARALLEL: | |
| #============================================================================= | |
| # 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 | |
| #============================================================================= | |
| # Targets provided globally by CMake. | |
| # Special rule for the target test | |
| test: | |
| @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..." | |
| /usr/local/lib/python3.11/dist-packages/cmake/data/bin/ctest --force-new-ctest-process $(ARGS) | |
| .PHONY : test | |
| # Special rule for the target test | |
| test/fast: test | |
| .PHONY : test/fast | |
| # Special rule for the target edit_cache | |
| edit_cache: | |
| @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..." | |
| /usr/local/lib/python3.11/dist-packages/cmake/data/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. | |
| .PHONY : edit_cache | |
| # Special rule for the target edit_cache | |
| edit_cache/fast: edit_cache | |
| .PHONY : edit_cache/fast | |
| # Special rule for the target rebuild_cache | |
| rebuild_cache: | |
| @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." | |
| /usr/local/lib/python3.11/dist-packages/cmake/data/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) | |
| .PHONY : rebuild_cache | |
| # Special rule for the target rebuild_cache | |
| rebuild_cache/fast: rebuild_cache | |
| .PHONY : rebuild_cache/fast | |
| # Special rule for the target list_install_components | |
| list_install_components: | |
| @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" | |
| .PHONY : list_install_components | |
| # Special rule for the target list_install_components | |
| list_install_components/fast: list_install_components | |
| .PHONY : list_install_components/fast | |
| # Special rule for the target install | |
| install: preinstall | |
| @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." | |
| /usr/local/lib/python3.11/dist-packages/cmake/data/bin/cmake -P cmake_install.cmake | |
| .PHONY : install | |
| # Special rule for the target install | |
| install/fast: preinstall/fast | |
| @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." | |
| /usr/local/lib/python3.11/dist-packages/cmake/data/bin/cmake -P cmake_install.cmake | |
| .PHONY : install/fast | |
| # Special rule for the target install/local | |
| install/local: preinstall | |
| @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." | |
| /usr/local/lib/python3.11/dist-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake | |
| .PHONY : install/local | |
| # Special rule for the target install/local | |
| install/local/fast: preinstall/fast | |
| @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." | |
| /usr/local/lib/python3.11/dist-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake | |
| .PHONY : install/local/fast | |
| # Special rule for the target install/strip | |
| install/strip: preinstall | |
| @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." | |
| /usr/local/lib/python3.11/dist-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake | |
| .PHONY : install/strip | |
| # Special rule for the target install/strip | |
| install/strip/fast: preinstall/fast | |
| @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." | |
| /usr/local/lib/python3.11/dist-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake | |
| .PHONY : install/strip/fast | |
| # The main all target | |
| all: cmake_check_build_system | |
| cd /content/llama.cpp/build && $(CMAKE_COMMAND) -E cmake_progress_start /content/llama.cpp/build/CMakeFiles /content/llama.cpp/build/common//CMakeFiles/progress.marks | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 common/all | |
| $(CMAKE_COMMAND) -E cmake_progress_start /content/llama.cpp/build/CMakeFiles 0 | |
| .PHONY : all | |
| # The main clean target | |
| clean: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 common/clean | |
| .PHONY : clean | |
| # The main clean target | |
| clean/fast: clean | |
| .PHONY : clean/fast | |
| # Prepare targets for installation. | |
| preinstall: all | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 common/preinstall | |
| .PHONY : preinstall | |
| # Prepare targets for installation. | |
| preinstall/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 common/preinstall | |
| .PHONY : preinstall/fast | |
| # clear depends | |
| depend: | |
| cd /content/llama.cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 | |
| .PHONY : depend | |
| # Convenience name for target. | |
| common/CMakeFiles/build_info.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 common/CMakeFiles/build_info.dir/rule | |
| .PHONY : common/CMakeFiles/build_info.dir/rule | |
| # Convenience name for target. | |
| build_info: common/CMakeFiles/build_info.dir/rule | |
| .PHONY : build_info | |
| # fast build rule for target. | |
| build_info/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/build_info.dir/build.make common/CMakeFiles/build_info.dir/build | |
| .PHONY : build_info/fast | |
| # Convenience name for target. | |
| common/CMakeFiles/common.dir/rule: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 common/CMakeFiles/common.dir/rule | |
| .PHONY : common/CMakeFiles/common.dir/rule | |
| # Convenience name for target. | |
| common: common/CMakeFiles/common.dir/rule | |
| .PHONY : common | |
| # fast build rule for target. | |
| common/fast: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/build | |
| .PHONY : common/fast | |
| arg.o: arg.cpp.o | |
| .PHONY : arg.o | |
| # target to build an object file | |
| arg.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/arg.cpp.o | |
| .PHONY : arg.cpp.o | |
| arg.i: arg.cpp.i | |
| .PHONY : arg.i | |
| # target to preprocess a source file | |
| arg.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/arg.cpp.i | |
| .PHONY : arg.cpp.i | |
| arg.s: arg.cpp.s | |
| .PHONY : arg.s | |
| # target to generate assembly for a file | |
| arg.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/arg.cpp.s | |
| .PHONY : arg.cpp.s | |
| build-info.o: build-info.cpp.o | |
| .PHONY : build-info.o | |
| # target to build an object file | |
| build-info.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/build_info.dir/build.make common/CMakeFiles/build_info.dir/build-info.cpp.o | |
| .PHONY : build-info.cpp.o | |
| build-info.i: build-info.cpp.i | |
| .PHONY : build-info.i | |
| # target to preprocess a source file | |
| build-info.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/build_info.dir/build.make common/CMakeFiles/build_info.dir/build-info.cpp.i | |
| .PHONY : build-info.cpp.i | |
| build-info.s: build-info.cpp.s | |
| .PHONY : build-info.s | |
| # target to generate assembly for a file | |
| build-info.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/build_info.dir/build.make common/CMakeFiles/build_info.dir/build-info.cpp.s | |
| .PHONY : build-info.cpp.s | |
| chat-parser.o: chat-parser.cpp.o | |
| .PHONY : chat-parser.o | |
| # target to build an object file | |
| chat-parser.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/chat-parser.cpp.o | |
| .PHONY : chat-parser.cpp.o | |
| chat-parser.i: chat-parser.cpp.i | |
| .PHONY : chat-parser.i | |
| # target to preprocess a source file | |
| chat-parser.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/chat-parser.cpp.i | |
| .PHONY : chat-parser.cpp.i | |
| chat-parser.s: chat-parser.cpp.s | |
| .PHONY : chat-parser.s | |
| # target to generate assembly for a file | |
| chat-parser.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/chat-parser.cpp.s | |
| .PHONY : chat-parser.cpp.s | |
| chat.o: chat.cpp.o | |
| .PHONY : chat.o | |
| # target to build an object file | |
| chat.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/chat.cpp.o | |
| .PHONY : chat.cpp.o | |
| chat.i: chat.cpp.i | |
| .PHONY : chat.i | |
| # target to preprocess a source file | |
| chat.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/chat.cpp.i | |
| .PHONY : chat.cpp.i | |
| chat.s: chat.cpp.s | |
| .PHONY : chat.s | |
| # target to generate assembly for a file | |
| chat.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/chat.cpp.s | |
| .PHONY : chat.cpp.s | |
| common.o: common.cpp.o | |
| .PHONY : common.o | |
| # target to build an object file | |
| common.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/common.cpp.o | |
| .PHONY : common.cpp.o | |
| common.i: common.cpp.i | |
| .PHONY : common.i | |
| # target to preprocess a source file | |
| common.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/common.cpp.i | |
| .PHONY : common.cpp.i | |
| common.s: common.cpp.s | |
| .PHONY : common.s | |
| # target to generate assembly for a file | |
| common.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/common.cpp.s | |
| .PHONY : common.cpp.s | |
| console.o: console.cpp.o | |
| .PHONY : console.o | |
| # target to build an object file | |
| console.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/console.cpp.o | |
| .PHONY : console.cpp.o | |
| console.i: console.cpp.i | |
| .PHONY : console.i | |
| # target to preprocess a source file | |
| console.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/console.cpp.i | |
| .PHONY : console.cpp.i | |
| console.s: console.cpp.s | |
| .PHONY : console.s | |
| # target to generate assembly for a file | |
| console.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/console.cpp.s | |
| .PHONY : console.cpp.s | |
| json-partial.o: json-partial.cpp.o | |
| .PHONY : json-partial.o | |
| # target to build an object file | |
| json-partial.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/json-partial.cpp.o | |
| .PHONY : json-partial.cpp.o | |
| json-partial.i: json-partial.cpp.i | |
| .PHONY : json-partial.i | |
| # target to preprocess a source file | |
| json-partial.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/json-partial.cpp.i | |
| .PHONY : json-partial.cpp.i | |
| json-partial.s: json-partial.cpp.s | |
| .PHONY : json-partial.s | |
| # target to generate assembly for a file | |
| json-partial.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/json-partial.cpp.s | |
| .PHONY : json-partial.cpp.s | |
| json-schema-to-grammar.o: json-schema-to-grammar.cpp.o | |
| .PHONY : json-schema-to-grammar.o | |
| # target to build an object file | |
| json-schema-to-grammar.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/json-schema-to-grammar.cpp.o | |
| .PHONY : json-schema-to-grammar.cpp.o | |
| json-schema-to-grammar.i: json-schema-to-grammar.cpp.i | |
| .PHONY : json-schema-to-grammar.i | |
| # target to preprocess a source file | |
| json-schema-to-grammar.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/json-schema-to-grammar.cpp.i | |
| .PHONY : json-schema-to-grammar.cpp.i | |
| json-schema-to-grammar.s: json-schema-to-grammar.cpp.s | |
| .PHONY : json-schema-to-grammar.s | |
| # target to generate assembly for a file | |
| json-schema-to-grammar.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/json-schema-to-grammar.cpp.s | |
| .PHONY : json-schema-to-grammar.cpp.s | |
| llguidance.o: llguidance.cpp.o | |
| .PHONY : llguidance.o | |
| # target to build an object file | |
| llguidance.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/llguidance.cpp.o | |
| .PHONY : llguidance.cpp.o | |
| llguidance.i: llguidance.cpp.i | |
| .PHONY : llguidance.i | |
| # target to preprocess a source file | |
| llguidance.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/llguidance.cpp.i | |
| .PHONY : llguidance.cpp.i | |
| llguidance.s: llguidance.cpp.s | |
| .PHONY : llguidance.s | |
| # target to generate assembly for a file | |
| llguidance.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/llguidance.cpp.s | |
| .PHONY : llguidance.cpp.s | |
| log.o: log.cpp.o | |
| .PHONY : log.o | |
| # target to build an object file | |
| log.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/log.cpp.o | |
| .PHONY : log.cpp.o | |
| log.i: log.cpp.i | |
| .PHONY : log.i | |
| # target to preprocess a source file | |
| log.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/log.cpp.i | |
| .PHONY : log.cpp.i | |
| log.s: log.cpp.s | |
| .PHONY : log.s | |
| # target to generate assembly for a file | |
| log.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/log.cpp.s | |
| .PHONY : log.cpp.s | |
| ngram-cache.o: ngram-cache.cpp.o | |
| .PHONY : ngram-cache.o | |
| # target to build an object file | |
| ngram-cache.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/ngram-cache.cpp.o | |
| .PHONY : ngram-cache.cpp.o | |
| ngram-cache.i: ngram-cache.cpp.i | |
| .PHONY : ngram-cache.i | |
| # target to preprocess a source file | |
| ngram-cache.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/ngram-cache.cpp.i | |
| .PHONY : ngram-cache.cpp.i | |
| ngram-cache.s: ngram-cache.cpp.s | |
| .PHONY : ngram-cache.s | |
| # target to generate assembly for a file | |
| ngram-cache.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/ngram-cache.cpp.s | |
| .PHONY : ngram-cache.cpp.s | |
| regex-partial.o: regex-partial.cpp.o | |
| .PHONY : regex-partial.o | |
| # target to build an object file | |
| regex-partial.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/regex-partial.cpp.o | |
| .PHONY : regex-partial.cpp.o | |
| regex-partial.i: regex-partial.cpp.i | |
| .PHONY : regex-partial.i | |
| # target to preprocess a source file | |
| regex-partial.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/regex-partial.cpp.i | |
| .PHONY : regex-partial.cpp.i | |
| regex-partial.s: regex-partial.cpp.s | |
| .PHONY : regex-partial.s | |
| # target to generate assembly for a file | |
| regex-partial.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/regex-partial.cpp.s | |
| .PHONY : regex-partial.cpp.s | |
| sampling.o: sampling.cpp.o | |
| .PHONY : sampling.o | |
| # target to build an object file | |
| sampling.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/sampling.cpp.o | |
| .PHONY : sampling.cpp.o | |
| sampling.i: sampling.cpp.i | |
| .PHONY : sampling.i | |
| # target to preprocess a source file | |
| sampling.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/sampling.cpp.i | |
| .PHONY : sampling.cpp.i | |
| sampling.s: sampling.cpp.s | |
| .PHONY : sampling.s | |
| # target to generate assembly for a file | |
| sampling.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/sampling.cpp.s | |
| .PHONY : sampling.cpp.s | |
| speculative.o: speculative.cpp.o | |
| .PHONY : speculative.o | |
| # target to build an object file | |
| speculative.cpp.o: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/speculative.cpp.o | |
| .PHONY : speculative.cpp.o | |
| speculative.i: speculative.cpp.i | |
| .PHONY : speculative.i | |
| # target to preprocess a source file | |
| speculative.cpp.i: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/speculative.cpp.i | |
| .PHONY : speculative.cpp.i | |
| speculative.s: speculative.cpp.s | |
| .PHONY : speculative.s | |
| # target to generate assembly for a file | |
| speculative.cpp.s: | |
| cd /content/llama.cpp/build && $(MAKE) $(MAKESILENT) -f common/CMakeFiles/common.dir/build.make common/CMakeFiles/common.dir/speculative.cpp.s | |
| .PHONY : speculative.cpp.s | |
| # Help Target | |
| help: | |
| @echo "The following are some of the valid targets for this Makefile:" | |
| @echo "... all (the default if no target is provided)" | |
| @echo "... clean" | |
| @echo "... depend" | |
| @echo "... edit_cache" | |
| @echo "... install" | |
| @echo "... install/local" | |
| @echo "... install/strip" | |
| @echo "... list_install_components" | |
| @echo "... rebuild_cache" | |
| @echo "... test" | |
| @echo "... build_info" | |
| @echo "... common" | |
| @echo "... arg.o" | |
| @echo "... arg.i" | |
| @echo "... arg.s" | |
| @echo "... build-info.o" | |
| @echo "... build-info.i" | |
| @echo "... build-info.s" | |
| @echo "... chat-parser.o" | |
| @echo "... chat-parser.i" | |
| @echo "... chat-parser.s" | |
| @echo "... chat.o" | |
| @echo "... chat.i" | |
| @echo "... chat.s" | |
| @echo "... common.o" | |
| @echo "... common.i" | |
| @echo "... common.s" | |
| @echo "... console.o" | |
| @echo "... console.i" | |
| @echo "... console.s" | |
| @echo "... json-partial.o" | |
| @echo "... json-partial.i" | |
| @echo "... json-partial.s" | |
| @echo "... json-schema-to-grammar.o" | |
| @echo "... json-schema-to-grammar.i" | |
| @echo "... json-schema-to-grammar.s" | |
| @echo "... llguidance.o" | |
| @echo "... llguidance.i" | |
| @echo "... llguidance.s" | |
| @echo "... log.o" | |
| @echo "... log.i" | |
| @echo "... log.s" | |
| @echo "... ngram-cache.o" | |
| @echo "... ngram-cache.i" | |
| @echo "... ngram-cache.s" | |
| @echo "... regex-partial.o" | |
| @echo "... regex-partial.i" | |
| @echo "... regex-partial.s" | |
| @echo "... sampling.o" | |
| @echo "... sampling.i" | |
| @echo "... sampling.s" | |
| @echo "... speculative.o" | |
| @echo "... speculative.i" | |
| @echo "... speculative.s" | |
| .PHONY : help | |
| #============================================================================= | |
| # Special targets to cleanup operation of make. | |
| # Special rule to run CMake to check the build system integrity. | |
| # No rule that depends on this can have commands that come from listfiles | |
| # because they might be regenerated. | |
| cmake_check_build_system: | |
| cd /content/llama.cpp/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 | |
| .PHONY : cmake_check_build_system | |