File tree Expand file tree Collapse file tree 5 files changed +8
-4
lines changed Expand file tree Collapse file tree 5 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1+ ## 0.0.49
2+
3+ * Remove spurious whitespace in ` app-start.sh ` . ** This fixes deployments in some envs such as Google Cloud Run** .
4+
15## 0.0.48
26
37* ** Adds ` languages ` kwarg** ` ocr_languages ` will eventually be deprecated and replaced by ` lanugages ` to specify what languages to use for OCR
Original file line number Diff line number Diff line change 1111app = FastAPI (
1212 title = "Unstructured Pipeline API" ,
1313 description = """""" ,
14- version = "0.0.48 " ,
14+ version = "0.0.49 " ,
1515 docs_url = "/general/docs" ,
1616 openapi_url = "/general/openapi.json" ,
1717)
Original file line number Diff line number Diff line change @@ -569,7 +569,7 @@ def return_content_type(filename):
569569
570570
571571@router .post ("/general/v0/general" )
572- @router .post (f"/general/v { app . version } /general" )
572+ @router .post (f"/general/v0.0.49 /general" )
573573def pipeline_1 (
574574 request : Request ,
575575 gz_uncompressed_content_type : Optional [str ] = Form (default = None ),
Original file line number Diff line number Diff line change 11name : general
2- version : 0.0.48
2+ version : 0.0.49
Original file line number Diff line number Diff line change 1- #! /usr/bin/env bash
1+ #! /usr/bin/env bash
22
33UNSTRUCTURED_DOWNLOAD_CHIPPER=${UNSTRUCTURED_DOWNLOAD_CHIPPER:- " false" }
44
You can’t perform that action at this time.
0 commit comments