999

Results 18 comments of 999

I am sorry, but TransformMessages is not working in group chat. Was it not working all the time or is there a version it works??

@WaelKarkoub I got it. Thanks a lot. I am not sure if it is related but I created this report: https://github.com/microsoft/autogen/issues/2638#issue-2288327906 For me transform works in group chat, but the...

> > Odd: pretty sure all my use cases have been in multi-agent chats with defined transitions between agents, where the tool-executing agent wasn't allowed to speak twice (I think...

Ahhh, now I got it. I am acutaly counting each token twice :) so this would be not my use case, but finaly I understand it. Makes sense. Just an...

There is some misunderstanding. Here are three points to consider: 1) Normally, a raised error would stop the execution. So when developing the app it would be best, as it...

Ok guys :) You don't get me. Ofc, I agree with Davor that we should not add the stack trace to the error message. This is not the point I...

1. I vote for this for sure. 2. Not sure this is needed.

Hey @ekzhu , is there any update on this? Tool debugging is very hard without this feature...

> I am also testing out groq as a replacement for gpt at the moment. I have tested all the different models available with groq and it has resulted in...

Here you go: config_list = [{"model": "llama3-70b-8192", "api_key": "gsk_XXX", "base_url":"https://api.groq.com/openai/v1"}] and later: llm_config = { "temperature": 0, "config_list": config_list, } engineer = autogen.AssistantAgent( name="Engineer", llm_config=llm_config, system_message=""" I'm Engineer. I'm expert...