RS: Recommender Systems—algorithms designed to suggest relevant items to users
CTR: Click-Through Rate—a metric measuring the ratio of users who click on a specific link to the number of total users who view a page
InteRecAgent: The specific AI agent framework in RecAI where LLMs act as the brain and traditional RS models act as tools
RecLM-emb: A language model fine-tuned to convert diverse text types (conversations, attributes) into embeddings for item retrieval
RecLM-gen: A generative language model fine-tuned to directly output item names or recommendations in natural language
DOKE: Domain-specific Knowledge Enhancement—a paradigm to inject domain knowledge into LLM prompts without parameter updates
Candidate Bus: A memory module in InteRecAgent that stores item candidates and tool outputs to facilitate interaction without burdening the LLM context window
Fuzzy matching: A string matching technique used here to validate generative recommendations where the LLM might output slight variations of an item name
In-context learning: The ability of a model to learn a task from examples provided in the prompt at inference time, without weight updates