Victor Dibia
Victor Dibia
Consider upgrading to the new version of AutoGen Studio. This should address the ordering issue above. In the new version of AutoGen, all behaviours are standardized on the AutoGen AgentChat...
@jackgerrits , Any general thoughts here?
Hi @MrEdwards007 , Thanks for the issue > Is there an intended way to embed previous conversation history in each new session? Are there recommended patterns for persisting and restoring...
Got it. A good first step would be to tryout load/save state api At the same time, we can work together on an early implementation in AutoGen Studio (to enable...
How are you installing it e.g., in a new conda environment? If you are looking to use the recent version of autogenstudio, follow the installation instructions here https://github.com/microsoft/autogen/discussions/4208
How are you testing if Docker is running? ``` docker --version docker ps ``` What does the above say? Btw, is the ubuntu running on a windows WSL environment and...
@gilada-shubham , A good place to start troubleshooting this is to first verify if the Groq endpoint you have indeed supports structured_output using the OpenAI library. There is a chance...
Also that they can be combined. E.g. ```python termination = termination = MaxMessageTermination(3) | TextMentionTermination("stop") termination = termination = MaxMessageTermination(3) & TextMentionTermination("stop") ```
I believe this is categorically solved with the [Component Config](https://microsoft.github.io/autogen/dev/user-guide/core-user-guide/framework/component-config.html) interface that has been successfully used across AgentChat and AutoGenStudio so far. Closing for now. If can reopen if needed.
+1 here .. The Core quickstart could be better.