hypothesis_test
Test specific theories about code behavior using Gemini AI. Analyze code scope, define hypotheses, and apply test approaches to validate assumptions in distributed systems and long-trace debugging.
Instructions
Use Gemini to test specific theories about code behavior
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code_scope | Yes | ||
hypothesis | Yes | ||
test_approach | Yes |
Input Schema (JSON Schema)
{
"properties": {
"code_scope": {
"properties": {
"entry_points": {
"type": "array"
},
"files": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"files"
],
"type": "object"
},
"hypothesis": {
"type": "string"
},
"test_approach": {
"type": "string"
}
},
"required": [
"hypothesis",
"code_scope",
"test_approach"
],
"type": "object"
}