Azure Document Intelligence (formrecognizer) – 'InvalidContent' when passing pdf
I upload a pdf file to my streamlit application like this: import streamlit as st uploaded_file = st.file_uploader("Upload pdf file", type="pdf") result = analyze_general_document(uploaded_file) I want to analzye this pdf using the Azure Document Intelligence python package like this: from…