Test deep research plugin module
()
| 98 | |
| 99 | |
| 100 | def test_deep_research_plugin(): |
| 101 | """Test deep research plugin module""" |
| 102 | import optillm.plugins.deep_research_plugin as plugin |
| 103 | assert hasattr(plugin, 'run') |
| 104 | assert hasattr(plugin, 'SLUG') |
| 105 | assert hasattr(plugin, 'DeepResearcher') |
| 106 | assert plugin.SLUG == "deep_research" |
| 107 | |
| 108 | |
| 109 | def test_deepthink_plugin_imports(): |