5 lines
187 B
Python
5 lines
187 B
Python
class LlmClient:
|
|
def evaluate_module(self, module_design: str, module_code: str) -> float:
|
|
"""Stub: returns 0.0. Real implementation would call LLM API."""
|
|
return 0.0
|