File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1313app = FastAPI (
1414 title = "Unstructured Pipeline API" ,
1515 summary = "Partition documents with the Unstructured library" ,
16- version = "0.0.85 " ,
16+ version = "0.0.86 " ,
1717 docs_url = "/general/docs" ,
1818 openapi_url = "/general/openapi.json" ,
1919 servers = [
Original file line number Diff line number Diff line change @@ -600,7 +600,7 @@ def return_content_type(filename: str):
600600
601601
602602@router .get ("/general/v0/general" , include_in_schema = False )
603- @router .get ("/general/v0.0.85 /general" , include_in_schema = False )
603+ @router .get ("/general/v0.0.86 /general" , include_in_schema = False )
604604async def handle_invalid_get_request ():
605605 raise HTTPException (
606606 status_code = status .HTTP_405_METHOD_NOT_ALLOWED , detail = "Only POST requests are supported."
@@ -615,7 +615,7 @@ async def handle_invalid_get_request():
615615 description = "Description" ,
616616 operation_id = "partition_parameters" ,
617617)
618- @router .post ("/general/v0.0.85 /general" , include_in_schema = False )
618+ @router .post ("/general/v0.0.86 /general" , include_in_schema = False )
619619def general_partition (
620620 request : Request ,
621621 # cannot use annotated type here because of a bug described here:
You can’t perform that action at this time.
0 commit comments