LangChain - Embeddings and Vector Stores
Given the following code snippet, what will
results contain after running store.similarity_search('Hello world')?
embed = SomeEmbeddingFunction()
store = Chroma(embedding_function=embed, collection_name='texts')
store.add_texts(['Hello world', 'Goodbye world'])
results = store.similarity_search('Hello world')