We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Originally posted by jmottishaw December 24, 2024 Azure Document Intelligence is falling on tables that have blank values in them.
the bad 'content' details are polluting my outputs. I had to implement something like this:
table_only_data = { "content": "\n".join([", ".join(row) for row in single_page_data.get("tables", [])]), # Tables as content "filename": single_page_data.get("filename"), "pageNo": single_page_data.get("pageNo") }
I tried using description fields to tell the LLM to only use table data and not content but that failed miserably. Is there a better way to do this?
The text was updated successfully, but these errors were encountered:
enoch3712
No branches or pull requests
Discussed in #149
Originally posted by jmottishaw December 24, 2024
Azure Document Intelligence is falling on tables that have blank values in them.
the bad 'content' details are polluting my outputs. I had to implement something like this:
I tried using description fields to tell the LLM to only use table data and not content but that failed miserably. Is there a better way to do this?
The text was updated successfully, but these errors were encountered: