Tagged articles
84 articles
Page 1 of 1
Su San Talks Tech
Su San Talks Tech
May 18, 2026 · Artificial Intelligence

How to Guarantee Reliable Function Calling in LLM Agents

The article breaks down the reliability challenges of LLM Function Calling, categorizes five failure modes, and presents concrete engineering safeguards such as precise schema design, tool description, constraint enforcement, few‑shot calibration, structured output, validation‑feedback loops, monitoring, and risk‑aware trade‑offs.

Function CallingJSON SchemaLLM
0 likes · 17 min read
How to Guarantee Reliable Function Calling in LLM Agents
AI Illustrated Series
AI Illustrated Series
Apr 25, 2026 · Artificial Intelligence

From "Can Talk" to "Can Act": Deep Dive into Function Calling for AI Agents

The article explains how Function Calling enables large language model agents to overcome knowledge staleness and hallucination by invoking external tools—such as search, email, code execution, and databases—to fetch real‑time data, perform actions, and deliver verifiable, multi‑step responses.

AI agentsFunction CallingLLM
0 likes · 25 min read
From "Can Talk" to "Can Act": Deep Dive into Function Calling for AI Agents
Architects' Tech Alliance
Architects' Tech Alliance
Apr 25, 2026 · Artificial Intelligence

How Domestic Claw Platforms Are Winning the AI Agent Entry Battle

The article analyzes OpenClaw’s shift from GUI to API, its continuous workflow capabilities, the competition for high‑frequency user scenarios, the prospect of per‑device Claw instances, data‑context security concerns, and the potential fragmentation of SaaS software in the emerging AI agent market.

AI AgentAPIChina
0 likes · 12 min read
How Domestic Claw Platforms Are Winning the AI Agent Entry Battle
CodeTrend
CodeTrend
Apr 24, 2026 · Artificial Intelligence

How Large Language Models Acquire Tool‑Calling Ability: SFT, RLHF & LoRA Explained

The article explains why pretrained LLMs cannot call tools, then breaks down the three‑stage training pipeline—Supervised Fine‑Tuning, Reinforcement Learning from Human Feedback, and knowledge distillation—showing how each step teaches models to read tool schemas, decide when to invoke a tool, generate JSON calls, and finally transfer the capability to smaller models with LoRA.

AI trainingFunction CallingLLM
0 likes · 19 min read
How Large Language Models Acquire Tool‑Calling Ability: SFT, RLHF & LoRA Explained
Architect
Architect
Apr 20, 2026 · Artificial Intelligence

Why a Tiny Agent Loop Exposes the Real Engineering Hurdles of AI Agents

The article walks through building a minimal 20‑line agent loop, explains each step—from reading a task to invoking tools and feeding observations back—then shows how real systems like Claude Code, OpenClaw and Pi add layers of harness, memory, permission and validation to make the loop safe and reliable in production.

AI AgentAgent LoopFunction Calling
0 likes · 23 min read
Why a Tiny Agent Loop Exposes the Real Engineering Hurdles of AI Agents
AI Engineer Programming
AI Engineer Programming
Apr 15, 2026 · Artificial Intelligence

Elephant Alpha: Free 100B‑Parameter Instant Model with 256K Context on OpenRouter

OpenRouter quietly launched Elephant Alpha, a free 100B‑parameter LLM with a 256K token window, positioned as an "instant model" that prioritises token efficiency and speed, supports function calling and prompt caching, and is compared against other Animal‑series models while community speculation surrounds its origin.

256K contextElephant AlphaFunction Calling
0 likes · 6 min read
Elephant Alpha: Free 100B‑Parameter Instant Model with 256K Context on OpenRouter
James' Growth Diary
James' Growth Diary
Apr 12, 2026 · Artificial Intelligence

MCP Protocol Explained: Why It’s the Next Standard for AI Tool Calls

The article dissects the Model Context Protocol (MCP), showing how it transforms the M×N integration explosion into a linear M+N model, details its four-component architecture, compares it with traditional Function Calling, provides a TypeScript server example, and outlines emerging ecosystem and security considerations.

AI tool integrationFunction CallingJSON-RPC
0 likes · 17 min read
MCP Protocol Explained: Why It’s the Next Standard for AI Tool Calls
James' Growth Diary
James' Growth Diary
Apr 11, 2026 · Artificial Intelligence

Deep Dive into Tools: Function Calling Mechanics and LangChain Toolchain Design

This article explains how LLMs use Function Calling to output structured JSON for tool execution, walks through the full multi‑turn tool call loop, shows how LangChain standardizes disparate vendor APIs with BaseTool and bind_tools, and shares practical pitfalls, best‑practice guidelines, and security considerations for building robust agents.

AgentFunction CallingLLM
0 likes · 16 min read
Deep Dive into Tools: Function Calling Mechanics and LangChain Toolchain Design
Ray's Galactic Tech
Ray's Galactic Tech
Apr 10, 2026 · Backend Development

Building a Production‑Ready Go Function Calling Server: Architecture, Design, and Best Practices

This article explains why Function Calling requires a robust server‑side architecture, walks through a real e‑commerce use case, details the Go‑based protocol, modular design, concurrency handling, security, observability, deployment strategies, testing approaches, and a step‑by‑step roadmap for turning a demo into a production‑grade system.

Backend ArchitectureDeploymentFunction Calling
0 likes · 37 min read
Building a Production‑Ready Go Function Calling Server: Architecture, Design, and Best Practices
James' Growth Diary
James' Growth Diary
Apr 7, 2026 · Artificial Intelligence

Parser vs withStructuredOutput: Choosing the Right Structured Output for LangChain

