From a6d36a54ee9650f5613d8f9057723064f32e0952 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Jun 2024 10:32:40 +0000 Subject: [PATCH 1/3] Bump pydantic from 2.7.1 to 2.7.3 Bumps [pydantic](https://github.com/pydantic/pydantic) from 2.7.1 to 2.7.3. - [Release notes](https://github.com/pydantic/pydantic/releases) - [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md) - [Commits](https://github.com/pydantic/pydantic/compare/v2.7.1...v2.7.3) --- updated-dependencies: - dependency-name: pydantic dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 34d050c9..996c3715 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,7 @@ toml = "*" pypdf = "4.1.0" ratelimit = "2.2.1" loguru = "0.7.2" -pydantic = "2.7.2" +pydantic = "2.7.3" tenacity = "8.3.0" Pillow = "10.3.0" psutil = "*" From 0862d6a2996cc532f7fe118791c91bf92f9eb045 Mon Sep 17 00:00:00 2001 From: Kye Gomez <98760976+kyegomez@users.noreply.github.com> Date: Wed, 12 Jun 2024 19:07:20 -0700 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc59ec70..86634bac 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ api_key = os.environ.get("OPENAI_API_KEY") # Initialize the language model llm = OpenAIChat( - temperature=0.5, model_name="gpt-4", openai_api_key=api_key, max_tokens=4000 + temperature=0.5, openai_api_key=api_key, max_tokens=4000 ) From d4f4e128a024ff01ef38c5444736b2ee3ba86c9a Mon Sep 17 00:00:00 2001 From: Kye Gomez <98760976+kyegomez@users.noreply.github.com> Date: Thu, 13 Jun 2024 14:22:46 -0700 Subject: [PATCH 3/3] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 86634bac..1155b7cf 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,10 @@ The performance impact is rated on a scale from one to five stars, with multi-ag ---- ## Install 💻 -`$ pip3 install -U swarms` + +```bash +$ pip3 install -U swarms +``` ---