Hi Ehrensperger Tim,
Greetings & Welcome to Microsoft Q&A forum! Thanks for posting your query!
The chunking of JSON files in Azure OpenAI Service typically happens either during the indexing process in Azure Cognitive Search or query time when documents are split into smaller chunks to fit the model’s token limit. While querying the index with *
shows unchunked files, the chatbot retrieves smaller chunks to construct responses.
To prevent chunking, ensure that your files are indexed as single units by storing the full content in one field (e.g., content
), and configure your chatbot’s retrieval workflow to fetch entire documents without splitting. In Azure AI Studio or your integration pipeline, adjust retrieval and formatting logic to pass unchunked files to the model, ensuring references and context remain intact, which can reduce hallucinations and improve relevance.
Hope this helps. Do let us know if you have any further queries.
If this answers your query, do click Accept Answer
and Yes
for was this answer helpful.