テクニカルレポート(PDF形式及びdocx形式)をアップロードすると自動でレビューを行うWebアプリケーションです。 ※このWebアプリケーションは日本語の文書にのみ対応しています。
- Python v3.7 または最新版
- Node.js v14 または最新版
- docker-composeを以下のように実行する。
docker-compose up --build
初回は--buildが必要ですが、二回目以降は必要ありません。
- 以下のアドレスをブラウザに入力し、接続する。
A web application that automatically reviews technical reports (PDF and docx formats) when they are uploaded. *This web application only supports documents in Japanese.
- Python v3.7 or later
- Node.js v14 or later
- Run docker-compose
docker-compose up --build
The first time you need to use --build, but not the second and subsequent times.
- Access front service
Upload a pdf file to web app by curl.
curl -X POST -F 'file=@./example.pdf' http://localhost:8000/api/v1/analysis
Enable hot reload for dev.
uvicorn main:app --reload