教程中心

AI Agent 从入门到实战:概念理解、MCP 使用、平台实操、工作流自动化

2024

教程总数

368

入门教程

45

实操教程

进阶其他

Groq LPU Fast Inference

Ultra-fast inference with Groq Language Processing Units

Groq LPU Fast Inference Overview Ultra-fast inference with Groq Language Processing Units. A comprehensive reference guide for model tutorials practitioners. Quick Reference ```python from openai import OpenAI client = OpenAI() def solve_groq_lp

modelsgroq
10分钟
进阶其他

Ruby AI Integration

Adding AI capabilities to Ruby on Rails applications

Ruby AI Integration Overview Adding AI capabilities to Ruby on Rails applications Implementation ```python from openai import OpenAI from pydantic import BaseModel from typing import Optional import json client = OpenAI() class Handler: """

programmingruby
10分钟
进阶其他

AI for NGOs and Nonprofits: Complete Guide

Low-cost AI implementations for nonprofit organizations

AI for NGOs and Nonprofits: Complete Guide Overview Low-cost AI implementations for nonprofit organizations. This guide provides complete, production-ready implementation. Key Concepts Understanding ai for ngos and nonprofits: complete guide requ

nonprofitai-applications
15分钟
进阶其他

Streaming AI Responses with Server-Sent Events: Complete Developer Guide 2026

Master Streaming AI Responses with Server-Sent Events with practical examples and production patterns

用 SSE 实现 AI 流式响应(2026):为什么用 SSE 而非 WebSocket、FastAPI 服务端 + 浏览器 EventSource 客户端真实代码、关闭代理缓冲/逐 token flush/断连取消等生产要点,以及 Next.js 用 Vercel AI SDK 的更简路径。

streamingsse
9分钟
进阶其他

AI API Documentation Writer: Developer Workflow

Automatically generating API documentation with LLMs

AI API Documentation Writer: Developer Workflow Overview Automatically generating API documentation with LLMs. This guide provides complete, production-ready implementation. Key Concepts Understanding ai api documentation writer: developer workfl

developer-toolsproductivity
15分钟
进阶其他

AI Bias Detection Toolkit

Identifying and measuring bias in machine learning models

AI Bias Detection Toolkit Overview Identifying and measuring bias in machine learning models. This guide covers practical implementation strategies for production AI systems. Why It Matters As AI systems grow more capable and widely deployed, saf

ai-safetyalignment
12分钟
进阶其他

AI Vendor Lock-in Prevention

Building AI systems that avoid vendor lock-in

AI Vendor Lock-in Prevention Overview Building AI systems that avoid vendor lock-in. A comprehensive reference guide for insights practitioners. Quick Reference ```python from openai import OpenAI client = OpenAI() def solve_ai_vendor_lock_in_pr

insightsportability
10分钟
进阶其他

AI Rate Limiting Implementation: Production Guide

Robust rate limiting strategies for AI API services

AI Rate Limiting Implementation Overview Robust rate limiting strategies for AI API services. This guide provides practical, production-ready implementations. **Category**: cloud-ai **Primary Tool**: python **Tags**: cloud-ai, api, production,

cloud-aiapi
15分钟
进阶其他

Language Detection and Translation: Complete Implementation

Multi-language detection and AI translation pipeline

Language Detection and Translation Overview Multi-language detection and AI translation pipeline. This guide provides practical, production-ready implementations. **Category**: nlp **Primary Tool**: openai **Tags**: nlp, translation, text-proc

nlptranslation
12分钟
进阶其他

Deploying AI to Production Best Practices: 2026 Developer Guide

Essential practices every AI developer should follow for deploying ai to production

Deploying AI to Production Best Practices 2026 Introduction Following best practices for deploying ai to production is the difference between fragile prototypes and production-grade AI systems. This guide covers the most important practices that ex

best-practicesdeploying-ai-to-production
15分钟
进阶其他

Gemini Multimodal Applications: Implementation Guide

Building apps with Gemini multimodal input/output

Gemini Multimodal Applications Overview Building apps with Gemini multimodal input/output. This guide provides practical, production-ready implementations. **Category**: multimodal-ai **Primary Tool**: gemini **Tags**: multimodal, vision, mult

multimodalvision
15分钟
进阶其他

Batch Embedding Generation: Practical Tutorial

Efficiently generating embeddings at scale for RAG

Batch Embedding Generation: Practical Tutorial Overview Efficiently generating embeddings at scale for RAG Implementation ```python from openai import OpenAI from pydantic import BaseModel from typing import Optional import json client = OpenAI(

tutorialpractical
10分钟
进阶其他

Knowledge Graph from Text

Building knowledge graphs from unstructured documents — hands-on project tutorial

Knowledge Graph from Text What You'll Build Building knowledge graphs from unstructured documents. By the end of this tutorial, you'll have a fully working implementation you can extend for production use. **Time**: ~25 minutes **Difficulty**: I

tutorialhands-on
25分钟
进阶其他

AI Policy Compliance Checker: Enterprise Implementation

Checking documents against company policies with AI

AI Policy Compliance Checker Overview Checking documents against company policies with AI. This guide provides practical, production-ready implementations. **Category**: business-ai **Primary Tool**: openai **Tags**: business-ai, enterprise, c

business-aienterprise
18分钟
进阶其他

AI Freelancing Starter Guide

Building a freelance AI engineering practice in 2025

AI Freelancing Starter Guide Overview Building a freelance AI engineering practice in 2025. A comprehensive reference guide for learning career practitioners. Quick Reference ```python from openai import OpenAI client = OpenAI() def solve_ai_fre

learningfreelancing
12分钟
进阶其他

Building AI Side Projects

Guide to building valuable AI side projects efficiently

Building AI Side Projects Overview Guide to building valuable AI side projects efficiently. A comprehensive reference guide for learning career practitioners. Quick Reference ```python from openai import OpenAI client = OpenAI() def solve_buildi

learningside-projects
12分钟
进阶其他

Automated Refactoring: Complete Developer Guide

Using AI to systematically refactor and modernize code — practical workflows for modern developers

Automated Refactoring Overview Using AI to systematically refactor and modernize code. AI-powered coding tools are transforming software development workflows. Setup ```bash Install required packages pip install openai anthropic python-dotenv Se

ai-codingdeveloper-tools
15分钟
进阶其他

AI Error Message Explainer: Practical Tutorial

Translating cryptic error messages into human language

AI Error Message Explainer: Practical Tutorial Overview Translating cryptic error messages into human language Implementation ```python from openai import OpenAI from pydantic import BaseModel from typing import Optional import json client = Ope

tutorialpractical
10分钟
进阶其他

Langfuse AI Analytics: Complete Setup Guide

Open-source LLM engineering analytics with Langfuse

Langfuse AI Analytics: Complete Setup Guide Overview Open-source LLM engineering analytics with Langfuse Implementation ```python from openai import OpenAI from pydantic import BaseModel from typing import Optional import json client = OpenAI()

ai-toolslangfuse
10分钟
进阶其他

SambaNova AI Platform

Enterprise AI inference with SambaNova RDU platform

SambaNova AI Platform Overview Enterprise AI inference with SambaNova RDU platform. A comprehensive reference guide for model tutorials practitioners. Quick Reference ```python from openai import OpenAI client = OpenAI() def solve_sambanova_ai_p

modelssambanova
10分钟
进阶其他

AI Pet Care Advisor

Health and care recommendations for pet owners

AI Pet Care Advisor Overview Health and care recommendations for pet owners. Implementation ```python from openai import OpenAI client = OpenAI() def run(query: str) -> str: r = client.chat.completions.create( model="gpt-4o-mini",

ai-applicationspecialized
10分钟
进阶其他

Long Context RAG: Advanced RAG Tutorial

Handling long documents with sliding window chunking

Long Context RAG: Advanced RAG Tutorial Overview Handling long documents with sliding window chunking. This guide provides complete, production-ready implementation. Key Concepts Understanding long context rag: advanced rag tutorial requires: 1.

long-contextrag
15分钟
进阶其他

Multimodal Document Parser

Extracting structured data from documents with vision — hands-on project tutorial

Multimodal Document Parser What You'll Build Extracting structured data from documents with vision. By the end of this tutorial, you'll have a fully working implementation you can extend for production use. **Time**: ~25 minutes **Difficulty**:

tutorialhands-on
25分钟
进阶其他

Ollama vs vLLM vs LM Studio: Side-by-Side Comparison

Local LLM inference runtime comparison — comparing ease of use across ollama and vllm

Ollama vs vLLM vs LM Studio: Side-by-Side Comparison Overview Local LLM inference runtime comparison — comparing ease of use across ollama and vllm. This comprehensive guide covers everything you need to know for production implementation. Why It

comparisonollama
15分钟
进阶其他

Voice Command System: Implementation Guide

Building reliable voice command recognition applications

Voice Command System: Implementation Guide Overview Building reliable voice command recognition applications. This guide provides complete, production-ready implementation. Key Concepts Understanding voice command system: implementation guide req

audiospeech
15分钟
进阶其他

Multilingual ASR System: Implementation Guide

Building multilingual speech recognition applications

多语言语音识别(ASR)系统实现指南(2026):Whisper 一模型转写/翻译数十种语言。含托管 vs 自托管(faster-whisper)抉择、VAD 分段/语言提示/术语表/分块等准确率手段与完整管线。

audiospeech
9分钟
进阶其他

LangChain vs LlamaIndex: Side-by-Side Comparison

Framework comparison for building RAG applications — comparing developer experience across langchain and llama-index

LangChain vs LlamaIndex: Side-by-Side Comparison Overview Framework comparison for building RAG applications — comparing developer experience across langchain and llama-index. This comprehensive guide covers everything you need to know for producti

comparisonlangchain
15分钟
进阶其他

AI for Developer Relations

Using AI to scale developer relations and community

AI for Developer Relations Overview Using AI to scale developer relations and community. A comprehensive reference guide for insights practitioners. Quick Reference ```python from openai import OpenAI client = OpenAI() def solve_ai_for_developer

insightsdevrel
10分钟
进阶其他

Gemma 3 (2026-03): What's New and How to Use It

Complete guide to the latest Gemma 3 capabilities: multimodal, efficient, runs on consumer GPU

Gemma 3 (2026-03): Complete Guide What's New in Gemma 3 2026-03 The latest version of **Gemma 3** brings significant improvements: multimodal, efficient, runs on consumer GPU. This release represents a major step forward in AI capabilities and is

gemma-3latest-ai
10分钟
进阶其他

AI Development with Scala: Complete Guide 2026

Best AI tools and patterns for Scala developers

AI Development with Scala 2026 Introduction Scala is used for big data, Spark, functional programming. This guide shows you the best AI tools, SDKs, and patterns for Scala developers building AI-powered applications. Top AI SDKs for Scala **Recom

scalaai-development
18分钟
进阶其他

AI Token Optimization Cookbook

20 techniques to reduce token usage without quality loss

AI Token Optimization Cookbook Overview 20 techniques to reduce token usage without quality loss. A comprehensive reference guide for insights practitioners. Quick Reference ```python from openai import OpenAI client = OpenAI() def solve_ai_toke

insightsoptimization
10分钟
进阶其他

Batch LLM Processing: Production Patterns

Efficient batch processing with OpenAI Batch API

Batch LLM Processing: Production Patterns Overview Efficient batch processing with OpenAI Batch API. This guide provides complete, production-ready implementation. Key Concepts Understanding batch llm processing: production patterns requires: 1.

llmpatterns
15分钟
进阶其他

Building Reliable AI Systems

Engineering reliability into AI-powered production systems

Building Reliable AI Systems Overview Engineering reliability into AI-powered production systems. A comprehensive reference guide for insights practitioners. Quick Reference ```python from openai import OpenAI client = OpenAI() def solve_buildin

insightsreliability
10分钟
进阶其他

Faithfulness vs Relevance: Complete Guide

Measuring factual accuracy versus helpfulness in RAG systems — practical implementation

Faithfulness vs Relevance Overview Measuring factual accuracy versus helpfulness in RAG systems. Rigorous evaluation is essential for building trustworthy AI applications. Why Evaluation Matters Without proper evaluation, you cannot: - Know if yo

evaluationllm
12分钟
进阶其他

AI Interior Design Helper

Room design suggestions and product recommendations with AI

AI Interior Design Helper Overview Room design suggestions and product recommendations with AI. Implementation ```python from openai import OpenAI client = OpenAI() def run(query: str) -> str: r = client.chat.completions.create( mode

ai-applicationspecialized
10分钟
进阶其他

AI Risk Assessment Tool: Enterprise Implementation

Automated risk identification and scoring with LLMs

AI Risk Assessment Tool Overview Automated risk identification and scoring with LLMs. This guide provides practical, production-ready implementations. **Category**: business-ai **Primary Tool**: openai **Tags**: business-ai, enterprise, risk

business-aienterprise
18分钟
进阶其他

PostgreSQL + pgvector: How to Implement vector search in PostgreSQL (2026)

Complete integration guide for PostgreSQL and pgvector

PostgreSQL + pgvector Integration Guide 2026 Overview This guide shows you exactly how to implement vector search in PostgreSQL using PostgreSQL and pgvector. We cover setup, core integration, and production-ready patterns. Prerequisites - Postgr

postgresqlpgvector
20分钟
进阶其他

Google Cloud Dialogflow CX: Complete Guide for AI Applications 2026

Build production AI apps with Google Cloud Dialogflow CX

Google Cloud Dialogflow CX: Complete Guide 2026 Overview Google Cloud Dialogflow CX provides enterprise-grade AI capabilities for advanced conversational AI for customer service. As one of the leading cloud AI platforms, it offers the reliability,

google-clouddialogflow-cx
20分钟
进阶其他

How to Use AI for Data Cleaning and Normalization: Complete Guide for Developers 2026

Build a automated data pipeline step by step

How to Use AI for Data Cleaning and Normalization 2026 Introduction In this tutorial, you'll learn how to **Use AI for Data Cleaning and Normalization**. By the end, you'll have a working **automated data pipeline** that you can deploy and extend.

how-tofor-data
20分钟
进阶其他

MCP Authentication Patterns: Complete Guide

Securing MCP server access with authentication

MCP Authentication Patterns: Complete Guide Overview Securing MCP server access with authentication. This comprehensive guide covers everything you need to know for production implementation. Why It Matters MCP Authentication Patterns: Complete G

mcptool-use
15分钟
进阶其他

AI Dynamic Pricing Engine: AI in Travel

Building ai dynamic pricing engine using Revenue Management AI — complete implementation for travel sector

AI Dynamic Pricing Engine: AI in Travel Business Problem The travel sector faces unique challenges that AI can address: - Manual yield management is time-consuming and error-prone - Scale requirements exceed human capacity - Real-time decisions req

travelai-applications
18分钟
进阶其他

AI-Enhanced Search Autocomplete: Practical Tutorial

Building AI-powered search suggestions and autocomplete

AI-Enhanced Search Autocomplete: Practical Tutorial Overview Building AI-powered search suggestions and autocomplete Implementation ```python from openai import OpenAI from pydantic import BaseModel from typing import Optional import json client

tutorialpractical
10分钟
进阶其他

AI Compliance Framework: Security Guide

Meeting regulatory requirements for AI system deployment

AI Compliance Framework: Security Guide Overview Meeting regulatory requirements for AI system deployment. This guide provides complete, production-ready implementation. Key Concepts Understanding ai compliance framework: security guide requires:

securityai-safety
15分钟
进阶其他

Structured Output Prompting: Complete Guide with Examples 2026

Master Structured Output Prompting for better AI outputs

Structured Output Prompting: Complete Guide 2026 What is Structured Output Prompting? Structured Output Prompting is a prompt engineering technique where you specify the exact format you want (JSON, markdown, tables). It's one of the most effective

prompt-engineeringstructured-output-prompting
12分钟
进阶其他

RLHF Step-by-Step Guide

Reinforcement Learning from Human Feedback implementation tutorial

RLHF Step-by-Step Guide Overview Reinforcement Learning from Human Feedback implementation tutorial. This guide covers practical implementation strategies for production AI systems. Why It Matters As AI systems grow more capable and widely deploy

ai-safetyalignment
12分钟
进阶其他

Adversarial Prompting: Complete Guide and Examples

Master adversarial prompting — testing robustness against manipulation — best for security testing

Adversarial Prompting: Complete Guide What is Adversarial Prompting? Adversarial Prompting is a prompting technique that involves testing robustness against manipulation. It is particularly effective for security testing. When to Use Adversarial P

prompt-engineeringadversarial-prompting
12分钟
进阶其他

Audio Preprocessing Pipeline: Implementation Guide

Cleaning and preparing audio for AI processing

音频预处理管线实现指南(2026):重采样 16k 单声道→响度归一→裁静音→VAD 分段→按需降噪,librosa 真实代码。强调按下游模型匹配处理、不要过度降噪以免损害说话人/情绪特征。

audiospeech
8分钟
进阶其他

AI Data Analyst Tool

Natural language to Python data analysis — hands-on project tutorial

AI Data Analyst Tool What You'll Build Natural language to Python data analysis. By the end of this tutorial, you'll have a fully working implementation you can extend for production use. **Time**: ~25 minutes **Difficulty**: Intermediate **Pr

tutorialhands-on
25分钟
上一页13 / 25下一页