The article analyzes why LLMs often return unstructured text, compares LangChain's OutputParser and withStructuredOutput approaches, evaluates their stability, token usage, and model compatibility, and provides a decision guide and best‑practice recommendations for production‑grade structured output in 2025.

Function CallingLLMLangChain
0 likes · 10 min read
Parser vs withStructuredOutput: Choosing the Right Structured Output for LangChain
Su San Talks Tech
Su San Talks Tech
Mar 30, 2026 · Artificial Intelligence

Mastering LLM Function Calling: Theory, Workflow, and Hands‑On Code

This article explains the fundamentals of large‑model function calling, why it’s needed to bridge language models with real‑world tools, and provides a step‑by‑step implementation in Python—including tool definition, intent extraction, local execution, and result integration—complete with code samples and diagrams.

AI AgentAPIFunction Calling
0 likes · 11 min read
Mastering LLM Function Calling: Theory, Workflow, and Hands‑On Code
AI Engineer Programming
AI Engineer Programming
Mar 24, 2026 · Artificial Intelligence

Tool Calling 2.0: Autonomous Discovery and Multi‑Agent Workflow

The article traces the evolution from early function calls to Tool Calling 2.0, explaining how Model Context Protocol standardizes tool interfaces, how Agent‑to‑Agent communication enables multi‑AI collaboration, and how Skills combine tool orchestration into autonomous workflows, while also discussing remaining challenges such as intent misinterpretation and security risks.

AI skillsAgent CollaborationFunction Calling
0 likes · 14 min read
Tool Calling 2.0: Autonomous Discovery and Multi‑Agent Workflow
Tencent Cloud Developer
Tencent Cloud Developer
Mar 17, 2026 · Artificial Intelligence

Why Anthropic Skips Function Calling: Inside the 5 Skill Execution Modes

This article dissects Anthropic's Skill framework, revealing how it drives AI agents through five distinct execution modes—pure prompt injection, script execution, library calls, progressive document loading, and workflow orchestration—while avoiding function‑calling registration and optimizing token usage.

AIAgentFunction Calling
0 likes · 32 min read
Why Anthropic Skips Function Calling: Inside the 5 Skill Execution Modes
Su San Talks Tech
Su San Talks Tech
Mar 12, 2026 · Artificial Intelligence

Demystifying OpenClaw: How Agents, RAG, Memory, and Skills Power AI Automation

OpenClaw is an open‑source AI agent platform that integrates core concepts such as Agents, Retrieval‑Augmented Generation, Memory, Function Calling, and the proprietary Skills protocol, offering a four‑layer architecture, configurable workspaces, SQLite‑backed persistence, and practical deployment guidance while highlighting security best practices.

AI AgentFunction CallingMemory
0 likes · 14 min read
Demystifying OpenClaw: How Agents, RAG, Memory, and Skills Power AI Automation
AI Explorer
AI Explorer
Mar 8, 2026 · Artificial Intelligence

Qwen-Agent: An Open-Source Agent Framework Empowering Complex AI Applications

Qwen-Agent, an open‑source agent development framework built on Qwen large models (≥3.0), integrates function calling, code interpreter, RAG, and MCP support, offering ready‑to‑run demos, GUI tools, and extensive documentation to help developers quickly build and customize sophisticated AI agents.

AI agentsCode InterpreterFunction Calling
0 likes · 7 min read
Qwen-Agent: An Open-Source Agent Framework Empowering Complex AI Applications
IT Services Circle
IT Services Circle
Mar 8, 2026 · Artificial Intelligence

Mastering LLM Skills: Modular Prompt Engineering for Scalable AI Workflows

The article explains how to replace monolithic prompts with reusable, lazy‑loaded Skill files, compares Skills with Prompt, MCP and Function Calling, shows concrete Skill structures and examples, and demonstrates a Spring Boot AI interview platform with open‑source repositories.

AI workflowFunction CallingLLM
0 likes · 12 min read
Mastering LLM Skills: Modular Prompt Engineering for Scalable AI Workflows
Old Meng AI Explorer
Old Meng AI Explorer
Feb 28, 2026 · Artificial Intelligence

Unlock Claude Development: 15+ Real-World Examples to Jumpstart Your AI Projects

The article introduces the open‑source Claude Quickstarts repository, which provides over 15 ready‑to‑run examples—including multimodal image Q&A, function calling, and batch document analysis—along with step‑by‑step setup instructions, code snippets, and best‑practice notes to help developers quickly build Claude‑powered applications.

AIClaudeFunction Calling
0 likes · 11 min read
Unlock Claude Development: 15+ Real-World Examples to Jumpstart Your AI Projects
AI Tech Publishing
AI Tech Publishing
Feb 15, 2026 · Artificial Intelligence

Mastering Agent Tool Use: Adding Search, Time, and Calculator Functions

This tutorial extends a minimal LLM Agent loop by introducing Tool Use (function calling) to give the agent actionable capabilities—searching the web, retrieving the current datetime, and performing mathematical calculations—while explaining the BaseTool architecture, registration process, system‑prompt adjustments, and practical execution examples.

AI AgentBaseToolFunction Calling
0 likes · 15 min read
Mastering Agent Tool Use: Adding Search, Time, and Calculator Functions
Woodpecker Software Testing
Woodpecker Software Testing
Jan 27, 2026 · Artificial Intelligence

How to Build a Multimodal AI Assistant with FastAPI, Alibaba Cloud and DashScope

This guide walks through configuring Alibaba Cloud credentials, implementing a FastAPI backend with email function calling, Alibaba OpenSearch, image generation via DashScope, speech recognition, and a responsive HTML/CSS/JavaScript front‑end that supports text chat, image recognition, image synthesis, and voice interaction.

