Test majority voting plugin module
()
| 78 | |
| 79 | |
| 80 | def test_majority_voting_plugin(): |
| 81 | """Test majority voting plugin module""" |
| 82 | import optillm.plugins.majority_voting_plugin as plugin |
| 83 | assert hasattr(plugin, 'run') |
| 84 | assert hasattr(plugin, 'SLUG') |
| 85 | assert hasattr(plugin, 'extract_final_answer') |
| 86 | assert hasattr(plugin, 'normalize_response') |
| 87 | assert plugin.SLUG == "majority_voting" |
| 88 | |
| 89 | |
| 90 | def test_web_search_plugin(): |