From c1b40e26f17aefec0f98e1452a604aff4c184de8 Mon Sep 17 00:00:00 2001 From: Michael Yuan Date: Mon, 23 Dec 2024 20:13:16 -0600 Subject: [PATCH 1/3] Update README.md Simpler instructions --- README.md | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e5742b7..e310bfd 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,15 @@ # QuickStart + +Install dependencies + ```bash -pip install poetry -poetry install +pip install gradio +pip install soundfile +pip install openai +``` + +Start the server -# run -poetry run python main.py -``` \ No newline at end of file +``` +python main.py +``` From 4f854d54af0004529a92f24d31de9531df457027 Mon Sep 17 00:00:00 2001 From: Michael Yuan Date: Tue, 24 Dec 2024 10:35:47 -0600 Subject: [PATCH 2/3] Update README.md --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e310bfd..c4bcb13 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,14 @@ pip install soundfile pip install openai ``` -Start the server +Start the server with default English prompts ``` python main.py ``` + +Start the server with Chinese prompts + +``` +LANG=zh python main.py +``` From f470af35090a556819b0419cc4d81580fe2d6690 Mon Sep 17 00:00:00 2001 From: Michael Yuan Date: Wed, 25 Dec 2024 11:36:32 -0600 Subject: [PATCH 3/3] Update README.md --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index c4bcb13..9232e1f 100644 --- a/README.md +++ b/README.md @@ -19,3 +19,15 @@ Start the server with Chinese prompts ``` LANG=zh python main.py ``` + +Start the server on an alternative port (8080 instead of 7680) with Chinese prompts + +``` +GRADIO_SERVER_PORT=8080 LANG=zh python main.py +``` + +Start the server with a public access URL + +``` +GRADIO_SHARE="True" python main.py +```