LangChain - Conversational RAG
Identify the error in this Langchain RAG snippet that tries to include conversation history:
```python
history = ["User: What is AI?", "Assistant: AI is...]
query = "Explain RAG."
full_query = query + history
docs = retriever.get_relevant_documents(full_query)
```
