It seems that the concept of disabling introspection when sending parameters to a subflow in Prefect isn't directly addressed in the available documentation or common gotchas. Prefect 3.x automatically handles parameter introspection and type conversion using type hints and Pydantic models when you define parameters for your flows.
To ensure that you have control over parameter handling, you might consider defining explicit type hints and using Pydantic models for your parameters. This will allow you to manage the types and conversions explicitly.
For more detailed insights, you can explore the Prefect documentation on
writing flows.
If you have a specific use case or issue, providing more details might help in tailoring a more precise solution.