(state *AgentState, message map[string]any)
| 1469 | return nil |
| 1470 | case int: |
| 1471 | if v <= 0 { |
| 1472 | return nil |
| 1473 | } |
| 1474 | return &v |
| 1475 | case int64: |
| 1476 | if v <= 0 { |
| 1477 | return nil |
| 1478 | } |
| 1479 | budget := int(v) |
| 1480 | return &budget |
| 1481 | case bool: |
| 1482 | if !v { |
| 1483 | return nil |
| 1484 | } |
| 1485 | budget := 1 |
| 1486 | return &budget |
no outgoing calls
no test coverage detected