Skip to content

Latest commit

 

History

History

README.md

starter-stagehand (Python)

Minimal starter showing how to drive a page with Stagehand on Intuned. Uses Intuned's managed AI gateway, so no API keys are needed locally beyond being linked to an Intuned workspace.

Run on Intuned

APIs

API Description
sample-extract Navigate to a URL and extract structured data with a natural-language instruction

Getting Started

Install dependencies

uv sync

If the intuned CLI is not installed, install it globally:

npm install -g @intuned/cli

Run an API

intuned dev run api sample-extract .parameters/api/sample-extract/default.json

Requires the project to be linked to an Intuned workspace so the AI gateway credentials resolve.

Save project

intuned dev provision

Deploy

intuned dev deploy

Project Structure

starter-stagehand/
├── api/
│   └── sample-extract.py
├── intuned-resources/
│   └── jobs/
│       └── sample-extract.job.jsonc
├── .parameters/
│   └── api/
│       └── sample-extract/
│           └── default.json
├── Intuned.jsonc
├── pyproject.toml
└── README.md

Related