Alibaba CloudDashscopeFastAPI
0 likes · 38 min read
How to Build a Multimodal AI Assistant with FastAPI, Alibaba Cloud and DashScope
Woodpecker Software Testing
Woodpecker Software Testing
Jan 15, 2026 · Artificial Intelligence

Step-by-Step Guide to Building Your First AI Agent: Connecting Alibaba Cloud, OpenAI, Dashscope, DeepSeek, and Ollama

This article provides a detailed, hands‑on tutorial for creating an AI agent, covering registration and API key setup for Alibaba Cloud, OpenAI, Dashscope and DeepSeek, installing and using Ollama for local model deployment, configuring CherryStudio, and implementing function‑calling and MCP techniques with full code examples.

AI AgentAlibaba CloudDashscope
0 likes · 26 min read
Step-by-Step Guide to Building Your First AI Agent: Connecting Alibaba Cloud, OpenAI, Dashscope, DeepSeek, and Ollama
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Dec 29, 2025 · Artificial Intelligence

When to Use MCP vs Skill? Decoding AI Agent Extensions

This article explains the fundamental differences between Model Context Protocol (MCP) and Agent Skills, covering their design philosophy, technical architecture, token costs, security considerations, practical use‑cases, and how they complement each other in building powerful AI agents.

AI integrationAgent SkillFunction Calling
0 likes · 19 min read
When to Use MCP vs Skill? Decoding AI Agent Extensions
Frontend AI Walk
Frontend AI Walk
Dec 14, 2025 · Artificial Intelligence

Advanced AI Agent Skills: Behind the Scenes and a Developer’s Guide

This article explains the origins of AI Agent Skills, walks through the standard tool‑use loop, provides step‑by‑step code for defining and invoking Skills with the OpenAI API, compares Skills with the emerging Model Context Protocol (MCP), and offers practical guidance for developers and architects building AI‑enabled systems.

AI Agent SkillsFunction CallingMCP
0 likes · 11 min read
Advanced AI Agent Skills: Behind the Scenes and a Developer’s Guide
IT Services Circle
IT Services Circle
Dec 7, 2025 · Artificial Intelligence

Why Function Calling Fails in AI Agents and How to Fix It

The article examines the three main challenges of complex AI projects—knowledge organization, data‑AI interaction, and intent recognition—highlighting why tool (function) calling often breaks, and presents practical engineering strategies such as prompt refinement, clearer tool schemas, intent convergence, and evaluation loops to improve reliability.

AI agentsData FlywheelFunction Calling
0 likes · 12 min read
Why Function Calling Fails in AI Agents and How to Fix It
Instant Consumer Technology Team
Instant Consumer Technology Team
Dec 1, 2025 · Artificial Intelligence

Understanding AIGC, RAG, Function Calling, and the MCP Protocol: A Practical AI Guide

This article explains the fundamentals of AI‑generated content (AIGC), the Retrieval‑Augmented Generation (RAG) technique, Function Calling, autonomous agents, and the Model Context Protocol (MCP), highlighting their evolution, technical workflows, limitations, and real‑world examples for developers.

AIAIGCFunction Calling
0 likes · 19 min read
Understanding AIGC, RAG, Function Calling, and the MCP Protocol: A Practical AI Guide
Wu Shixiong's Large Model Academy
Wu Shixiong's Large Model Academy
Nov 24, 2025 · Artificial Intelligence

Why Dynamic Function Routing Is the Key to Stable LLM Agents

In real‑world LLM agents, giving the model too many tools at once leads to frequent function‑call errors, but applying dynamic function routing to narrow the candidate set dramatically reduces the error rate—from over 20% down to around 1%—and provides clear guidelines on when and how to implement it.

AgentFunction CallingLLM
0 likes · 9 min read
Why Dynamic Function Routing Is the Key to Stable LLM Agents
Wu Shixiong's Large Model Academy
Wu Shixiong's Large Model Academy
Nov 14, 2025 · Artificial Intelligence

How to Engineer Reliable Function Calls for LLM Agents: An End‑to‑End Framework

This article explains why function‑call accuracy is critical for LLM agents, identifies four common failure causes, and presents a systematic, five‑step engineering framework—including dynamic routing, chain‑of‑thought planning, result validation, memory injection, and log‑driven optimization—backed by concrete examples and quantitative improvements.

Function CallingInterview PreparationLLM
0 likes · 10 min read
How to Engineer Reliable Function Calls for LLM Agents: An End‑to‑End Framework
Nightwalker Tech
Nightwalker Tech
Oct 27, 2025 · Artificial Intelligence

Unlock Seamless AI Coding: How to Pair Claude Code with GLM‑4.6 on Windows

This guide explains how to overcome access restrictions to Claude’s large‑model APIs in China by configuring Claude Code to work with Zhipu AI’s GLM‑4.6, covering background, model features, required environment setup, installation steps, environment variables, usage commands, and best‑practice scenarios for AI‑assisted development.

AI programmingClaude CodeFunction Calling
0 likes · 17 min read
Unlock Seamless AI Coding: How to Pair Claude Code with GLM‑4.6 on Windows
AI Cyberspace
AI Cyberspace
Oct 15, 2025 · Artificial Intelligence

Why MCP Is Poised to Replace Function Calling for LLM Agents

The Model Context Protocol (MCP) introduced by Anthropic addresses the scalability, integration, and context‑transfer limitations of traditional Function Calling by offering a standardized, bidirectional, and context‑aware communication layer that simplifies tool discovery, security, and workflow orchestration for LLM‑driven agents.

AI integrationAgentFunction Calling
0 likes · 24 min read
Why MCP Is Poised to Replace Function Calling for LLM Agents
BirdNest Tech Talk
BirdNest Tech Talk
Oct 2, 2025 · Artificial Intelligence

