教程中心

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

2024

教程总数

368

入门教程

45

实操教程

进阶其他

AI Meeting Assistant: Enterprise Implementation

Recording, transcribing, and summarizing meetings with AI

AI Meeting Assistant Overview Recording, transcribing, and summarizing meetings with AI. This guide provides practical, production-ready implementations. **Category**: business-ai **Primary Tool**: whisper **Tags**: business-ai, enterprise, me

business-aienterprise
18分钟
进阶其他

Semantic Search vs Traditional Search: Side-by-Side Comparison

Comparing embedding-based vs keyword search — comparing search relevance across openai and elasticsearch

Semantic Search vs Traditional Search: Side-by-Side Comparison Overview Comparing embedding-based vs keyword search — comparing search relevance across openai and elasticsearch. This comprehensive guide covers everything you need to know for produc

comparisonopenai
15分钟
进阶其他

AI Workflow: AI for requirements gathering and user stories

Complete guide to AI for requirements gathering and user stories using AI tools and automation

AI Workflow: AI for requirements gathering and user stories Overview Complete guide to AI for requirements gathering and user stories using AI tools and automation Implementation ```python from openai import OpenAI from pydantic import BaseModel

productivityworkflow
8分钟
进阶其他

DataRobot AutoML: Complete Setup Guide

Automated ML platform for production model building

DataRobot AutoML: Complete Setup Guide Overview Automated ML platform for production model building Implementation ```python from openai import OpenAI from pydantic import BaseModel from typing import Optional import json client = OpenAI() clas

ai-toolsdatarobot
10分钟
进阶其他

AI for Mental Health Support Apps

Safe, ethical AI features for mental wellness applications

AI for Mental Health Support Apps Overview Safe, ethical AI features for mental wellness applications. Implementation ```python from openai import OpenAI client = OpenAI() def run(query: str) -> str: r = client.chat.completions.create(

ai-applicationspecialized
10分钟
进阶其他

AI-Powered Job Board

Intelligent job matching and recommendation system

AI-Powered Job Board Overview Intelligent job matching and recommendation system. 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分钟
进阶其他

Secrets Management for AI: Security Guide

Best practices for managing API keys and model credentials

Secrets Management for AI: Security Guide Overview Best practices for managing API keys and model credentials. This guide provides complete, production-ready implementation. Key Concepts Understanding secrets management for ai: security guide req

securityai-safety
15分钟
进阶其他

Prompt Version Control: Production Patterns

Managing prompt versions with Git and automation

Prompt Version Control: Production Patterns Overview Managing prompt versions with Git and automation. This guide provides complete, production-ready implementation. Key Concepts Understanding prompt version control: production patterns requires:

llmpatterns
15分钟
进阶其他

Self-Consistency Sampling: Complete Guide and Examples

Master self-consistency sampling — multiple solutions voted by majority — best for reliable reasoning

Self-Consistency Sampling: Complete Guide What is Self-Consistency Sampling? Self-Consistency Sampling is a prompting technique that involves multiple solutions voted by majority. It is particularly effective for reliable reasoning. When to Use Se

prompt-engineeringself-consistency-sampling
12分钟
进阶其他

AWS Bedrock Integration: Production Guide

Deploying multiple AI models with AWS Bedrock foundation models

AWS Bedrock Integration Overview Deploying multiple AI models with AWS Bedrock foundation models. This guide provides practical, production-ready implementations. **Category**: cloud-ai **Primary Tool**: boto3 **Tags**: cloud-ai, api, producti

cloud-aiapi
15分钟
进阶其他

Hybrid Search RAG: Advanced RAG Tutorial

Combining vector and keyword search for better RAG retrieval

Hybrid Search RAG: Advanced RAG Tutorial Overview Combining vector and keyword search for better RAG retrieval. This guide provides complete, production-ready implementation. Key Concepts Understanding hybrid search rag: advanced rag tutorial req

hybrid-searchrag
15分钟
进阶其他

AI-Assisted TDD: Complete Developer Guide

Test-driven development enhanced with AI code generation — practical workflows for modern developers

AI-Assisted TDD Overview Test-driven development enhanced with AI code generation. AI-powered coding tools are transforming software development workflows. Setup ```bash Install required packages pip install openai anthropic python-dotenv Set AP

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

Chain-of-Thought Prompting: Complete Guide with Examples 2026

Master Chain-of-Thought Prompting for better AI outputs

Chain-of-Thought Prompting: Complete Guide 2026 What is Chain-of-Thought Prompting? Chain-of-Thought Prompting is a prompt engineering technique where you ask the model to show its reasoning step by step. It's one of the most effective methods for

