Files
langchain-python/langchain/utilities
Chakib Benziane ddd518a161 searx_search: updated tools and doc (#6276)
- Allows using the  same wrapper to create multiple tools
```python
wrapper = SearxSearchWrapper(searx_host="**")
github_tool = SearxSearchResults(name="Github",
                            wrapper=wrapper,
                            kwargs = {
                                "engines": ["github"],
                                })

arxiv_tool = SearxSearchResults(name="Arxiv",
                            wrapper=wrapper,
                            kwargs = {
                                "engines": ["arxiv"]
                                })
```

- Updated link to searx documentation

  Agents / Tools / Toolkits
  - @hwchase17
2023-06-18 17:23:12 -07:00
..
2023-06-18 16:55:18 -07:00
2023-03-30 20:58:14 -07:00
2023-04-27 11:39:01 -07:00
2023-01-28 08:06:00 -08:00
2023-06-01 01:11:51 -07:00
2023-05-19 15:27:50 -07:00
2023-06-01 00:54:42 -07:00
2023-06-03 16:25:28 -07:00
2023-05-19 13:57:16 -07:00
2023-05-01 19:07:26 -07:00
2023-05-25 19:19:22 -07:00
2023-02-24 07:13:47 -08:00