From 825f6519a47285510b0d5157f4806837bd6d5392 Mon Sep 17 00:00:00 2001 From: Bakunga Bronson <51344005+BakungaBronson@users.noreply.github.com> Date: Sun, 20 Oct 2024 22:26:26 +0800 Subject: [PATCH 1/2] Update installing requirements section Changed the command to install all the requirements and not just litellm. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c921928..b836876 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Ditto is a user-friendly tool that allows you to generate a multi-file Flask app 3. **Install Dependencies** ```bash - pip install litellm + pip install -r requirements.txt ``` ### Setting the `OPENAI_API_KEY` From 143a2d37aa50e14298b3a41844ed67d969d2dae6 Mon Sep 17 00:00:00 2001 From: Bakunga Bronson <51344005+BakungaBronson@users.noreply.github.com> Date: Mon, 21 Oct 2024 22:46:16 +0800 Subject: [PATCH 2/2] Bump required Python version from 3.7 to 3.9 Minimum Python version that can install the requirements without errors. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b836876..5190cf1 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Ditto is a user-friendly tool that allows you to generate a multi-file Flask app ### Prerequisites -- Python 3.7 or higher +- Python 3.9 or higher - `pip` package manager ### Installation