prompt-engineeringchain-of-thought-prompting
12分钟
进阶其他

AI Token Economics

Understanding LLM token economics for product decisions

AI Token Economics Overview Understanding LLM token economics for product decisions. A comprehensive reference guide for insights practitioners. Quick Reference ```python from openai import OpenAI client = OpenAI() def solve_ai_token_economics(i

insightseconomics
10分钟
进阶其他

AI-Powered SQL and Analytics: Natural Language to Data Insights

How AI is transforming data analysis from SQL expertise requirement to natural language conversation

AI is democratizing data analysis: natural language to SQL tools let non-technical users query databases in plain English, AI-powered analytics platforms explain data patterns automatically, and LLM-assisted visualization creates charts from descriptions. This guide covers text-to-SQL techniques and pitfalls, AI analytics tools (ThoughtSpot, Tableau Einstein, Google Looker AI), building natural language interfaces for your data, and the future of AI-augmented data teams.

SQL AIdata analytics
30分钟
进阶其他

RAG System Design Best Practices: 2026 Developer Guide

Essential practices every AI developer should follow for rag system design

RAG System Design Best Practices 2026 Introduction Following best practices for rag system design is the difference between fragile prototypes and production-grade AI systems. This guide covers the most important practices that experienced AI devel

best-practicesrag-system-design
15分钟
进阶其他

Python AI Libraries in 2025: The Definitive Ecosystem Guide

Every major Python library for AI/ML development, when to use each, and how they fit together

The Python AI ecosystem has exploded with specialized libraries for every aspect of AI development. This comprehensive guide organizes the landscape: deep learning frameworks (PyTorch, JAX), LLM libraries (Transformers, PEFT, vLLM), ML libraries (scikit-learn, XGBoost, LightGBM), data processing (Pandas, Polars, Arrow), MLOps tools (MLflow, DVC, Weights & Biases), and LLM application frameworks (LangChain, LlamaIndex). Includes version compatibility notes and when to choose each library.

PythonAI libraries
35分钟
进阶其他

AI Ethics in Practice: Beyond Principles to Implementation

How organizations move from AI ethics statements to operational practices that actually work

Every major company has an AI ethics statement; few have operational practices that implement those principles. This guide bridges the gap: translating AI ethics principles (fairness, transparency, accountability, privacy) into concrete processes—bias auditing frameworks, model documentation standards, AI impact assessments, governance structures, and incident response protocols. Includes real examples from Google, Microsoft, and IBM's deployed AI ethics programs.

AI ethicsAI fairness
35分钟
进阶其他

AI-Powered Search Engine

Building semantic search with vector database — hands-on project tutorial

AI-Powered Search Engine What You'll Build Building semantic search with vector database. By the end of this tutorial, you'll have a fully working implementation you can extend for production use. **Time**: ~25 minutes **Difficulty**: Intermedia

tutorialhands-on
25分钟
进阶其他

Changelog Summarization AI: Practical Tutorial

Automatically summarizing git changelogs with AI

Changelog Summarization AI: Practical Tutorial Overview Automatically summarizing git changelogs with AI Implementation ```python from openai import OpenAI from pydantic import BaseModel from typing import Optional import json client = OpenAI()

tutorialpractical
10分钟
进阶其他

Java Spring AI Framework

AI integration with Spring Boot and Spring AI

