You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Specifically, wrap all types of tool definitions with the name and example calls. Additionally, use the right I/O schema to ensure that the annotations on the tool are accurate.
For example:
input_schema: Any = create_model(resource.input_schema)
output_schema: Any = create_model({}) # to-fix
@mockable(name=resource.name, example_calls=resource.mockable)
async def integration(input: input_schema) -> output_schema:
This is required for the mocking to work with lowcode agents as expected.