From d2b66fa7a74ffef02151c085fd752d4effa70e08 Mon Sep 17 00:00:00 2001 From: Collin Dutter Date: Wed, 7 Feb 2024 08:58:26 -0800 Subject: [PATCH] Update changelog --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index baa43cb8a..2df3c0421 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `OpenAiStructureConfig` for providing Structures with all OpenAi Driver configuration. - `AmazonBedrockStructureConfig` for providing Structures with all Amazon Bedrock Driver configuration. - `StructureConfig` for building your own Structure configuration. +- `JsonExtractionTask` for convenience over using `ExtractionTask` with a `JsonExtractionEngine`. +- `CsvExtractionTask` for convenience over using `ExtractionTask` with a `CsvExtractionEngine`. ### Fixed - `BedrockStableDiffusionImageGenerationModelDriver` request parameters for SDXLv1. @@ -27,6 +29,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Deprecated `Structure.prompt_driver` in favor of `Structure.global_drivers.prompt_driver`. - Deprecated `Structure.embedding_driver` in favor of `Structure.global_drivers.embedding_driver`. - Deprecated `Structure.stream` in favor of `Structure.global_drivers.prompt_driver.stream`. +- `TextSummaryTask.summary_engine` now defaults to a `PromptSummaryEngine` with a Prompt Driver default of `Structure.global_drivers.prompt_driver`. +- `TextQueryTask.query_engine` now defaults to a `VectorQueryEngine` with a Prompt Driver default of `Structure.global_drivers.prompt_driver` and Vector Store Driver default of `Structure.global_drivers.vector_store_driver`. +- `PromptImageGenerationTask.image_generation_engine` now defaults to a `PromptImageGenerationEngine` with an Image Generation Driver default of `Structure.global_drivers.image_generation_driver`. +- `VariationImageGenerationTask.image_generation_engine` now defaults to a `VariationImageGenerationEngine` with an Image Generation Driver default of `Structure.global_drivers.image_generation_driver`. +- `InpaintingImageGenerationTask.image_generation_engine` now defaults to an `InpaintingImageGenerationEngine` with an Image Generation Driver default of `Structure.global_drivers.image_generation_driver`. +- `OutpaintingImageGenerationTask.image_generation_engine` now defaults to an `OutpaintingImageGenerationEngine` with an Image Generation Driver default of `Structure.global_drivers.image_generation_driver`. ## [0.22.3] - 2024-01-22