Error1 reports
Fix UnsupportedParamsError
in AutoGen
✅ Solution
The "UnsupportedParamsError" in autogen usually occurs when the `config_list` provided to an agent contains parameters unsupported by the chosen language model or its API endpoint. To fix this, ensure your `config_list` only includes valid parameters for your LLM (like `model`, `temperature`, `max_tokens` etc.) and that you're not passing fields meant for function calling (like `tools`) when they aren't supported, or when no tools are provided for models that expect them. Refer to the LLM's API documentation and the autogen documentation for supported parameters and proper tool configuration.
Related Issues
Real GitHub issues where developers encountered this error:
Timeline
First reported:Apr 17, 2025
Last reported:Apr 17, 2025