Devika is an Agentic AI Software Engineer that can understand high-level human instructions, break them down into steps, research relevant information, and write code to achieve the given objective. Devika aims to be a competitive open-source alternative to Devin by Cognition AI.
MIT License
18.49k
stars
2.4k
forks
source link
Fix: Issue #599, DuckDuckGo Search Module Not Found #600
It is a minor fix for a bug that mentioned in #599,
A module(curl_cffi) was missing from requirements.txt which is required to make the DuckDuckGo Search work , due to which agent would randomly stop while working on a problem that required internet search (when search engine was set to DuckDuckGo)
Changes ->
[x] Added missing module to requirements.txt
Explain what existing problem does the pull request solve?
Fixing the issue of agent (with DuckDuckGo as search engine) stopping randomly when it starts browsing the web without the curl_cffi module.
Test plan (required)
Running Agent with DuckDuckGo as Search Engine works after this change of requirements.txt
Description
It is a minor fix for a bug that mentioned in #599, A module(
curl_cffi
) was missing from requirements.txt which is required to make the DuckDuckGo Search work , due to which agent would randomly stop while working on a problem that required internet search (when search engine was set to DuckDuckGo)Changes ->
Explain what existing problem does the pull request solve?
with DuckDuckGo as search engine
) stopping randomly when it starts browsing the web without thecurl_cffi
module.Test plan (required)
requirements.txt
Fixes #599