Skip to content

Latest commit

 

History

History
58 lines (38 loc) · 858 Bytes

README.md

File metadata and controls

58 lines (38 loc) · 858 Bytes

Usage local

Create env

conda create -n reviewer python=3.12

Acitvate env

conda activate reviewer

Install requirements

pip install -r requirements.txt

Run

gradio app.py

Open the Web Browser and Upload Your Paper

Open http://0.0.0.0:7799 and upload your paper + enter OpenAI API key . The feedback will be generated in around ~120 seconds.

You should get the following output:

If you encounter any error, please first check the server log and then open an issue.

Usage Docker

sudo docker build -t llm-reviewer .
sudo docker images
sudo docker run -d -p 7799:7799 llm-reviewer

Nginx

sudo vim /etc/nginx/sites-enabled/llmreview
sudo systemctl reload nginx
sudo systemctl restart nginx