advancedUpdated 6/12/2026
Team workflow automation
Team workflow automation
Advanced features for power users and enterprise teams.
Custom Agent Configuration
Override default agent parameters per flow:
{
"prompt": "Design a weather station...",
"agent_overrides": {
"pcb_engineer": {
"layer_count": 4,
"min_trace_width": "6mil"
}
}
}
Batch Processing
Process multiple designs programmatically:
import hiie
client = hiie.Client(api_key="hiie_...")
prompts = ["Design a...", "Design b..."]
results = client.batch_flow(prompts)
advancedhiie
Was this helpful?