├── .env.example ├── .gitignore ├── README.md ├── agents ├── __init__.py ├── async_reddit_scout │ ├── __init__.py │ └── agent.py ├── coordinator │ ├── __init__.py │ └── agent.py ├── reddit_scout │ ├── __init__.py │ └── agent.py ├── speaker │ ├── .well-known │ │ └── agent.json │ ├── __init__.py │ ├── __main__.py │ ├── agent.py │ └── task_manager.py └── summarizer │ ├── __init__.py │ └── agent.py ├── apps ├── README.md ├── a2a_speaker_app.py └── speaker_app.py ├── common ├── __init__.py ├── a2a_client.py └── a2a_server.py ├── lessons ├── lesson1.md ├── lesson2.md ├── lesson3.md └── lesson4.md ├── requirements.txt └── scripts └── tests └── speaker ├── README.md ├── test_a2a_extract_audio.sh └── test_extract_audio.sh /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/README.md -------------------------------------------------------------------------------- /agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/agents/__init__.py -------------------------------------------------------------------------------- /agents/async_reddit_scout/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/agents/async_reddit_scout/__init__.py -------------------------------------------------------------------------------- /agents/async_reddit_scout/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/agents/async_reddit_scout/agent.py -------------------------------------------------------------------------------- /agents/coordinator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/agents/coordinator/__init__.py -------------------------------------------------------------------------------- /agents/coordinator/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/agents/coordinator/agent.py -------------------------------------------------------------------------------- /agents/reddit_scout/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/agents/reddit_scout/__init__.py -------------------------------------------------------------------------------- /agents/reddit_scout/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/agents/reddit_scout/agent.py -------------------------------------------------------------------------------- /agents/speaker/.well-known/agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/agents/speaker/.well-known/agent.json -------------------------------------------------------------------------------- /agents/speaker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/agents/speaker/__init__.py -------------------------------------------------------------------------------- /agents/speaker/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/agents/speaker/__main__.py -------------------------------------------------------------------------------- /agents/speaker/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/agents/speaker/agent.py -------------------------------------------------------------------------------- /agents/speaker/task_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/agents/speaker/task_manager.py -------------------------------------------------------------------------------- /agents/summarizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/agents/summarizer/__init__.py -------------------------------------------------------------------------------- /agents/summarizer/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/agents/summarizer/agent.py -------------------------------------------------------------------------------- /apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/apps/README.md -------------------------------------------------------------------------------- /apps/a2a_speaker_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/apps/a2a_speaker_app.py -------------------------------------------------------------------------------- /apps/speaker_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/apps/speaker_app.py -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/common/__init__.py -------------------------------------------------------------------------------- /common/a2a_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/common/a2a_client.py -------------------------------------------------------------------------------- /common/a2a_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/common/a2a_server.py -------------------------------------------------------------------------------- /lessons/lesson1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/lessons/lesson1.md -------------------------------------------------------------------------------- /lessons/lesson2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/lessons/lesson2.md -------------------------------------------------------------------------------- /lessons/lesson3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/lessons/lesson3.md -------------------------------------------------------------------------------- /lessons/lesson4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/lessons/lesson4.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/tests/speaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/scripts/tests/speaker/README.md -------------------------------------------------------------------------------- /scripts/tests/speaker/test_a2a_extract_audio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/scripts/tests/speaker/test_a2a_extract_audio.sh -------------------------------------------------------------------------------- /scripts/tests/speaker/test_extract_audio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongdashu/adk-made-simple/HEAD/scripts/tests/speaker/test_extract_audio.sh --------------------------------------------------------------------------------