14 lines
377 B
Bash
Executable File
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
|