Add disaster response coordination agent (Agent Kernel + Gemini) - #628
Open
Jenitha23 wants to merge 3 commits into
Open
Add disaster response coordination agent (Agent Kernel + Gemini)#628Jenitha23 wants to merge 3 commits into
Jenitha23 wants to merge 3 commits into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Adds a Gemini-powered submission for the IDEALIZE 2026 Agent Kernel mini-competition: a
three-agent Disaster Response & Resource Coordination system (intake → priority/matching →
dedup/dispatch) that parses free-form need/offer messages, scores urgency, matches across
regions with distance/transport awareness, deduplicates, and dispatches a WhatsApp notification.
Type of Change
Related Issues
Fixes #
Relates to #
Changes Made
use-cases/disaster-response-agent/: a 3-agent Agent Kernel pipeline(
intake_agent→priority_matching_agent→dedup_dispatch_agent) built on the OpenAIAgents SDK integration, using Gemini (
gemini-3.1-flash-lite) via LiteLLM's nativeintegration for all LLM calls
and transport compatibility ("no transport" / "can deliver" signals detected from message text)
WhatsApp dispatch notification, with automatic retry/backoff on rate-limited LLM calls
demo.py(canonical CLI entry point) andapi.py(REST API entry point)tests/test_tool_layer.py(32 deterministic unit tests) andtests/test_agent_e2e.py(live conversational test via
agentkernel.test.Test, skipped automatically without aGEMINI_API_KEY), plustest-config.yamlSPEC.mdandREADME.mdcovering the problem, architecture, agent/toolresponsibilities, memory design, SDG alignment, setup (including Windows-specific notes),
and limitations
Testing
Ran
uv run pytestlocally: 32 passed, 3 skipped (the live end-to-end tests, which require aGEMINI_API_KEY). Manually tested the full pipeline viapython demo.pyagainst the realGemini API, including the cross-region/no-transport matching scenario.
Checklist
Screenshots (if applicable)
N/A
Additional Notes
Built for the IDEALIZE 2026 mini-competition (AIESEC in University of Moratuwa / Yaala Labs).
Addresses SDG 11 (Sustainable Cities and Communities) and SDG 13 (Climate Action).