verify_hou_api
Verify Houdini API items and retrieve structured help for nodes, VEX functions, and Python methods, with parameters, outputs, and usage hints.
Instructions
AI-friendly wrapper over get_houdini_help(PR 18)。
参数说明:
- item_name: 要查询的 hou API / 节点 / VEX 函数名,如
"ObjNode.setDisplayNode" 或 "Node.setInput"。
- help_type: 可选,帮助类型,默认 "python_hou";其他支持值见
get_houdini_help(sop / obj / dop / cop2 / chop / vop / lop /
top / rop / vex_function)。
- timeout: 可选,HTTP 请求超时秒数,默认 10。
返回 dict 包含 title / summary / parameters / inputs / outputs /
methods / status 等字段,并在响应末尾附 `_ai_hint` 字段,给 AI
一个可直接使用的简短提示(命中方法签名 / F-C pattern /
SideFX 不可达 fallback)。响应整体过 apply_response_cap。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ctx | Yes | ||
| timeout | No | ||
| help_type | No | python_hou | |
| item_name | Yes |