How Function Calling Empowers LLMs: A Step‑by‑Step LangChain Guide

This article explains how function (tool) calling lets large language models like GPT or Gemini invoke external APIs, walks through defining tools with LangChain, and demonstrates a complete Python example that fetches real‑time weather data and returns a natural‑language answer.

AI agentsFunction CallingLLM
0 likes · 9 min read
How Function Calling Empowers LLMs: A Step‑by‑Step LangChain Guide
Sohu Tech Products
Sohu Tech Products
Sep 17, 2025 · Artificial Intelligence

Unlocking Claude Code’s Model Context Protocol: A Hands‑On MCP Guide

This tutorial introduces Claude Code’s Model Context Protocol (MCP), compares it with traditional function calling, explains its client‑server architecture, and provides a step‑by‑step hands‑on guide—including Figma token acquisition, server setup, and Flutter code generation—to demonstrate how MCP streamlines AI‑driven development.

Claude CodeFigmaFlutter
0 likes · 19 min read
Unlocking Claude Code’s Model Context Protocol: A Hands‑On MCP Guide
Alibaba Cloud Developer
Alibaba Cloud Developer
Sep 15, 2025 · Artificial Intelligence

Why MCP Isn't a Magic AI Upgrade: Deep Dive into Its Architecture, Host Role, and Real Costs

This article debunks common misconceptions about the Model Context Protocol (MCP), explains its client‑host‑server (CHS) architecture, shows how the Host drives AI decisions while Server and Client remain model‑agnostic, compares MCP with Function Calling, analyzes SDK source code, evaluates practical trade‑offs, and outlines the true engineering value and costs of using MCP in AI applications.

AI EngineeringFunction CallingLLM
0 likes · 35 min read
Why MCP Isn't a Magic AI Upgrade: Deep Dive into Its Architecture, Host Role, and Real Costs
Fun with Large Models
Fun with Large Models
Sep 2, 2025 · Artificial Intelligence

How to Improve Agent Performance with Fine‑Tuning: Key Strategies for AI Interviews

This article explains how to boost large‑model agent performance for interview questions by using efficient fine‑tuning—building multi‑tool parallel and chain‑call datasets—and reinforcement‑learning fine‑tuning with reward functions that target tool accuracy, task completion, and call efficiency, illustrated with concrete JSON examples and open‑source references.

AgentDatasetFine-tuning
0 likes · 9 min read
How to Improve Agent Performance with Fine‑Tuning: Key Strategies for AI Interviews
Tencent Cloud Developer
Tencent Cloud Developer
Aug 19, 2025 · Artificial Intelligence

Demystifying LLMs: From Transformers to Agents, Prompts, and Function Calling

This article explains the fundamentals of large language models, covering transformer self‑attention, prompt engineering, API usage with temperature and tool parameters, function calling, agent architectures, the Model Context Protocol (MCP), Agent‑to‑Agent (A2A) communication, and future AI programming roles.

A2AAI agentsFunction Calling
0 likes · 11 min read
Demystifying LLMs: From Transformers to Agents, Prompts, and Function Calling
AndroidPub
AndroidPub
Aug 19, 2025 · Artificial Intelligence

Demystifying AI Jargon: From Prompts to Agents, Tools, and MCP Protocol

This article breaks down the confusing AI buzzwords—user prompts, system prompts, agents, tool registration, function calling, and the MCP protocol—explaining how they work together to enable AI assistants that can perform real tasks beyond simple chat.

AI agentsAI promptsFunction Calling
0 likes · 8 min read
Demystifying AI Jargon: From Prompts to Agents, Tools, and MCP Protocol
Fun with Large Models
Fun with Large Models
Jul 30, 2025 · Artificial Intelligence

LangChain Tool Integration: Step‑by‑Step Guide to Built‑in and Custom Functions

This article walks through how to integrate LangChain's built‑in tools and user‑defined functions into AI agents, covering environment setup, installing dependencies, using the Python code interpreter tool, binding tools to a model, parsing tool calls with JsonOutputKeyToolsParser, and demonstrating both a data‑analysis example and a weather‑lookup function.

AI agentsFunction CallingLangChain
0 likes · 13 min read
LangChain Tool Integration: Step‑by‑Step Guide to Built‑in and Custom Functions
Architecture and Beyond
Architecture and Beyond
Jul 27, 2025 · Artificial Intelligence

What Makes an AI Agent Tick? From Expert Systems to Modern Architectures

This article traces the evolution of AI agents from early expert systems to today’s multimodal, memory‑rich agents, explains their perception, reasoning, memory and action modules, discusses model selection, prompt engineering, RAG techniques, and highlights current limitations such as hallucinations, reliability, cost, and security.

AI AgentFunction CallingMemory Architecture
0 likes · 28 min read
What Makes an AI Agent Tick? From Expert Systems to Modern Architectures
Ops Development Stories
Ops Development Stories
Jul 14, 2025 · Artificial Intelligence

Mastering AIOps: Prompt Engineering, Function Calling, RAG, Graph RAG, and Local LLM Deployment

This comprehensive guide explores AIOps techniques such as prompt engineering, chat completions, memory management, function calling, fine‑tuning, retrieval‑augmented generation (RAG), graph‑based RAG, and practical steps for deploying open‑source large language models locally, providing code examples and best‑practice recommendations for modern DevOps environments.

Function CallingGraph RAGRAG
0 likes · 47 min read
Mastering AIOps: Prompt Engineering, Function Calling, RAG, Graph RAG, and Local LLM Deployment
Instant Consumer Technology Team
Instant Consumer Technology Team
Jul 14, 2025 · Artificial Intelligence

