Releases: griptape-ai/griptape
Releases · griptape-ai/griptape
v0.16.0
🆕 New Features
- Added
AmazonSageMakerPromptDriver
to easily connect open source SageMaker-hosted LLMs. - Introduced prompt model drivers that abstract input, output, and tokenization for hosted models. In this release we added support for:
- Llama models with
SageMakerLlamaPromptModelDriver
. - Falcon models with
SageMakerFalconPromptModelDriver
.
- Llama models with
- Added `OpenSearchVectorDriver to integrate OpenSearch vector store and querying capabilities.
- Added
AmazonOpenSearchVectorDriver
to support hosted OpenSearch. - Added
TextSummaryTask
for quick text summarization in Griptape structures. - Added
ToolTask
that allows developers to integrate any tools as a task without having to use chain-of-thought. - Added
TextQueryTask
for text querying in Griptape structures. - Added
CsvLoader
for loading and pre-processing CSV files.
🔧 Improvements
- Merged the
core
namespace intoutils
and moved all mixins into a separatemixins
namespace. - Multiple bug fixes.
v0.15.3
v0.15.2
v0.15.1
v0.15.0
🚨 Breaking Changes
griptape-tools
was merged intogriptape
. You can removegriptape-tools
from your dependencies.PromptTask.prompt_template
was renamed toPromptTask.input_template
.KnowledgeBaseClient
tool was renamed toVectorStoreClient
.OpenAiPromptDriver
was split intoOpenAiChatPromptDriver
andOpenAiCompletionPromptDriver
.input
was renamed toparent_output
in agent and pipeline contexts.inputs
was renamed toparent_outputs
in workflow contexts.
🆕 New Features
- Added
PromptStack
to manage prompt task inputs. IntegratedPromptStack
into prompt drivers. - Consolidated prompt templates into generator functions, which makes it easier for developers to override task and engine prompts.
- Added the
GoogleCalendar
tool. - Added the
GoogleGmail
tool. - Added the
ProxycurlClient
tool. - Added
MongoDbAtlasVectorStoreDriver
. - Added
RedisVectorStoreDriver
🔧 Improvements
- Fixed
AzureOpenAiEmbeddingDriver
connectivity issues. - Added validation for tasks to all structures.