init repo

This commit is contained in:
2026-04-22 20:55:36 +02:00
commit 0155516457
32 changed files with 7712 additions and 0 deletions

18
ai/scripts/llama-chat.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env bash
set -euo pipefail
MODEL="${LLAMA_MODEL:-}"
if [ -z "${MODEL}" ]; then
echo "error: LLAMA_MODEL not set"
echo "export LLAMA_MODEL=/absolute/path/to/model.gguf"
exit 1
fi
./ai/scripts/build-context.sh >/dev/null
exec llama-cli \
-m "${MODEL}" \
-sysf ai/system-prompt.md \
-f ai/context/project-context.md \
-cnv \
-mli