Insurance form filler using Stagehand in Intuned.
| API | Description |
|---|---|
insurance-form-filler |
Fills out a multi-step auto insurance quote form using Stagehand AI, given applicant, address, and vehicle details |
uv syncIf the intuned CLI is not installed, install it globally:
npm install -g @intuned/cliAfter installing dependencies, intuned command should be available in your environment.
Before running any API, provision and deploy the project first.
intuned dev provision
intuned dev deployintuned dev run api insurance-form-filler .parameters/api/insurance-form-filler/default.json
intuned dev run api insurance-form-filler .parameters/api/insurance-form-filler/honda.jsonrpa-forms-example/
├── api/
│ └── insurance-form-filler.py # Fills multi-step insurance quote form using Stagehand AI
├── hooks/
│ └── setup_context.py # Stores CDP URL in attempt_store before each API call
├── utils/
│ └── types_and_schemas.py # Pydantic models for request parameter validation
├── intuned-resources/
│ └── jobs/
│ └── insurance-form-filler.job.jsonc # Job definition for insurance-form-filler API
├── .parameters/
│ └── api/
│ └── insurance-form-filler/
├── Intuned.jsonc
├── pyproject.toml
└── README.md