Spaces:
Sleeping
Sleeping
File size: 190 Bytes
0a40afa |
1 2 3 4 5 6 |
from typing import Dict, Any
from .base_agent import BaseAgent
class ConfidenceScorer(BaseAgent):
def execute(self, ctx: Dict[str, Any]):
return 1.0 # always confident for stub |