Hello Jay Lee,
Welcome to the Microsoft Q&A and thank you for posting your questions here.
I understand that your issues regarding your question.
Yes, to your question.
Retrieving the actual text from the vector store using the client.listMessages(threadId) method in the azure-ai-openai-assistants 1.0.0-beta.4 library will only returns ThreadMessages that only contain file citations.
You will need to use different approach or method:
- How to retrieve the actual text documentation is here - https://learn.microsoft.com/en-us/dotnet/api/overview/azure/ai.openai.assistants-readme?view=azure-dotnet-preview for your review.
- You can use these alternatives:
- client.getMessage(threadId, messageId)
- client.getThread(threadId)
- client.searchMessages(query)
- client.getFile(fileId)
I hope this is helpful! Do not hesitate to let me know if you have any other questions.
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful.