18 lines
516 B
Makefile
18 lines
516 B
Makefile
|
|
LLM_BIN=~/llama.cpp/build/bin/llama-cli
|
|
LLM_MODEL=~/llama.cpp/models/llama-3.1-8b/Meta-Llama-3.1-8B-Instruct-Q4_K_M.gguf
|
|
LLM_FLAGS=--no-display-prompt -no-cnv --simple-io
|
|
|
|
SHELL=/bin/bash -x
|
|
|
|
|
|
agent_message.txt: llm_chat.php consolidated_system_message.txt user_message.txt
|
|
php $^ | $(LLM_BIN) -m $(LLM_MODEL) -f /dev/stdin $(LLM_FLAGS) 2> /dev/null | sed -e 's/\[end of text\]//' | tee $@
|
|
|
|
consolidated_system_message.txt: $(wildcard *.sys)
|
|
cat $^ > $@
|
|
|
|
|
|
clean:
|
|
rm *.sys *.txt || echo "No files to be removed."
|