Java Spring AI Framework Overview AI integration with Spring Boot and Spring AI Implementation ```python from openai import OpenAI from pydantic import BaseModel from typing import Optional import json client = OpenAI() class Handler: """Ha

programmingjava
10分钟
进阶其他

Chunking Strategies: Advanced RAG Tutorial

Optimal text chunking strategies for different document types

Chunking Strategies: Advanced RAG Tutorial Overview Optimal text chunking strategies for different document types. This guide provides complete, production-ready implementation. Key Concepts Understanding chunking strategies: advanced rag tutoria

chunkingrag
15分钟
进阶其他

Diagram to Code Conversion: Implementation Guide

Converting UI wireframes and diagrams to code with AI

Diagram to Code Conversion Overview Converting UI wireframes and diagrams to code with AI. This guide provides practical, production-ready implementations. **Category**: multimodal-ai **Primary Tool**: openai **Tags**: multimodal, vision, diag

multimodalvision
15分钟
进阶其他

Guidance Template Generation: Tutorial and Best Practices

Build production AI with Guidance — constrained LLM generation and control

Guidance Template Generation What is Guidance? Guidance is a framework for constrained LLM generation and control. It simplifies building AI applications by providing high-level abstractions over raw LLM APIs. **Best for**: control flow Installat

guidanceframework
15分钟
进阶其他

Vertical AI Applications: 2025 Guide

Domain-specific AI models outperforming general ones

Vertical AI Applications: 2025 Guide Overview Domain-specific AI models outperforming general ones. This comprehensive guide covers everything you need to know for production implementation. Why It Matters Vertical AI Applications: 2025 Guide is

vertical-aitrends
12分钟
进阶其他

AI API Cost Optimization Best Practices: 2026 Developer Guide

Essential practices every AI developer should follow for ai api cost optimization

AI API Cost Optimization Best Practices 2026 Introduction Following best practices for ai api cost optimization is the difference between fragile prototypes and production-grade AI systems. This guide covers the most important practices that experi

best-practicesai-api-cost-optimization
15分钟
进阶其他

AI Engineer Interview Prep

Complete interview preparation guide for AI engineering roles

AI Engineer Interview Prep Overview Complete interview preparation guide for AI engineering roles. A comprehensive reference guide for learning career practitioners. Quick Reference ```python from openai import OpenAI client = OpenAI() def solve

learninginterview
12分钟
进阶其他

Safe RL Agent Training

Safe reinforcement learning practices for AI agent development

Safe RL Agent Training Overview Safe reinforcement learning practices for AI agent development. This guide covers practical implementation strategies for production AI systems. Why It Matters As AI systems grow more capable and widely deployed, s

ai-safetyalignment
12分钟
进阶其他

Argilla Data Annotation: Complete Setup Guide

Human feedback collection for LLM fine-tuning

Argilla Data Annotation: Complete Setup Guide Overview Human feedback collection for LLM fine-tuning Implementation ```python from openai import OpenAI from pydantic import BaseModel from typing import Optional import json client = OpenAI() cla

ai-toolsargilla
10分钟
进阶其他

Visual Question Answering: Implementation Guide

Building VQA systems for answering questions about images

Visual Question Answering Overview Building VQA systems for answering questions about images. This guide provides practical, production-ready implementations. **Category**: multimodal-ai **Primary Tool**: openai **Tags**: multimodal, vision, v

multimodalvision
15分钟
进阶其他

AI Development with C#: Complete Guide 2026

Best AI tools and patterns for C# developers

AI Development with C2026 Introduction Cis used for ASP.NET, Unity, Windows, enterprise. This guide shows you the best AI tools, SDKs, and patterns for Cdevelopers building AI-powered applications. Top AI SDKs for C **Recommended**: Azure OpenAI,

c-ai-development
18分钟
进阶其他

Stripe MCP Server: Complete Setup and Usage Guide 2026

Process payments and manage subscriptions via AI - step-by-step guide to Stripe MCP Server

Stripe MCP Server: Complete Guide 2026 What is Stripe MCP Server? **Stripe MCP Server** is an MCP (Model Context Protocol) server that enables AI assistants to Process payments and manage subscriptions via AI. MCP is an open protocol that standardi

mcpmodel-context-protocol
15分钟
进阶其他

LangSmith vs Helicone vs Langfuse: Side-by-Side Comparison

LLM observability platform comparison — comparing monitoring across langsmith and langfuse

LangSmith vs Helicone vs Langfuse: Side-by-Side Comparison Overview LLM observability platform comparison — comparing monitoring across langsmith and langfuse. This comprehensive guide covers everything you need to know for production implementatio

comparisonlangsmith
15分钟
进阶其他

Helicone AI Gateway: Complete Setup Guide

Production AI logging and caching with Helicone

Helicone AI Gateway: Complete Setup Guide Overview Production AI logging and caching with Helicone Implementation ```python from openai import OpenAI from pydantic import BaseModel from typing import Optional import json client = OpenAI() class

ai-toolshelicone
10分钟
进阶其他

AI Model Caching: Developer Guide and Quick Start 2026

Learn AI Model Caching: reduce costs with intelligent caching

AI Model Caching: Developer Guide 2026 What is AI Model Caching? **AI Model Caching** enables reduce costs with intelligent caching. This guide covers everything you need to get started quickly. Why Use AI Model Caching? - Solves the specific pro

ai-model-cachingoptimization
10分钟
进阶其他

How to Create AI-Powered Search: Complete Guide for Developers 2026

Build a intelligent search engine step by step

