Hello! I am super twisted and confused and could REALLY use a hand. I am using create_llama. created my db and index (i think) in supabase. Embedded 150k rows of data. trying to figure out how to know what text its using.
# query chat engine
response = chat_engine.stream_chat(lastMessage.content, messages)
logging.info(f"response {response}")
logging.info(f"response.sources {response.sources}")
for source in response.sources:
logging.info(f"source {source}")
## log all response attributes
logging.info(response.source_nodes)
logging.info(response.response_gen)
logging.info(response)
but getting blank sources:
INFO:root:response
INFO:root:response.sources []
INFO:root:[]
INFO:root:<generator object StreamingAgentChatResponse.response_gen at 0x00000176F37926C0>INFO:root:
Any hands given would be HUGELY appreciated. trying to impress my boss lol. thank you!