doctorecord / src /agents /confidence_scorer.py
levalencia's picture
Update Dockerfile to use new app entry point and enhance requirements.txt with additional dependencies. Remove obsolete streamlit_app.py file.
0a40afa
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