All Questions
Tagged with cloud-document-ai javascript
6 questions
-1
votes
1
answer
787
views
Google Cloud function - Document Ai error
I'm trying to write a Firebase cloud function that triggers when an image is uploaded to a specific bucket. It sends that image over to document ai to be processed by a custom processor and logs the ...
-3
votes
1
answer
1k
views
I try to implement the GOOGLE document AI API
I try to implement the document AI API to be able to compare a document to see if it comes with phrases to know if the document is valid.
I am using nodejs to implement the document AI API,
and the ...
0
votes
1
answer
896
views
Google Document AI Api integration in ReactJs
Have anyone integrated Cloud Document AI Api in ReactJs?
If so, what’s the way procedure of it’s integration?
https://cloud.google.com/document-ai/docs/reference/rest
I didn’t found any proper way to ...
8
votes
2
answers
5k
views
Firebase Deployment failure - Could not find functions.yaml. Must use http discovery [closed]
I'm trying to deploy a firebase cloud function, but I keep getting this error. The weirdest part is that I had it working fine but switched from firebase talking to cloud vision over to firebase ...
0
votes
1
answer
79
views
How can I store the data of "KEY" & "textValue" as JSON and send it as response for app.get("/api", (req, res)?
I'm working on GCP Document AI using Node.js and react.js, In the given code I have created JSON structure (var jsonResult) then in for loop I get all the different key and text value data only if I ...
0
votes
2
answers
678
views
Cloud Document AI can't process documents from storage
I have the following code:
const client = new DocumentProcessorServiceClient();
const inputConfig = {
mimeType: 'application/pdf',
gcsSource: {
uri: gcsSourceUri,
},
};
const ...