How to set the value of the `workflow_input` field When accessing a FastAPI app created by Workflow

I created a FastAPI app based on Workflow using the following code.

workflow = TargetInfoRetriever()
workflow.workflow_id = "target_info_retriever"

fastapi_app = FastAPIApp(
    workflows=[workflow],
    name="Target Info Retriever",
    app_id="target_info_retriever",
    description="A target info retriever agent that can retriever the relevant data about your input.",
)

app = fastapi_app.get_app()

if __name__ == '__main__':

    fastapi_app.serve(app="main:app", port=8001, reload=True)

When I use Postman to test the API interface, it keeps showing the following error.

So how can I set the value of the workflow_input field When accessing a FastAPI app created by Workflow

Hi @dimRgs, thanks for reaching out and supporting Agno. I’ve shared this with the team, we’re working through all requests one by one and will get back to you soon.
If it’s urgent, please let us know. We appreciate your patience!

Hey @dimRgs, this was a bug on our side handling that workflow_input field! I already worked on a fix and we will release it as soon as possible.

Thanks for the patience and for using Agno! :folded_hands: