mirror of
https://github.com/enricoros/big-AGI.git
synced 2026-05-11 14:10:15 -07:00
13 lines
368 B
Bash
13 lines
368 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Change to project root
|
|
cd "$(dirname "$0")/../../.."
|
|
|
|
# Suppress noisy server-side fetcher error logging (sweep handles errors itself)
|
|
export SUPPRESS_FETCHER_LOGS=1
|
|
|
|
# Run with npx tsx (will download on-demand if needed)
|
|
# Uses npx cache, lightweight and no local install required
|
|
exec npx -y tsx tools/develop/llm-parameter-sweep/sweep.ts "$@"
|