Test web search plugin module
()
| 88 | |
| 89 | |
| 90 | def test_web_search_plugin(): |
| 91 | """Test web search plugin module""" |
| 92 | import optillm.plugins.web_search_plugin as plugin |
| 93 | assert hasattr(plugin, 'run') |
| 94 | assert hasattr(plugin, 'SLUG') |
| 95 | assert hasattr(plugin, 'GoogleSearcher') |
| 96 | assert hasattr(plugin, 'extract_search_queries') |
| 97 | assert plugin.SLUG == "web_search" |
| 98 | |
| 99 | |
| 100 | def test_deep_research_plugin(): |