GENERATIVE-AI-ENGINEER-ASSOCIATE · Question #28
Which TWO chain components are required for building a basic LLM-enabled chat application that includes conversational capabilities, knowledge retrieval, and contextual memory? (Choose two.)
The correct answer is A. Vector Stores B. Conversation Buffer Memory. Vector Stores (Option A) are the foundational component for knowledge retrieval. They store document embeddings and enable semantic similarity search, allowing the chatbot to retrieve relevant context from a knowledge base before generating a response. Conversation Buffer…
Question
Which TWO chain components are required for building a basic LLM-enabled chat application that includes conversational capabilities, knowledge retrieval, and contextual memory? (Choose two.)
Options
- AVector Stores
- BConversation Buffer Memory
- CExternal tools
- DChat loaders
- EReact Components
How the community answered
(19 responses)- A89% (17)
- C5% (1)
- D5% (1)
Explanation
Vector Stores (Option A) are the foundational component for knowledge retrieval. They store document embeddings and enable semantic similarity search, allowing the chatbot to retrieve relevant context from a knowledge base before generating a response. Conversation Buffer Memory (Option B) is required for contextual memory, storing the history of prior messages in the conversation so the LLM can reference what was said earlier. Together, these two components directly address the three stated requirements: Vector Stores handle knowledge retrieval, and Conversation Buffer Memory enables conversational continuity and context. External tools (Option C) and Chat Loaders (Option D) are optional add-ons, while React Components (Option E) are a UI framework, not an LLM chain component.
Topics
Community Discussion
No community discussion yet for this question.