How to Create AI-Powered Search 2026 Introduction In this tutorial, you'll learn how to **Create AI-Powered Search**. By the end, you'll have a working **intelligent search engine** that you can deploy and extend. **Prerequisites:** - Familiarity

how-tosearch
20分钟
进阶其他

FastAPI for AI Applications: Production AI APIs Guide 2026

Build robust, scalable AI APIs with FastAPI, Pydantic validation, and async support

FastAPI for AI Applications: production AI APIs 2026 Introduction Build robust, scalable AI APIs with FastAPI, Pydantic validation, and async support. This guide shows you how to effectively use FastAPI in your AI development workflow. Why FastAPI

fastapiai-development
20分钟
进阶其他

Grammar Correction AI: Complete Implementation

Automated grammar and style correction with LLMs

Grammar Correction AI Overview Automated grammar and style correction with LLMs. This guide provides practical, production-ready implementations. **Category**: nlp **Primary Tool**: openai **Tags**: nlp, grammar, text-processing Prerequisites

nlpgrammar
12分钟
进阶其他

Continuous Evaluation Pipeline: Complete Guide

Automating model quality checks in CI/CD pipelines — practical implementation

Continuous Evaluation Pipeline Overview Automating model quality checks in CI/CD pipelines. Rigorous evaluation is essential for building trustworthy AI applications. Why Evaluation Matters Without proper evaluation, you cannot: - Know if your mo

evaluationllm
12分钟
进阶其他

Build an AI Legal Document with Claude + PDF processing: Step-by-Step Tutorial 2026

Create a production-ready legal document analyzer from scratch

Build an AI Legal Document with Claude + PDF processing Project Overview In this tutorial, you'll build a complete **legal document analyzer** using Claude + PDF processing. By the end, you'll have a production-ready application you can deploy and

ai-legal-documentproject-tutorial
30分钟
进阶其他

Build an AI Podcast Summarizer with Whisper + Claude: Step-by-Step Tutorial 2026

Create a production-ready audio content analyzer from scratch

Build an AI Podcast Summarizer with Whisper + Claude Project Overview In this tutorial, you'll build a complete **audio content analyzer** using Whisper + Claude. By the end, you'll have a production-ready application you can deploy and customize.

ai-podcast-summarizerproject-tutorial
30分钟
进阶其他

AI Bug Fixer Pipeline: Complete Developer Guide

Automated bug detection and fix suggestion with LLMs — practical workflows for modern developers

AI Bug Fixer Pipeline Overview Automated bug detection and fix suggestion with LLMs. AI-powered coding tools are transforming software development workflows. Setup ```bash Install required packages pip install openai anthropic python-dotenv Set

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

Notion + AI API: How to Automate Notion with AI (2026)

Complete integration guide for Notion and AI API

Notion + AI API Integration Guide 2026 Overview This guide shows you exactly how to automate Notion with AI using Notion and AI API. We cover setup, core integration, and production-ready patterns. Prerequisites - Notion environment set up - AI A

notionai-api
20分钟
进阶其他

Model Selection Strategy: Production Patterns

Choosing the right LLM for each task type and cost tier

Model Selection Strategy: Production Patterns Overview Choosing the right LLM for each task type and cost tier. This guide provides complete, production-ready implementation. Key Concepts Understanding model selection strategy: production pattern

llmpatterns
15分钟
进阶其他

AI Summarization Pipeline

Summarizing long documents efficiently with map-reduce — hands-on project tutorial

AI Summarization Pipeline What You'll Build Summarizing long documents efficiently with map-reduce. 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分钟
进阶其他

AI Regex Generator: Complete Developer Guide

Using LLMs to generate and explain regular expressions — practical workflows for modern developers

AI Regex Generator Overview Using LLMs to generate and explain regular expressions. AI-powered coding tools are transforming software development workflows. Setup ```bash Install required packages pip install openai anthropic python-dotenv Set A

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

AI for Startups: Complete Guide

Building cost-effective AI products as an early-stage startup

AI for Startups: Complete Guide Overview Building cost-effective AI products as an early-stage startup. This guide provides complete, production-ready implementation. Key Concepts Understanding ai for startups: complete guide requires: 1. **Core

lean-aiai-applications
15分钟
进阶其他

AI Image Analysis Pipeline

Analyzing images with GPT-4 Vision API — hands-on project tutorial

AI Image Analysis Pipeline What You'll Build Analyzing images with GPT-4 Vision API. By the end of this tutorial, you'll have a fully working implementation you can extend for production use. **Time**: ~25 minutes **Difficulty**: Intermediate

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