12 lines
294 B
Bash
Executable File
12 lines
294 B
Bash
Executable File
#!/bin/bash
|
|
export PATH=$HOME/.local/bin:$PATH
|
|
export LLM_MODEL=anthropic/claude-sonnet-4-6
|
|
export LLM_API_KEY="REDACTED_API_KEY"
|
|
|
|
# If no arguments, start interactive TUI
|
|
if [ $# -eq 0 ]; then
|
|
openhands --override-with-envs --always-approve
|
|
else
|
|
openhands --override-with-envs "$@"
|
|
fi
|