惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

量子位
D
Docker
月光博客
月光博客
MongoDB | Blog
MongoDB | Blog
Vercel News
Vercel News
美团技术团队
博客园 - 叶小钗
I
InfoQ
Jina AI
Jina AI
博客园 - 司徒正美
雷峰网
雷峰网
B
Blog
Y
Y Combinator Blog
A
About on SuperTechFans
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
大猫的无限游戏
大猫的无限游戏
Microsoft Security Blog
Microsoft Security Blog
Stack Overflow Blog
Stack Overflow Blog
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Recent Announcements
Recent Announcements
V
V2EX
N
Netflix TechBlog - Medium

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
🌍 GeoHazard AI — Building a Multi-Agent Geological & Clim...
Muhammad Yas · 2026-05-14 · via DEV Community

This post is my submission for "DEV Education Track: Build Multi-Agent Systems with ADK" (https://dev.to/deved/build-multi-agent-systems).


🌍 GeoHazard AI — Building a Multi-Agent Geological & Climate Risk System with Google ADK


What I Built

Geological hazards such as landslides are rarely caused by a single factor.
They emerge from interaction between terrain conditions and climate dynamics.

In this project, I built an educational Multi-Agent AI system using Google Agent Development Kit (ADK) that mirrors how real scientists collaborate.

Instead of using one large AI model, the system separates expertise into independent agents:

  • A Hazard Agent that evaluates geological instability
  • A Climate Agent that analyzes environmental forcing
  • A combined GeoHazard reasoning workflow

The goal was to demonstrate how multi-agent architecture improves scientific reasoning, transparency, and modular AI design.

This project serves as a learning example for students, developers, and researchers interested in:

✅ Multi-Agent Systems
✅ Scientific AI workflows
✅ Climate & Earth Science applications
✅ Agent specialization using ADK


Cloud Run Embed

⚠️ Deployment Note

The agents were successfully executed during development using Google ADK.
Later, access to the original cloud execution environment became restricted due to project permission and billing limitations.
(Project Name: Geohazard Agents

Project number: 322609188016

Project ID: geohazard-agents

Dashboard
Cloud Hub
https://console.cloud.google.com/welcome?project=geohazard-agents)

Since this submission focuses on the Educational Track, the project is presented as a reproducible learning system rather than a live deployment.

Readers can deploy the system themselves by:

  1. Creating a Google Cloud Project
  2. Enabling Vertex AI
  3. Installing Google ADK
  4. Running the agent scripts provided below

This approach emphasizes learning and architecture understanding rather than infrastructure setup.


Your Agents

🪨 Hazard Agent — Geological Specialist

Role:
Evaluates terrain instability and landslide susceptibility.

Responsibilities

  • Analyze slope conditions
  • Identify terrain risk factors
  • Classify hazard level

Design Principle

The agent is intentionally restricted:

«It does NOT analyze climate data.»

This teaches role separation, a core concept in Multi-Agent Systems.

Example tool logic:

@hazard_agent.tool
def landslide_tool(slope: float, rainfall: float):
if slope > 30 and rainfall > 100:
return "High Landslide Risk"
return "Moderate Risk"


🌦️ Climate Agent — Environmental Analyst

Role:
Studies climate influence on hazard amplification.

Responsibilities

  • Evaluate rainfall intensity
  • Assess temperature anomalies
  • Identify environmental stress factors

Design Principle

The climate agent avoids geological interpretation, ensuring:

✅ cleaner reasoning
✅ modular upgrades
✅ independent agent learning


🌐 GeoHazard Reasoning (Multi-Agent Collaboration)

The system demonstrates how agents collaborate:

  1. Hazard Agent evaluates terrain
  2. Climate Agent analyzes environmental forcing
  3. Combined reasoning produces final hazard understanding

This mirrors real interdisciplinary scientific workflows.


🔁 Workflow Overview

Environmental Inputs:

  • Slope angle
  • Rainfall conditions
  • Climate anomalies

Processing Flow:

Environmental Data

Hazard Agent → Geological Risk

Climate Agent → Climate Influence

Integrated GeoHazard Assessment

Example Educational Output:

Hazard Level: High
Climate Risk: Elevated
Integrated GeoHazard Risk: High
Recommended Action: Monitoring and mitigation planning required.


Key Learnings

🧠 1. Multi-Agent AI Thinks Like Scientists

Real experts specialize.

Separating AI agents dramatically improved reasoning clarity compared to a single model handling everything.


⚙️ 2. Constraints Improve Intelligence

Limiting agents to defined responsibilities prevented hallucinated conclusions and produced more structured outputs.


🌍 3. AI for Scientific Discovery Is Practical

Multi-agent systems can assist:

  • Landslide early warning
  • Climate risk assessment
  • Infrastructure planning
  • Environmental decision support

🚧 4. Biggest Challenge

The most challenging aspect was understanding how to coordinate agents instead of scaling a single prompt.

This project shifted my perspective from:

«Prompt Engineering → System Engineering»


🎓 Educational Value

This project demonstrates that building intelligent systems is not only about powerful models — it is about designing collaborating AI experts.

Students following this tutorial learn:

  • Agent architecture design
  • Role specialization
  • Scientific reasoning workflows
  • Practical use of Google ADK

👨‍🔬 Author Background

I am a Geologist exploring how Artificial Intelligence can support Earth science research, climate resilience, and geohazard assessment through collaborative AI systems.


🚀 Future Extensions

Possible expansions include:

  • Remote sensing agent
  • Seismic monitoring agent
  • Satellite data integration
  • Urban vulnerability analysis
  • Climate adaptation advisor

⭐ Thank you for reading.