From 64762887f0c36b597166e70cd27be13fc860c8a1 Mon Sep 17 00:00:00 2001 From: Eduardo Chiarotti Date: Tue, 13 Aug 2024 08:39:20 -0300 Subject: [PATCH 1/3] docs: fix issue on Dalle tool docs --- src/crewai_tools/tools/dalle_tool/README.MD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/crewai_tools/tools/dalle_tool/README.MD b/src/crewai_tools/tools/dalle_tool/README.MD index a315c7c10..5924fb7d1 100644 --- a/src/crewai_tools/tools/dalle_tool/README.MD +++ b/src/crewai_tools/tools/dalle_tool/README.MD @@ -27,10 +27,10 @@ If needed you can also tweak the parameters of the DALL-E model by passing them ```python from crewai_tools import DallETool -dalle_tool = DallETool(model: str = "dall-e-3", - size: str = "1024x1024", - quality: str = "standard", - n: int = 1) +dalle_tool = DallETool(model="dall-e-3", + size="1024x1024", + quality="standard", + n= 1) Agent( ... From b47926b1d9bc8b9e202c74f6ff9dfba2f5c6e7c1 Mon Sep 17 00:00:00 2001 From: Eduardo Chiarotti Date: Tue, 13 Aug 2024 08:39:49 -0300 Subject: [PATCH 2/3] docs: fix plural --- src/crewai_tools/tools/dalle_tool/README.MD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crewai_tools/tools/dalle_tool/README.MD b/src/crewai_tools/tools/dalle_tool/README.MD index 5924fb7d1..a33cb55af 100644 --- a/src/crewai_tools/tools/dalle_tool/README.MD +++ b/src/crewai_tools/tools/dalle_tool/README.MD @@ -38,4 +38,4 @@ Agent( ) ``` -The parameter are based on the `client.images.generate` method from the OpenAI API. For more information on the parameters, please refer to the [OpenAI API documentation](https://platform.openai.com/docs/guides/images/introduction?lang=python). +The parameters are based on the `client.images.generate` method from the OpenAI API. For more information on the parameters, please refer to the [OpenAI API documentation](https://platform.openai.com/docs/guides/images/introduction?lang=python). From a228732423a46c8504c3a3ec05b8ad2c54518786 Mon Sep 17 00:00:00 2001 From: Eduardo Chiarotti Date: Tue, 13 Aug 2024 08:40:12 -0300 Subject: [PATCH 3/3] docs: fix --- src/crewai_tools/tools/dalle_tool/README.MD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crewai_tools/tools/dalle_tool/README.MD b/src/crewai_tools/tools/dalle_tool/README.MD index a33cb55af..8f65e78e5 100644 --- a/src/crewai_tools/tools/dalle_tool/README.MD +++ b/src/crewai_tools/tools/dalle_tool/README.MD @@ -30,7 +30,7 @@ from crewai_tools import DallETool dalle_tool = DallETool(model="dall-e-3", size="1024x1024", quality="standard", - n= 1) + n=1) Agent( ...