initial codebase for llm-based sensing

This commit is contained in:
Hyungjun Yoon
2025-10-23 16:07:29 +09:00
parent 41024838f0
commit 59b14b5d9f
11 changed files with 1413 additions and 0 deletions

16
utils/kill_ollamas.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
echo "Killing all tmux sessions starting with 'ollama'..."
# Get all tmux sessions starting with "ollama"
SESSIONS=$(tmux list-sessions -F '#S' | grep '^ollama')
if [ -z "$SESSIONS" ]; then
echo "No 'ollama' sessions found."
else
for SESSION in $SESSIONS; do
echo "Killing session: $SESSION"
tmux kill-session -t "$SESSION"
done
echo "All 'ollama' sessions have been terminated."
fi