9 Essential Technologies for Building Scalable AI Agents

An in‑depth guide outlines the nine core technologies—ranging from autonomous agent fundamentals and multi‑agent collaboration to workflow orchestration, retrieval‑augmented generation, fine‑tuning, function calling, model context protocols, agent‑to‑agent communication, and AI‑driven UI—required to design, deploy, and scale enterprise‑grade AI agents.

AI agentsAgent ArchitectureFunction Calling
0 likes · 9 min read
9 Essential Technologies for Building Scalable AI Agents
Tencent Technical Engineering
Tencent Technical Engineering
Jul 14, 2025 · Artificial Intelligence

Demystifying AIGC, Agents, and MCP: Core Concepts and How They Interact

This article provides a concise overview of the latest AI concepts—including AIGC, Retrieval‑Augmented Generation, Function‑Calling models, intelligent agents, and the Model Context Protocol—explaining their principles, differences, and how they can be combined to build more powerful AI applications for developers outside the AI field.

AIGCAgentFunction Calling
0 likes · 15 min read
Demystifying AIGC, Agents, and MCP: Core Concepts and How They Interact
Sanyou's Java Diary
Sanyou's Java Diary
Jul 10, 2025 · Artificial Intelligence

Demystifying AIGC, Agents, RAG, and MCP: Core AI Concepts Explained

This article provides a concise overview of the latest AI breakthroughs—including AIGC, multimodal technology, Retrieval‑Augmented Generation (RAG), intelligent agents with function‑calling models, and the Model Context Protocol (MCP)—explaining their principles, relationships, and practical implications for developers outside the AI field.

AIAIGCFunction Calling
0 likes · 16 min read
Demystifying AIGC, Agents, RAG, and MCP: Core AI Concepts Explained
Tencent Cloud Developer
Tencent Cloud Developer
Jul 10, 2025 · Artificial Intelligence

Demystifying AIGC, Agents, and MCP: Essential AI Concepts for Developers

This article provides a concise, developer‑focused overview of emerging AI concepts—including AIGC, multimodal models, Retrieval‑Augmented Generation, intelligent agents, Function‑Calling, and the Model Context Protocol (MCP)—explaining their core principles, differences, and how they interrelate to enable advanced AI applications.

AIAIGCAgent
0 likes · 16 min read
Demystifying AIGC, Agents, and MCP: Essential AI Concepts for Developers
Sanyou's Java Diary
Sanyou's Java Diary
Jul 3, 2025 · Artificial Intelligence

How MCP Standardizes AI Tool Calls with JSON‑RPC and Spring AI

This article explains the MCP framework that standardizes AI tool invocation using JSON‑RPC, outlines its client‑server architecture, details communication methods such as STDIO, SSE and streamable HTTP, and provides a Spring AI demo showing tool registration, discovery, and execution.

AIFunction CallingJSON-RPC
0 likes · 14 min read
How MCP Standardizes AI Tool Calls with JSON‑RPC and Spring AI
Zhuanzhuan Tech
Zhuanzhuan Tech
Jun 25, 2025 · Artificial Intelligence

How MCP Simplifies AI Tool Integration with JSON‑RPC and Spring AI

This article explains the MCP framework’s architecture, execution flow, JSON‑RPC communication, and lifecycle, showing how it standardizes AI function calling and tool integration using Spring AI, with code examples and comparisons of communication methods.

AI tool integrationFunction CallingJSON-RPC
0 likes · 14 min read
How MCP Simplifies AI Tool Integration with JSON‑RPC and Spring AI
DeWu Technology
DeWu Technology
Jun 25, 2025 · Artificial Intelligence

Engineering Large Language Models with Spring AI: From Basics to RAG and Function Calls

This article walks through the fundamentals of large language models, their stateless and structured-output nature, explains how Spring‑AI provides a Java‑friendly API for model integration, covers RAG architecture, the MCP protocol, and demonstrates end‑to‑end code examples for building intelligent agents.

AI integrationFunction CallingJava
0 likes · 15 min read
Engineering Large Language Models with Spring AI: From Basics to RAG and Function Calls
Alibaba Cloud Developer
Alibaba Cloud Developer
Jun 19, 2025 · Artificial Intelligence

What Is Model Context Protocol (MCP) and How It Empowers LLMs?

The article introduces Model Context Protocol (MCP), explains its architecture of Host, Client, and Server, describes its components—Resources, Tools, Prompts—and demonstrates practical integration with IDE plugins to extend LLM capabilities such as real‑time ticket queries, highlighting its significance for AI development.

AI integrationAI toolingFunction Calling
0 likes · 11 min read
What Is Model Context Protocol (MCP) and How It Empowers LLMs?
Tencent Technical Engineering
Tencent Technical Engineering
May 28, 2025 · Artificial Intelligence

A Beginner-friendly Overview of LLMs, Transformers, Prompts, Function Calling, MCP and Agents

This article provides a concise, easy-to-understand introduction to large language models, the transformer architecture, prompt engineering, temperature settings, function calling, the Model Context Protocol (MCP), agent communication (A2A), and future AI programming trends, using simple analogies and illustrative examples.

AIAgentFunction Calling
0 likes · 11 min read
A Beginner-friendly Overview of LLMs, Transformers, Prompts, Function Calling, MCP and Agents
Sohu Tech Products
Sohu Tech Products
May 21, 2025 · Artificial Intelligence

Beyond LLM Limits: Function Calling, MCP, and A2A Compared

The article examines the inherent knowledge cutoff of large language models, introduces function calling, Model Context Protocol (MCP), and Agent‑to‑Agent (A2A) as solutions for real‑time data access, compares their architectures, communication patterns, and use cases, and discusses their respective strengths and drawbacks.

