-
I'm not requesting any code; my intention is to obtain the output generated by Autogen. If the output is in text format, I am comfortable saving it in a web-friendly format. However, if the output is in 'dataframe' format, I would prefer to save it as either parquet or .csv files. I am willing to create a function if necessary. I have a great appreciation for Autogen and its capabilities. However, when it comes to real work situations, it becomes essential to merge local datasets in order to derive meaningful insights. Without the ability to converge internal data or extract the data output from agents, progress of the Autogen can be hindered significantly. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
You can take a look at the If you are looking for logging, you can take a look at the logging example: https://github.com/microsoft/autogen/blob/main/notebook/agentchat_logging.ipynb |
Beta Was this translation helpful? Give feedback.
-
@mraguth Would you mind elaborate on the use case and results you are trying to achieve? If you do you feel comfortable discussing it in public, please reach out to [email protected] |
Beta Was this translation helpful? Give feedback.
chat_result = proxy.initiate_chat(assistant, message="...")
You can take a look at the
chat_result
object which contains the output, including messages, summary, and token usage.If you are looking for logging, you can take a look at the logging example: https://github.com/microsoft/autogen/blob/main/notebook/agentchat_logging.ipynb