November 11, 2025
James West Alumni Center, UCLA
1st Prize
Internship Opportunity
2nd Prize
Internship Opportunity
3rd Prize
Internship Opportunity
Fetch.ai is your gateway to the agentic economy. It provides a full ecosystem for building, deploying, and discovering AI Agents.
Pillars of the Fetch.ai Ecosystem
AI Agents are autonomous pieces of software that can understand goals, make decisions, and take actions on behalf of users.
Challenge statement
The ability to precisely predict the structure of molecules is central to fields like chemistry, materials science, and drug discovery. While classical computation struggles with the exponential complexity of large quantum systems, quantum computers offer a path forward.
The recent paper, "Quantum computation of molecular geometry via many-body nuclear spin echoes," demonstrated a breakthrough by using the Willow superconducting quantum computer in a hybrid approach to determine molecular geometry.
i. The Research Question: The researchers' goal was to find the precise atomic distances (geometry) of molecules like toluene and 3',5'-dimethylbiphenyl (DMBP). ii. The Method: Instead of directly solving for the geometry, they simulated the complex Out-of-Time-Ordered Correlator (OTOC) dynamics of the molecule's nuclear spins. iii. The Hybrid Approach: They used a classical-quantum feedback loop where the quantum computer ran a Trotterized simulation of the spin Hamiltonian (encoded with a candidate geometry), and a classical optimizer adjusted the geometry until the simulated results matched experimental data.
The Hackathon Challenge: Your task is to implement a downscaled version of this core problem—molecular geometry optimization—using the Variational Quantum Eigensolver (VQE) algorithm and the Qiskit Nature toolkit. You will find the stable bond length of simple molecules by minimizing their ground state energy.
The Variational Quantum Eigensolver (VQE) is a hybrid quantum-classical algorithm used to find the ground state energy of a molecular Hamiltonian. By performing VQE at various bond lengths, you can map the molecule’s Potential Energy Surface (PES) and find the equilibrium bond length where the energy is minimized.
The simplest molecule, $H_2$, allows for rapid iteration and testing on simulators or real quantum hardware (using just 2-4 qubits).
For teams that successfully and efficiently complete the $H_2$ challenge, the next level is to tackle a slightly more complex system that requires a larger number of qubits and features a more complex geometry.
The trihydrogen cation ($H_3^+$) is a 3-atom molecule and the most abundant molecular ion in the universe. Its ground state geometry is an equilateral triangle.
Bonus Error Mitigation: Implement error mitigation techniques like Zero Noise Extrapolation on simulated noisy backends (using Aer noise models)
i. Quantum SDK: Qiskit (specifically qiskit-nature) or any other preferred Python-based SDK. ii. Backend: Qiskit Aer simulators or any other preferred quantum simulator. iii. Classical Driver: PySCF (integrated via Qiskit Nature) or any other preferred.
Examples to get you started:
Quick start example
This file can be run on any platform supporting Python, with the necessary install permissions. This example shows two agents communicating with each other using the uAgent python library.
Try it out on Agentverse ↗
from datetime import datetime
from uuid import uuid4
from uagents.setup import fund_agent_if_low
from uagents_core.contrib.protocols.chat import (
ChatAcknowledgement,
ChatMessage,
EndSessionContent,
StartSessionContent,
TextContent,
chat_protocol_spec,
)
agent = Agent()
# Initialize the chat protocol with the standard chat spec
chat_proto = Protocol(spec=chat_protocol_spec)
# Utility function to wrap plain text into a ChatMessage
def create_text_chat(text: str, end_session: bool = False) -> ChatMessage:
content = [TextContent(type="text", text=text)]
return ChatMessage(
timestamp=datetime.utcnow(),
msg_id=uuid4(),
content=content,
)
# Handle incoming chat messages
@chat_proto.on_message(ChatMessage)
async def handle_message(ctx: Context, sender: str, msg: ChatMessage):
ctx.logger.info(f"Received message from {sender}")
# Always send back an acknowledgement when a message is received
await ctx.send(sender, ChatAcknowledgement(timestamp=datetime.utcnow(), acknowledged_msg_id=msg.msg_id))
# Process each content item inside the chat message
for item in msg.content:
# Marks the start of a chat session
if isinstance(item, StartSessionContent):
ctx.logger.info(f"Session started with {sender}")
# Handles plain text messages (from another agent or ASI:One)
elif isinstance(item, TextContent):
ctx.logger.info(f"Text message from {sender}: {item.text}")
#Add your logic
# Example: respond with a message describing the result of a completed task
response_message = create_text_chat("Hello from Agent")
await ctx.send(sender, response_message)
# Marks the end of a chat session
elif isinstance(item, EndSessionContent):
ctx.logger.info(f"Session ended with {sender}")
# Catches anything unexpected
else:
ctx.logger.info(f"Received unexpected content type from {sender}")
# Handle acknowledgements for messages this agent has sent out
@chat_proto.on_message(ChatAcknowledgement)
async def handle_acknowledgement(ctx: Context, sender: str, msg: ChatAcknowledgement):
ctx.logger.info(f"Received acknowledgement from {sender} for message {msg.acknowledged_msg_id}")
# Include the chat protocol and publish the manifest to Agentverse
agent.include(chat_proto, publish_manifest=True)
if __name__ == "__main__":
agent.run()
Agentverse MCP Server
Learn how to deploy your first agent on Agentverse with Claude Desktop in Under 5 Minutes
Agentverse MCP (Full Server)
Client connection URL: https://mcp.agentverse.ai/sse
Agentverse MCP-Lite
Client connection URL: https://mcp-lite.agentverse.ai/mcp




Tool Stack
Judging Criteria
Judges

Attila Bagoly
Chief AI Officer

Sana Wajid
Chief Development Officer - Fetch.ai
Senior Vice President - Innovation Lab
Mentors

Karen Mosoyan
Intern

Ryan Tran
Intern
10:00 PST
Fetch.ai Challenge Talk
James West Alumni Center, UCLA
11:00 PST
Fetch.ai Challenge Work Session
James West Alumni Center, UCLA