A2AAI protocolsFunction Calling
0 likes · 17 min read
Beyond LLM Limits: Function Calling, MCP, and A2A Compared
Tencent Cloud Developer
Tencent Cloud Developer
May 13, 2025 · Artificial Intelligence

Function Calling and Model Context Protocol (MCP): Bridging Large Language Models with Real‑World Systems

The article reviews the shortcomings of traditional large language models, explains how function calling extends LLMs beyond pure text, introduces the Model Context Protocol (MCP) as a standardized USB‑C‑like interface for AI tools, and demonstrates a Python MCP example that integrates LLMs with Tencent Advertising APIs.

AI integrationAPIFunction Calling
0 likes · 16 min read
Function Calling and Model Context Protocol (MCP): Bridging Large Language Models with Real‑World Systems
Code Mala Tang
Code Mala Tang
May 2, 2025 · Artificial Intelligence

Debunking Common Misconceptions About the Model Context Protocol (MCP)

This article clarifies three major misunderstandings about the Model Context Protocol (MCP), explaining that it does not require large‑model support, works even without function‑calling capabilities, and is not natively built into models, while outlining how MCP standardizes context augmentation through a black‑box server architecture.

AIFunction CallingMCP
0 likes · 5 min read
Debunking Common Misconceptions About the Model Context Protocol (MCP)
Volcano Engine Developer Services
Volcano Engine Developer Services
Apr 22, 2025 · Artificial Intelligence

What Is Model Context Protocol (MCP) and How It Transforms LLM Applications

Model Context Protocol (MCP) is an open standard that standardizes how large language models interact with external tools and data, enabling seamless function calls, simplifying prompt engineering, and allowing developers to build modular AI applications without handling low‑level integration details.

AI integrationFunction CallingLLM
0 likes · 16 min read
What Is Model Context Protocol (MCP) and How It Transforms LLM Applications
Architect
Architect
Apr 20, 2025 · Artificial Intelligence

From Function Calling to A2A: How AI Agents Evolve and Interact

This article analyzes the progressive evolution of AI tool‑integration mechanisms—Function Calling, MCP, and A2A—explaining their core concepts, engineering considerations, use‑case suitability, limitations, and how they complement each other to enable scalable multi‑agent workflows.

A2AAI agentsFunction Calling
0 likes · 9 min read
From Function Calling to A2A: How AI Agents Evolve and Interact
Architect
Architect
Mar 29, 2025 · Artificial Intelligence

How Non‑AI Developers Can Build Powerful LLM Apps: Prompt Engineering, RAG, and AI Agents Explained

This article guides developers without an AI background through the fundamentals of building large‑language‑model applications, covering prompt engineering, multi‑turn interaction, function calling, retrieval‑augmented generation, vector databases, code assistants, and the MCP protocol for AI agents.

AI AgentEmbeddingFunction Calling
0 likes · 51 min read
How Non‑AI Developers Can Build Powerful LLM Apps: Prompt Engineering, RAG, and AI Agents Explained
Java Architecture Diary
Java Architecture Diary
Mar 26, 2025 · Artificial Intelligence

How DeepSeek V3-0324 Boosts Java AI Apps with Function Calling

The article introduces DeepSeek's new V3-0324 model, highlights its performance gains and new features like function calling and standardized JSON output, demonstrates Chinese and frontend coding tests, provides Java code examples for AI integration, and concludes with a summary of its business impact.

AIChat2BIDeepSeek
0 likes · 6 min read
How DeepSeek V3-0324 Boosts Java AI Apps with Function Calling
Ops Development & AI Practice
Ops Development & AI Practice
Mar 16, 2025 · Artificial Intelligence

How Function Calling Helps LLMs Overcome Hallucinations

This article explains how LLM function calling works, from defining external functions to processing API responses, and demonstrates a Python example using OpenAI's ChatGPT‑4o to fetch real‑time weather, showing how the technique mitigates hallucinations and expands practical AI applications.

AIFunction CallingLLM
0 likes · 8 min read
How Function Calling Helps LLMs Overcome Hallucinations
Ma Wei Says
Ma Wei Says
Mar 15, 2025 · Artificial Intelligence

Understanding Model Context Protocol (MCP) vs. Function Calling

The Model Context Protocol (MCP), announced by Anthropic, standardizes how AI applications provide context to LLMs, offering a client‑server architecture that simplifies data and tool integration, and is compared with function calling, highlighting its benefits, workflow, controversies, and future prospects.

AI ArchitectureAnthropicFunction Calling
0 likes · 9 min read
Understanding Model Context Protocol (MCP) vs. Function Calling
Tencent Technical Engineering
Tencent Technical Engineering
Mar 10, 2025 · Artificial Intelligence

How Non‑AI Developers Can Build LLM Apps: Prompt Engineering, RAG, and Function Calling Explained

This guide shows non‑AI developers how to create large‑model applications by mastering prompt engineering, multi‑turn interactions, Retrieval‑Augmented Generation, function calling, and AI‑Agent integration, with practical code examples, tool design patterns, and deployment tips.

AI AgentEmbeddingFunction Calling
0 likes · 48 min read
How Non‑AI Developers Can Build LLM Apps: Prompt Engineering, RAG, and Function Calling Explained
DevOps
DevOps
Mar 9, 2025 · Artificial Intelligence

A Beginner's Guide to Building Large Language Model Applications: Prompt Engineering, Retrieval‑Augmented Generation, Function Calling, and AI Agents

This article provides a comprehensive introduction to developing large language model (LLM) applications, covering prompt engineering, zero‑ and few‑shot techniques, function calling, retrieval‑augmented generation (RAG) with embedding and vector databases, code assistants, and the MCP protocol for building AI agents, all aimed at non‑AI specialists.

