← 返回 English 列表

标签:AI Knowledge

共 24 篇

Claude Code Series Tutorial 5: How to Install Claude Code?

## How to Install Claude Code Installing Claude Code has no graphical interface with "Next" buttons; everything is done in the command line. If you usually use npm, the whole process takes no more than two minutes. ### Prerequisites Before you start, make sure you have the following: - **Node.js…

Claude Code Tutorial 3: Why Only the Terminal?

## 1.3 Why Write Code in the Terminal? Here's an analogy: you're working on a new feature and suddenly need to modify a low-level utility function scattered across three files, with some calls crossing module boundaries. You open your editor, do a global search, flip through files one by one, make …

Claude Code Series Tutorial 1: What is Claude Code?

## 1.1 What is Claude Code? ### One Sentence Definition **Claude Code is an AI programming agent (Agent) running in the terminal (Terminal) launched by Anthropic.** Developers describe tasks in natural language, and it can actively read the codebase, propose modifications, execute commands, run test…

AI Interview Series 12: How to Optimize Prompts?

Prompt tuning (Prompt Engineering / Optimization) is a key skill for making large language models "obedient." Especially in RAG systems, it directly determines whether the model faithfully adheres to retrieved content, avoids hallucinations, and follows output format specifications. --- ## 1. Core…

AI Series Interview Question 11: How to Optimize RAG?

Optimizing RAG is not a single-step adjustment but a **full-chain optimization** process. Below I provide systematic optimization strategies from four dimensions: **data indexing side, retrieval side, generation side, and evaluation side**, along with practical experience that can be mentioned in in…