mirror of
https://github.com/aaif-goose/goose.git
synced 2026-07-03 14:10:03 +02:00
2.0 KiB
2.0 KiB
Goose is your on-machine developer agent, working for you, on your terms
Generated by Goose from its VincentVanCode toolkit.
Unique features 🤖 •
Block Employees on Goose
•
Quick start guide 🚀 •
Getting involved! 👋
Building
uv run download_tokenizer_files.py
cargo build
Running the CLI
OpenAI provider (default):
export OPENAI_API_KEY=...
cargo run --bin goose -- --provider open-ai --model gpt-4o
Databricks provider:
export DATABRICKS_HOST=...
export DATABRICKS_TOKEN=...
cargo run --bin goose -- --provider databricks --model claude-3-5-sonnet-2
Troubleshooting
Compiling tokenizers library
tokenizers depends on esaxx-rs which failed to compile because 'cstdint' file
was not found. The following fixed it:
export CXXFLAGS="-isystem $(xcrun --show-sdk-path)/usr/include/c++/v1"
cargo check
