-
Notifications
You must be signed in to change notification settings - Fork 17k
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
(Community): Added API Key for Jina Search API Wrapper #29622
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
from yarl import URL | ||
|
||
|
||
class JinaSearchAPIWrapper(BaseModel): | ||
"""Wrapper around the Jina search engine.""" | ||
|
||
jina_api_key: SecretStr |
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 we make just api_key
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.
I do think it's fine.
tavily_api_key: SecretStr |
serpapi_api_key: Optional[str] = None |
ydc_api_key: str, optional |
Although Bing has a bit of different variable name
bing_subscription_key: str |
@@ -59,6 +75,7 @@ def download_documents(self, query: str) -> List[Document]: | |||
def _search_request(self, query: str) -> List[dict]: | |||
headers = { | |||
"Accept": "application/json", | |||
"Authorization": self.jina_api_key.get_secret_value(), |
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.
I think this needs to be like this
"Authorization": f"Bearer {self.jina_api_key.get_secret_value()}",
Like in other files as well. Maybe Tavily just have different format of payload.
"Authorization": f"Bearer {self.edenai_api_key}", |
@efriis fixed |
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.
thanks! could you
- update the jina search docs to show how to pass in api key via a custom api wrapper object (or update PR to allow passing into tool, and creating with it)
- write a unit test confirming jina search tool can be instantiated with an api key
@@ -30,7 +30,7 @@ class JinaSearch(BaseTool): # type: ignore[override] | |||
"each in clean, LLM-friendly text. This way, you can always keep your LLM " | |||
"up-to-date, improve its factuality, and reduce hallucinations." | |||
) | |||
search_wrapper: JinaSearchAPIWrapper = Field(default_factory=JinaSearchAPIWrapper) | |||
search_wrapper: JinaSearchAPIWrapper = Field(default_factory=JinaSearchAPIWrapper) # type: ignore[arg-type] |
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 adding this necessary?
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.
Argument "default_factory" to "Field" has incompatible type "type[JinaSearchAPIWrapper]"; expected "Union[Callable[[], Never],
I kept getting above error and also noticed:
TavilySearchResults
is also excluding this from the linter:
api_wrapper: TavilySearchAPIWrapper = Field(default_factory=TavilySearchAPIWrapper) # type: ignore[arg-type]
Done |
Authorization
header #29596