教程中心

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

2024

教程总数

368

入门教程

45

实操教程

进阶其他

ML Engineer Interview Questions

Top ML engineering interview questions with answers

ML Engineer Interview Questions Overview Top ML engineering interview questions with answers. A comprehensive reference guide for learning career practitioners. Quick Reference ```python from openai import OpenAI client = OpenAI() def solve_ml_e

learninginterview
12分钟
进阶其他

Fine-tune Llama 3.2 on Your Data

End-to-end Llama 3.2 fine-tuning on custom dataset — hands-on project tutorial

Fine-tune Llama 3.2 on Your Data What You'll Build End-to-end Llama 3.2 fine-tuning on custom dataset. 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分钟
进阶其他

Pinecone Serverless Vectors: Tutorial and Best Practices

Build production AI with Pinecone — managed serverless vector store

Pinecone Serverless Vectors What is Pinecone? Pinecone is a framework for managed serverless vector store. It simplifies building AI applications by providing high-level abstractions over raw LLM APIs. **Best for**: vector database Installation

pineconeframework
15分钟
进阶其他

Automated Red Team Testing: Complete Guide

Using LLMs to automate safety and quality red-teaming — practical implementation

Automated Red Team Testing Overview Using LLMs to automate safety and quality red-teaming. Rigorous evaluation is essential for building trustworthy AI applications. Why Evaluation Matters Without proper evaluation, you cannot: - Know if your mod

evaluationllm
12分钟
进阶其他

Async LLM Patterns: Production Patterns

Asynchronous LLM calls for high-throughput applications

Async LLM Patterns: Production Patterns Overview Asynchronous LLM calls for high-throughput applications. This guide provides complete, production-ready implementation. Key Concepts Understanding async llm patterns: production patterns requires:

llmpatterns
15分钟
进阶其他

AI Performance Profiler: Developer Workflow

AI analysis of performance bottlenecks and solutions

AI Performance Profiler: Developer Workflow Overview AI analysis of performance bottlenecks and solutions. This guide provides complete, production-ready implementation. Key Concepts Understanding ai performance profiler: developer workflow requi

developer-toolsproductivity
15分钟
进阶其他

AI Workflow: AI-powered learning path generation

Complete guide to AI-powered learning path generation using AI tools and automation

AI Workflow: AI-powered learning path generation Overview Complete guide to AI-powered learning path generation using AI tools and automation Implementation ```python from openai import OpenAI from pydantic import BaseModel from typing import Opt

productivityworkflow
8分钟
进阶其他

Information Extraction from Text: Complete Implementation

Extracting structured data from unstructured text with LLMs

Information Extraction from Text Overview Extracting structured data from unstructured text with LLMs. This guide provides practical, production-ready implementations. **Category**: nlp **Primary Tool**: instructor **Tags**: nlp, extraction, t

nlpextraction
12分钟
进阶其他

How to Build a PDF Question Answering System: Complete Guide for Developers 2026

Build a document analysis tool step by step

How to Build a PDF Question Answering System 2026 Introduction In this tutorial, you'll learn how to **Build a PDF Question Answering System**. By the end, you'll have a working **document analysis tool** that you can deploy and extend. **Prerequi

how-topdf-question
20分钟
进阶其他

DeepSeek-R1 (2025-12): What's New and How to Use It

Complete guide to the latest DeepSeek-R1 capabilities: chain-of-thought reasoning, math SOTA, cheap

DeepSeek-R1 (2025-12): Complete Guide What's New in DeepSeek-R1 2025-12 The latest version of **DeepSeek-R1** brings significant improvements: chain-of-thought reasoning, math SOTA, cheap. This release represents a major step forward in AI capabil

deepseek-r1latest-ai
10分钟
进阶其他

DSPy Programmatic LLMs: Tutorial and Best Practices

Build production AI with DSPy — typed LLM programming with optimization

DSPy Programmatic LLMs What is DSPy? DSPy is a framework for typed LLM programming with optimization. It simplifies building AI applications by providing high-level abstractions over raw LLM APIs. **Best for**: optimization Installation ```bash

dspyframework
15分钟
进阶其他

Program-of-Thought: Complete Guide and Examples

Master program-of-thought — code execution as reasoning substrate — best for quantitative tasks

Program-of-Thought: Complete Guide What is Program-of-Thought? Program-of-Thought is a prompting technique that involves code execution as reasoning substrate. It is particularly effective for quantitative tasks. When to Use Program-of-Thought Us

prompt-engineeringprogram-of-thought
12分钟
进阶其他

Graph RAG: Advanced RAG Tutorial

Knowledge graph enhanced retrieval for complex reasoning

Graph RAG: Advanced RAG Tutorial Overview Knowledge graph enhanced retrieval for complex reasoning. This guide provides complete, production-ready implementation. Key Concepts Understanding graph rag: advanced rag tutorial requires: 1. **Core pr

graph-ragrag
15分钟
进阶其他

Embedding Model Fine-tuning: Practical Tutorial

Fine-tuning embedding models for domain-specific retrieval

Embedding Model Fine-tuning: Practical Tutorial Overview Fine-tuning embedding models for domain-specific retrieval Implementation ```python from openai import OpenAI from pydantic import BaseModel from typing import Optional import json client

tutorialpractical
10分钟
进阶其他

OpenAI Assistants API: Developer Guide and Quick Start 2026

Learn OpenAI Assistants API: threads, files, and function calling

OpenAI Assistants API: Developer Guide 2026 What is OpenAI Assistants API? **OpenAI Assistants API** enables threads, files, and function calling. This guide covers everything you need to get started quickly. Why Use OpenAI Assistants API? - Solv

openai-assistants-apiapi-guide
10分钟
进阶其他

Prompt Injection Prevention

Protecting LLM apps from prompt injection and jailbreak attacks

Prompt Injection Prevention Overview Protecting LLM apps from prompt injection and jailbreak attacks. This guide covers practical implementation strategies for production AI systems. Why It Matters As AI systems grow more capable and widely deplo

ai-safetyalignment
12分钟
进阶其他

AI Workflow: Using AI for deep research and literature review

Complete guide to Using AI for deep research and literature review using AI tools and automation

AI Workflow: Using AI for deep research and literature review Overview Complete guide to Using AI for deep research and literature review using AI tools and automation Implementation ```python from openai import OpenAI from pydantic import BaseMo

productivityworkflow
8分钟
进阶其他

AI Book Summary Service

Automated book summarization and key insights extraction

AI Book Summary Service Overview Automated book summarization and key insights extraction. Implementation ```python from openai import OpenAI client = OpenAI() def run(query: str) -> str: r = client.chat.completions.create( model="gp

ai-applicationspecialized
10分钟
进阶其他

Tree of Thoughts: Complete Guide and Examples

Master tree of thoughts — branching reasoning paths for complex problems — best for multi-step problems

Tree of Thoughts: Complete Guide What is Tree of Thoughts? Tree of Thoughts is a prompting technique that involves branching reasoning paths for complex problems. It is particularly effective for multi-step problems. When to Use Tree of Thoughts

prompt-engineeringtree-of-thoughts
12分钟
上一页25 / 25