mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 23:09:35 +00:00
8 agents + 4 models + 4 configs + CLI dry-run + 3 docs. Tested on agency/real_estate/clinic/saas — all pass. Safety: LinkedIn scraping PROHIBITED, WhatsApp blast PROHIBITED. https://claude.ai/code/session_01W1rJthWDkasijTdXCfxVHs
10 lines
193 B
Python
10 lines
193 B
Python
from abc import ABC, abstractmethod
|
|
|
|
class BaseAgent(ABC):
|
|
name: str = "base"
|
|
description: str = ""
|
|
|
|
@abstractmethod
|
|
async def run(self, input_data: dict) -> dict:
|
|
pass
|