- cli/crowdcode.js: Node.js CLI mit Streaming-Chat, @mentions, FILE:/DIR:/EDIT:/bash Pattern-Erkennung + Ausführung - crowdcode.sh: Linux-Wrapper - crowdcode.bat: Windows-Wrapper - Funktioniert ohne VSCode, nutzt llama.cpp API
5 lines
191 B
Bash
Executable file
5 lines
191 B
Bash
Executable file
#!/bin/bash
|
|
# crowdcode.sh — MiniLlama Terminal CLI (Linux)
|
|
# Aufruf: ./crowdcode.sh [endpoint] [model]
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
node "$SCRIPT_DIR/cli/crowdcode.js" "$@"
|