Cloud Native 4 min read

Key Takeaways from Guangzhou AI‑Native App Salon: AgentScope, HiMarket, Serverless

The Guangzhou AI‑native application salon gathered over 140 tech professionals to share deep technical insights on AgentScope Java, the HiMarket AI platform, Serverless‑based AgentRun, LoongSuite observability, and RocketMQ‑driven A2A communication, concluding with a hands‑on workshop for building intelligent agents.

Alibaba Cloud Native
Alibaba Cloud Native
Alibaba Cloud Native
Key Takeaways from Guangzhou AI‑Native App Salon: AgentScope, HiMarket, Serverless

Hands‑On Workshop: Building a Financial Stock Expert Agent

Participants used AgentRun together with RocketMQ to implement a "financial stock expert" agent. The workflow consisted of:

Define a stock‑query tool that wraps a third‑party market data API.

Register the tool in the AgentScope runtime.

Deploy the agent as a serverless function on AgentRun.

Configure a RocketMQ LiteTopic for A2A communication between the front‑end chatbot and the back‑end stock agent.

Key commands:

# Create tool implementation (Java)
public class StockTool implements Tool {
    public String call(String ticker) {
        // HTTP request to market data service
        return HttpUtil.get("https://api.example.com/quote?symbol=" + ticker);
    }
}

# Register tool and start agent
Agent agent = new ReActAgent();
agent.addTool(new StockTool());
agent.runAsync();

# RocketMQ producer for user queries
producer.sendMessage("user123", "conv456", "What is the price of AAPL?");

This example demonstrated end‑to‑end integration, real‑time response, and observability via LoongSuite traces.

Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

serverlessAIobservabilityMessagingFramework
Alibaba Cloud Native
Written by

Alibaba Cloud Native

We publish cloud-native tech news, curate in-depth content, host regular events and live streams, and share Alibaba product and user case studies. Join us to explore and share the cloud-native insights you need.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.