7 lines
290 B
Bash
Executable File
7 lines
290 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Filbert's native development mode through the Mosaic agent entry point.
|
|
set -euo pipefail
|
|
REPO="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
|
exec "$REPO/scripts/agent.sh" --host-dev filbert "$@" \
|
|
--provider openai-codex --model gpt-6-astra --thinking low
|