Skip to content
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

Merged
merged 14 commits into from
Feb 13, 2025

Conversation

keenborder786
Copy link
Contributor

Copy link

vercel bot commented Feb 5, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
langchain ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 9, 2025 11:20pm

@keenborder786 keenborder786 marked this pull request as ready for review February 5, 2025 23:37
@dosubot dosubot bot added size:S This PR changes 10-29 lines, ignoring generated files. community Related to langchain-community labels Feb 5, 2025
from yarl import URL


class JinaSearchAPIWrapper(BaseModel):
"""Wrapper around the Jina search engine."""

jina_api_key: SecretStr
Copy link
Contributor

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

Copy link

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.

serpapi_api_key: Optional[str] = None

Although Bing has a bit of different variable name

@efriis efriis self-assigned this Feb 6, 2025
@@ -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(),
Copy link

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}",

@keenborder786
Copy link
Contributor Author

@efriis fixed

Copy link
Contributor

@efriis efriis left a 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]
Copy link
Contributor

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?

Copy link
Contributor Author

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]

@dosubot dosubot bot added size:M This PR changes 30-99 lines, ignoring generated files. and removed size:S This PR changes 10-29 lines, ignoring generated files. labels Feb 9, 2025
@keenborder786
Copy link
Contributor Author

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

Done

@keenborder786
Copy link
Contributor Author

@efriis

@dosubot dosubot bot added the lgtm PR looks good. Use to confirm that a PR is ready for merging. label Feb 13, 2025
@ccurme ccurme merged commit 96ad09f into langchain-ai:master Feb 13, 2025
21 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
community Related to langchain-community lgtm PR looks good. Use to confirm that a PR is ready for merging. size:M This PR changes 30-99 lines, ignoring generated files.
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

4 participants