Open duongthaiha opened 7 months ago
For me this would be of great utility too, before migrating to Azure AI Studio in our project we were using Instructor package that uses pydantic for validate the outputs and was an almost perfect solution. I would be willing to contribute to make an enhancement feature.
@duongthaiha, Thanks for the feedback, I want to confirm that do you just want to pass a customized object inside a flow (from a node to another node)? If that's the case you can refer to Function based flow — Prompt flow documentation, with this type of flow you can pass any object inside a flow, actually there is no concept of node anymore, no dag either.
If you still want to use dag flow and return a customized object for a node (or flow output) just like your sample code, then we need a comprehensive design for this feature, it could be a long-term task to implement this feature.
@ferBV,
Thanks for your comments, really appreciate it. Could you please provide a more detailed design for this work? Maybe a doc or something? We would love it if community can contribute to prompt flow project.
@0mza987 Yes it was the idea please. It will be a great feature as it will extend so much more use cases please
Hi @duongthaiha , thanks for the feedback, our team does not have the bandwidth now, I'll mark this as a long-term item and will pick it up once we have the bandwidth. Thanks.
Is your feature request related to a problem? Please describe. I want to return an class as output for the python tool however it shows error JSON dump failed: For example for the following code: it will return an error
Describe the solution you'd like Allow option to inject how to serialise an complex object
Describe alternatives you've considered My current work around is to manually use jsonoutput = json.dumps(thought_steps, default=lambda o: o.dict) inside the pythong tool and return a string instead
Additional context Happy to connect to explain in more detail if it helps