← 返回 English 列表

标签:AI Interview

共 17 篇

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…

Function Calling Technical Summary

# Function Calling Technical Summary ## 1. Definition Function Calling is a mechanism that allows developers to describe available external tools (such as APIs) to a large language model (LLM) via JSON schema. When the model determines that a tool is needed to answer the user's question, it outp…