LangChain - Conversational RAG
Given this simplified Langchain code snippet, what will be the output of the retriever's document titles?
```python
history = ["What is AI?", "Explain machine learning."]
query = "How does RAG use history?"
docs = retriever.get_relevant_documents(query + ' ' + ' '.join(history))
titles = [doc.metadata['title'] for doc in docs]
print(titles)
```
