langchain_community.utilities.google_lens.GoogleLensAPIWrapper

class langchain_community.utilities.google_lens.GoogleLensAPIWrapper[源代码]

继承自: BaseModel

SERPApi的Google Lens API的封装器

您可以通过在以下网址注册来创建SerpApi.com密钥:[https://serpapi.com/users/sign_up](https://serpapi.com/users/sign_up)。

该封装器使用了SerpApi.com Python包:[https://serpapi.com/integrations/python](https://serpapi.com/integrations/python)

使用时,您应设置环境变量SERPAPI_API_KEY,使用您的API密钥,或者将serp_api_key作为构造函数的命名参数传递。

示例

from langchain_community.utilities import GoogleLensAPIWrapper google_lens = GoogleLensAPIWrapper() google_lens.run(‘langchain’)

通过解析和验证关键字参数的输入数据创建新的模型。

如果输入数据无法解析为有效的模型,将引发ValidationError。

参数serp_api_key: Optional[SecretStr] = None
约束
  • 类型 = 字符串

  • writeOnly = True

  • 格式 = 密码

参数serp_search_engine : Any = None
run(query: str) str[源代码]

通过Serpapi使用Google Trends运行查询

参数

querystr) -

返回类型

str

使用GoogleLensAPIWrapper的示例