Files
homelab-optimized/scripts/openhands-olares.sh
Gitea Mirror Bot a95a68e477
Some checks failed
Documentation / Build Docusaurus (push) Failing after 8s
Documentation / Deploy to GitHub Pages (push) Has been skipped
Sanitized mirror from private repository - 2026-03-15 06:28:27 UTC
2026-03-15 06:28:27 +00:00

14 lines
377 B
Bash
Executable File

#!/bin/bash
export PATH=$HOME/.local/bin:$PATH
export LLM_MODEL=openai//models/qwen3-30b
export LLM_API_KEY="olares"
export LLM_BASE_URL="https://04521407.vishinator.olares.com/v1"
export LLM_CONTEXT_WINDOW=32768
# If no arguments, start interactive TUI
if [ $# -eq 0 ]; then
openhands --override-with-envs --always-approve
else
openhands --override-with-envs "$@"
fi