-
Notifications
You must be signed in to change notification settings - Fork 7k
Added DuckDuckGo Search Agent in AutoGen Extensions #6682
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
base: main
Are you sure you want to change the base?
Conversation
@microsoft-github-policy-service agree |
**kwargs: Additional keyword arguments passed to the parent AssistantAgent | ||
""" | ||
if description is None: | ||
description = "A research assistant that uses DuckDuckGo to find and analyze information from the web." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use class variables instead of hide the prompts in the constructor.
an API key. It can optionally fetch and convert webpage content to markdown format. | ||
|
||
Example: | ||
```python |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you use RST code blocks? See examples from other API doc strings.
The doc string must pass Pyright lint check. You can create a script in a separate file first, then, use pyright to check the script. Once there is no error, copy and paste the script back to the API doc.
Why are these changes needed?
Adds a specialized AutoGen agent that uses DuckDuckGo for web searches, providing privacy-focused search capabilities without requiring API keys.
Related issue number
Checks