Source code for agentopera.router.workers.custom_flow_agent

from agentopera.zerocode import BaseFlowAgent

[docs] class PaperFlowAgent(BaseFlowAgent): """A specific flow agent for academic paper search functionality.""" def __init__(self, name: str, custom_url: str): meta_info = "Handles academic paper searches and returns structured results with citations" super().__init__(name, custom_url, meta_info)
[docs] class FinanceAnalysisFlowAgent(BaseFlowAgent): """A specific flow agent for finance analysis.""" def __init__(self, name: str, custom_url: str): meta_info = "Handless finance analysis especially the stock investment and returns structured results" super().__init__(name, custom_url, meta_info)