AI AgentEmbeddingFunction Calling
0 likes · 48 min read
A Beginner's Guide to Building Large Language Model Applications: Prompt Engineering, Retrieval‑Augmented Generation, Function Calling, and AI Agents
Architecture and Beyond
Architecture and Beyond
Mar 9, 2025 · Artificial Intelligence

Evolution of AI Interaction Paradigms: From Function Calling to MCP and AI Agents

The article examines the rapid rise of AI agents like Manus and OpenManus, explains the limitations of cloud‑only models, details the Function Calling mechanism and its pros and cons, introduces the Model Context Protocol (MCP) as a more powerful evolution, and finally describes how AI Agents combine planning, dynamic tool use, memory, and autonomous decision‑making to achieve fully closed‑loop intelligent automation.

AI AgentAI automationAI interaction
0 likes · 20 min read
Evolution of AI Interaction Paradigms: From Function Calling to MCP and AI Agents
Alibaba Cloud Developer
Alibaba Cloud Developer
Mar 7, 2025 · Artificial Intelligence

Build an MCP Client & Server: Step‑by‑Step Guide to Anthropic’s Model Context Protocol

This tutorial explains how to use Anthropic's open‑source Model Context Protocol (MCP) to connect large language models with external data sources by building both MCP servers and clients in Node.js/TypeScript, covering architecture, transport options, SDK usage, and practical code examples.

Function CallingLLM integrationMCP
0 likes · 16 min read
Build an MCP Client & Server: Step‑by‑Step Guide to Anthropic’s Model Context Protocol
Java Architecture Diary
Java Architecture Diary
Mar 7, 2025 · Artificial Intelligence

Boost Inference Efficiency with QwQ-32B: Benchmarks, Resource Savings, and Java Integration

QwQ-32B, Alibaba’s new inference‑optimized large language model built on the Qwen2.5 architecture, outperforms DeepSeek‑R1 across math reasoning, code generation, and safety benchmarks while requiring only 24 GB vRAM, and the article provides detailed performance data, resource‑efficiency analysis, and step‑by‑step Java and Ollama integration instructions.

Function CallingInference OptimizationJava integration
0 likes · 7 min read
Boost Inference Efficiency with QwQ-32B: Benchmarks, Resource Savings, and Java Integration
Tencent Cloud Developer
Tencent Cloud Developer
Mar 4, 2025 · Artificial Intelligence

A Practical Guide to Building Large Language Model Applications: Prompt Engineering, Retrieval‑Augmented Generation, Function Calling and AI Agents

The guide teaches non‑AI developers how to build practical LLM‑powered applications by mastering prompt engineering, function calling, retrieval‑augmented generation, and AI agents, and introduces the Modal Context Protocol for seamless tool integration, offering a clear learning path to leverage large language models without deep theory.

AI AgentFunction CallingLLM
0 likes · 48 min read
A Practical Guide to Building Large Language Model Applications: Prompt Engineering, Retrieval‑Augmented Generation, Function Calling and AI Agents
Alibaba Cloud Native
Alibaba Cloud Native
Feb 12, 2025 · Artificial Intelligence

Boost AI Agents with Spring AI Alibaba: 20+ RAG Sources & Tool‑Calling Integrations

This article explains how Spring AI Alibaba enables AI agents to leverage Retrieval‑Augmented Generation and Tool Calling by providing over twenty ready‑made RAG data source connectors and more than twenty function‑calling interfaces, along with practical code examples for integrating document readers and weather services.

Document ReaderFunction CallingJava
0 likes · 12 min read
Boost AI Agents with Spring AI Alibaba: 20+ RAG Sources & Tool‑Calling Integrations
DaTaobao Tech
DaTaobao Tech
Jan 24, 2025 · Artificial Intelligence

MktAI Assistant: AI‑Driven Marketing Data Query and Insight Platform

The MktAI Assistant combines LLM‑powered memory, skill planning, and tool‑calling with real‑time API data to replace slow, manual SQL dashboards, delivering sub‑minute, fresh, explainable marketing queries and attribution insights that boost decision speed, accuracy, and collaboration between data scientists and business users.

AI AgentData ScienceFunction Calling
0 likes · 16 min read
MktAI Assistant: AI‑Driven Marketing Data Query and Insight Platform
JavaEdge
JavaEdge
Nov 9, 2024 · Artificial Intelligence

Build an AI‑Powered Airline Ticket Agent with Spring AI Alibaba

This tutorial walks through creating an intelligent airline‑ticket customer‑service agent using Spring AI Alibaba, covering requirements, architecture, RAG integration, function calling, chat memory, core capabilities, code implementation with ChatClient, and a sample running result.

AI AgentAlibabaChat Memory
0 likes · 9 min read
Build an AI‑Powered Airline Ticket Agent with Spring AI Alibaba
Alibaba Cloud Native
Alibaba Cloud Native
Oct 18, 2024 · Artificial Intelligence

How Spring AI Alibaba Simplifies Java AI Application Development

This article introduces the open‑source Spring AI Alibaba framework, explains its background, core features such as chat model abstraction, prompt templates, structured output, function calling, RAG and chat memory, and walks through a complete smart‑ticket‑assistant example with code snippets and deployment guidance.

AI FrameworkChat MemoryFunction Calling
0 likes · 17 min read
How Spring AI Alibaba Simplifies Java AI Application Development
Alibaba Cloud Developer
Alibaba Cloud Developer
Oct 17, 2024 · Artificial Intelligence

Build AI-Powered Java Apps Fast with Spring AI Alibaba: Features & Demo

