-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1172535
commit d9433d3
Showing
18 changed files
with
84 additions
and
3,981 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,5 @@ | ||
from .google.google import GoogleProvider | ||
from .openai.openai import OpenAIProvider | ||
from .azureopenai.azureopenai import AzureOpenAIProvider | ||
from .groq.groq import GroqProvider | ||
from .ollama.ollama import OllamaProvider | ||
from .together.together import TogetherProvider | ||
from .anthropic.anthropic import AnthropicProvider | ||
from .mistral.mistral import MistralProvider | ||
from .huggingface.huggingface import HuggingFaceProvider | ||
from .unify.unify import UnifyProvider | ||
from .generic import GenericLLMProvider | ||
|
||
__all__ = [ | ||
"GoogleProvider", | ||
"OpenAIProvider", | ||
"AzureOpenAIProvider", | ||
"OllamaProvider", | ||
"GroqProvider", | ||
"TogetherProvider", | ||
"AnthropicProvider", | ||
"MistralProvider", | ||
"HuggingFaceProvider", | ||
"UnifyProvider", | ||
"GenericLLMProvider", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import importlib.util | ||
|
||
|
||
def check_pkg(pkg: str) -> None: | ||
if not importlib.util.find_spec(pkg): | ||
pkg_kebab = pkg.replace("_", "-") | ||
raise ImportError( | ||
f"Unable to import {pkg_kebab}. Please install with " | ||
f"`pip install -U {pkg_kebab}`" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
langgraph | ||
gpt_researcher | ||
langchain-community | ||
langgraph-cli | ||
python-dotenv | ||
weasyprint | ||
|
Oops, something went wrong.
d9433d3
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.
why was duckduckgo search removed?
d9433d3
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.
@alarichartsock why removed? It's still supported, just you'd need to install it manually with pip. We've removed all dependencies to make gpt researcher more lightweight. check out the details here: https://docs.gptr.dev/docs/gpt-researcher/search-engines/retrievers