Spaces:
Running
Running
File size: 229 Bytes
0a40afa |
1 2 3 4 5 6 7 |
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}" |