doctorecord / src /agents /query_generator.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 QueryGenerator(BaseAgent):
def execute(self, ctx: Dict[str, Any]):
field = ctx.get("current_field")
return f"Follow‑up query for {field}"