Find answers from the community

A
Antons
Offline, last seen 4 months ago
Joined September 25, 2024
Hi all, I need advice which LLM observability tool to use - Arize Phoenix or Langfuze. Anyone can suggest? I use mostly LlamaIndex and would preffer self-hosted open-source one.
2 comments
A
W
A
Antons
·

Q&A

Hey guys, has anyone work with Reverse HyDE with LlamaIndex? Reverse Hyde (Hypothetical Document Embeddings) is when during embedding, each chunk gets generated not just a vector representation and some metadata, but also generates and stores a list of questions that it potentially can answer. Not much info in the documentation about it, just for regular HyDE (which is different from Reverse HyDE).
3 comments
A
S
L
Hi everyone, has anyone found a solution or a workaround to a serialization bug for chat storage? A bug when trying to do
Plain Text
chat_store.persist(persist_path="chat_store.json")
loaded_chat_store = SimpleChatStore.from_persist_path(
    persist_path="chat_store.json"
)

or even just
Plain Text
chat_store_string = chat_store.json()
2 comments
L
W