No account yet? Copy and paste this prompt asking your agent to sign itself up:
Set up
cargo add inkbox inside your Rust project.
Authentication
You’ll need an API key. Get one at inkbox.ai/console.Python
Use
with Inkbox(...) as inkbox: (recommended) or call inkbox.close() manually to clean up HTTP connections.
TypeScript
Rust
Pass your API key toInkbox::new. The Rust SDK uses blocking calls with a default timeout of 30 seconds.
Use Inkbox::builder(api_key).timeout_secs(30.0).build() to set the timeout.
CLI
Set the API key as an environment variable, in a config file, or with a flag. The CLI resolves it in this order:--api-key → INKBOX_API_KEY → ~/.inkbox/config.

