mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-05-05 07:20:28 +00:00
Add log_install_failed helper to shared/common.sh that provides structured troubleshooting for agent install failures: possible causes, SSH debug command (when server IP available), manual install command, and re-run suggestion. Also improve SSH key registration error message. Agent: ux-engineer Co-authored-by: A <6723574+louisgv@users.noreply.github.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
60 lines
1.7 KiB
Bash
60 lines
1.7 KiB
Bash
#!/bin/bash
|
|
set -eo pipefail
|
|
|
|
# Source cloud-specific functions (local or remote fallback)
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" 2>/dev/null && pwd)"
|
|
if [[ -n "${SCRIPT_DIR}" && -f "${SCRIPT_DIR}/lib/common.sh" ]]; then
|
|
source "${SCRIPT_DIR}/lib/common.sh"
|
|
else
|
|
eval "$(curl -fsSL https://raw.githubusercontent.com/OpenRouterTeam/spawn/main/codesandbox/lib/common.sh)"
|
|
fi
|
|
|
|
log_info "gptme on CodeSandbox"
|
|
echo ""
|
|
|
|
# Ensure CodeSandbox CLI and token
|
|
ensure_codesandbox_cli
|
|
ensure_codesandbox_token
|
|
|
|
# Get sandbox name and create it
|
|
SANDBOX_NAME=$(get_server_name)
|
|
create_server "${SANDBOX_NAME}"
|
|
|
|
# Wait for sandbox to be ready
|
|
wait_for_cloud_init
|
|
|
|
log_step "Installing gptme..."
|
|
run_server "pip install gptme 2>/dev/null || pip3 install gptme"
|
|
|
|
# Verify installation
|
|
if ! run_server "command -v gptme &> /dev/null && gptme --version &> /dev/null"; then
|
|
log_install_failed "gptme" "pip install gptme"
|
|
exit 1
|
|
fi
|
|
log_info "gptme installation verified successfully"
|
|
|
|
# Get OpenRouter API key (env var or OAuth)
|
|
echo ""
|
|
if [[ -n "${OPENROUTER_API_KEY:-}" ]]; then
|
|
log_info "Using OpenRouter API key from environment"
|
|
else
|
|
OPENROUTER_API_KEY=$(get_openrouter_api_key_oauth 5180)
|
|
fi
|
|
|
|
# Get model preference
|
|
MODEL_ID=$(get_model_id_interactive "openrouter/auto" "gptme") || exit 1
|
|
|
|
# Inject environment variables
|
|
log_step "Setting up environment variables..."
|
|
inject_env_vars_local upload_file run_server \
|
|
"OPENROUTER_API_KEY=${OPENROUTER_API_KEY}"
|
|
|
|
echo ""
|
|
log_info "CodeSandbox setup completed successfully!"
|
|
echo ""
|
|
|
|
# Start gptme interactively
|
|
log_step "Starting gptme..."
|
|
sleep 1
|
|
clear
|
|
interactive_session "bash -c 'source ~/.bashrc && gptme -m openrouter/${MODEL_ID}'"
|