-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On Windows, _make_subprocess_transport raise NotImplementedError when running MagenticOneGroupChat #5069
Comments
It looks like a windows platform issue. Could you please post your full output stack trace. Please use
to format your output and code. |
|
Looks like there are two errors:
|
I just copy the code from https://microsoft.github.io/autogen/stable/user-guide/agentchat-user-guide/magentic-one.html Below is the code in that web page:
|
For formatting code please use ` not '. Does llama3.2 support multimodal? This is needed for websurfer |
Asking copilot, yes, it supports multimodal. Yes, Llama 3.2 does support multimodal capabilities. Meta's Llama 3.2 introduces models that can process and understand both text and images. Specifically, the 11B and 90B parameter models are designed for vision-enabled tasks, such as image recognition, document understanding, and image captioning12. |
https://ollama.com/blog/llama3.2 Are you using the 11B and 90B models? |
Yeah, just tried LLama3.2-vision which is 11B model, still have "NotImplementedError"
|
Thanks. I think it's a bug. Cc @afourney @gagb @husseinmozannar For the speaker selection bug. We need to make sure keep selecting the same speaker if there is only one of them. |
Invalid next speaker happens when the orchestrator's inner loop progress ledger receives an invalid completion from the model. When this happens I believe it retries a few times before giving up (I need to check that though -- this detail may not have been ported to AgentChat). Anyhow, we've not done extensive testing with ollama endpoints, and the task is generally pretty tough for weaker models. I suspect this is why that aspect is failing. In this example though, there's only one agent. It's unclear if the M1 Orchestrator is necessary (vs. round robin), but I suppose it benefits from the plan, explicit instruction, and termination check. I will prepare a patch to make speaker selection deterministic in this case. |
I've created a PR to mitigate this issue. Could you let me know if this address the problem for you?#5079 |
What happened?
Can help on below issue? I just copy and paste example but got below error
File "c:\Users\c8b4bd\AppData\Local\miniforge3\envs\autogen\lib\asyncio\base_events.py", line 498, in _make_subprocess_transport
raise NotImplementedError
NotImplementedError
What did you expect to happen?
There should be no error, right?
How can we reproduce it (as minimally and precisely as possible)?
run below code in jupyter notebook
AutoGen version
0.4
Which package was this bug in
Core
Model used
llama3.2
Python version
3.10.16
Operating system
windows
Any additional info you think would be helpful for fixing this bug
No response
The text was updated successfully, but these errors were encountered: