The documentation shows incorrect parameter count for the map() function in Python.
Current documentation: Shows 2 parameters for map function
Actual implementation: Type checker requires 4 parameters: (ctx, config, index, all_inputs)
Affected documentation: Examples showing map function usage, particularly in the context of invoking external service modules.
Action needed:
- Update all Python map examples to show correct 4-parameter signature
- Add clear documentation of each parameter's purpose
- Ensure consistency across all map-related examples
Reference: Check docs/core/map.md for current parameter documentation.
The documentation shows incorrect parameter count for the
map()function in Python.Current documentation: Shows 2 parameters for map function
Actual implementation: Type checker requires 4 parameters:
(ctx, config, index, all_inputs)Affected documentation: Examples showing map function usage, particularly in the context of invoking external service modules.
Action needed:
Reference: Check
docs/core/map.mdfor current parameter documentation.