Spring AI Alibaba is an open‑source Java framework that integrates Alibaba Cloud's large‑model services with Spring AI, offering high‑level abstractions for chat models, prompts, function calling, RAG, and conversation memory, and includes a complete ticket‑assistant example with code snippets.

AI FrameworkChatbotFunction Calling
0 likes · 17 min read
Build AI-Powered Java Apps Fast with Spring AI Alibaba: Features & Demo
Java Tech Enthusiast
Java Tech Enthusiast
Oct 8, 2024 · Artificial Intelligence

Spring AI Framework for Java Developers

Spring AI is a Java‑centric framework that unifies access to chat, text‑to‑image, embedding and retrieval‑augmented generation models—including OpenAI, Anthropic and Alibaba’s Tongyi Qianwen—through synchronous or asynchronous APIs, POJO mapping, function calling, vector‑store integration and fluent tooling for rapid AI agent development.

AI frameworksFunction CallingJava development
0 likes · 5 min read
Spring AI Framework for Java Developers
DataFunSummit
DataFunSummit
Aug 27, 2024 · Artificial Intelligence

Applying Large Models to Xiao AI Assistant: Intent Routing, Understanding, and Response Generation

This article presents a comprehensive technical overview of how large language models are integrated into Xiaomi's Xiao AI assistant, detailing the architecture for intent routing, domain‑specific intent understanding, function‑calling mechanisms, fine‑tuning strategies, performance gains, and future research directions.

AI AssistantFunction CallingIntent Routing
0 likes · 14 min read
Applying Large Models to Xiao AI Assistant: Intent Routing, Understanding, and Response Generation
Architect
Architect
Aug 2, 2024 · Artificial Intelligence

Building AI‑Native Applications with Spring AI: A Complete Tutorial

This article explains how to quickly develop an AI‑native application using Spring AI, covering core features such as chat models, prompt templates, function calling, structured output, image generation, embedding, vector stores, and Retrieval‑Augmented Generation (RAG), and provides end‑to‑end Java code examples for building a simple AI‑driven service.

AI-nativeBackendFunction Calling
0 likes · 40 min read
Building AI‑Native Applications with Spring AI: A Complete Tutorial
Architecture & Thinking
Architecture & Thinking
Jun 19, 2024 · Artificial Intelligence

Build AI‑Native Apps Quickly with Spring AI: From Chat Models to RAG

This guide explains what an AI‑native application is, compares AI‑native and AI‑based approaches, and walks through Spring AI’s core features—including chat models, prompt templates, function calling, structured output, image generation, embedding, and vector stores—showing step‑by‑step code examples and how to assemble a complete AI‑native app with RAG support.

AI native applicationFunction CallingJava
0 likes · 43 min read
Build AI‑Native Apps Quickly with Spring AI: From Chat Models to RAG
Tencent Cloud Developer
Tencent Cloud Developer
May 28, 2024 · Artificial Intelligence

AI Agents: Concepts, Key Components, and Development Frameworks

AI agents extend large language models with planning, short‑term and long‑term memory, and tool‑use capabilities, enabling autonomous task decomposition, external API interaction, and persistent knowledge retrieval; frameworks such as MetaGPT, LangChain, and CrewAI simplify building agents like a researcher that gather information, browse web content, and generate reports, heralding broader AI‑enhanced productivity.

AI agentsFunction CallingPlanning
0 likes · 20 min read
AI Agents: Concepts, Key Components, and Development Frameworks
37 Interactive Technology Team
37 Interactive Technology Team
May 27, 2024 · Artificial Intelligence

Enhancing AI Code Review Quality with Contextual Embedding and Function Calling

The article explains how AI code reviews suffer from missing context, and improves them by embedding the codebase, using Retrieval‑Augmented Generation to fetch relevant snippets, and adding a function‑calling tool that lets the model autonomously request additional code, resulting in precise, bug‑detecting feedback.

AI code reviewEmbeddingFunction Calling
0 likes · 8 min read
Enhancing AI Code Review Quality with Contextual Embedding and Function Calling
Sohu Tech Products
Sohu Tech Products
May 15, 2024 · Artificial Intelligence

OpenAI Assistants API Quickstart Project for Next.js

OpenAI’s open‑source openai‑assistants‑quickstart project shows how to integrate the Assistants API into a Next.js app, offering streaming chat, code‑interpreter, file‑search, and function‑calling tools, and provides step‑by‑step setup instructions so developers can quickly build and customize AI assistants.

AI AssistantAssistants APICode Interpreter
0 likes · 4 min read
OpenAI Assistants API Quickstart Project for Next.js
Ctrip Technology
Ctrip Technology
Jan 26, 2024 · Artificial Intelligence

Implementing Plugin Functionality for a Large Language Model Chatbot Using Function Calling and Asynchronous Execution

This article explains how Ctrip's security R&D team built a web‑based LLM chatbot with version‑2.0 features such as plugin support, function calling, synchronous and asynchronous execution, WebSocket/Socket.IO communication, and provides full Python code examples for defining and invoking plugins.

AIBackendFunction Calling
0 likes · 15 min read
Implementing Plugin Functionality for a Large Language Model Chatbot Using Function Calling and Asynchronous Execution
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Sep 1, 2023 · Artificial Intelligence

Understanding Function Calling and ReAct for LLM Agents with LangChain

This article explains how large language models can act as agents by using OpenAI's Function Calling and the ReAct prompting paradigm, compares their trade‑offs, and demonstrates practical implementations with LangChain, including code examples for defining tools, invoking functions, and orchestrating multi‑step reasoning.

AIAgentFunction Calling
0 likes · 21 min read
Understanding Function Calling and ReAct for LLM Agents with LangChain