From 61c74bafcafbcc01f3e9c57e9ad36fa6ab686c62 Mon Sep 17 00:00:00 2001 From: dohertychristopher4 <43823143+dohertychristopher4@users.noreply.github.com> Date: Mon, 24 Jun 2024 16:53:39 +0100 Subject: [PATCH 1/2] feat: add Sonnet 3.5 and Opus to BedrockClaude's supported models (#1245) * adding sonnet 3.5 to supported models * adding opus to supported models * trying to resolve merge --------- Co-authored-by: Gabriele Venturi --- pandasai/llm/bedrock_claude.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pandasai/llm/bedrock_claude.py b/pandasai/llm/bedrock_claude.py index 1a18bf1b8..f0efbf992 100644 --- a/pandasai/llm/bedrock_claude.py +++ b/pandasai/llm/bedrock_claude.py @@ -31,6 +31,10 @@ class BedrockClaude(LLM): _supported__models = [ "anthropic.claude-3-opus-20240229-v1:0", +<<<<<<< fix/adding_sonnet35_to_bedrock + "anthropic.claude-3-5-sonnet-20240620-v1:0", +======= +>>>>>>> main "anthropic.claude-3-sonnet-20240229-v1:0", "anthropic.claude-3-haiku-20240307-v1:0", ] From 8711c8d60fac9a7554ec9dd49c0969852b97e57e Mon Sep 17 00:00:00 2001 From: Gabriele Venturi Date: Mon, 24 Jun 2024 17:54:17 +0200 Subject: [PATCH 2/2] Release v2.2.6 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index fc649d894..8c1812971 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pandasai" -version = "2.2.5" +version = "2.2.6" description = "Chat with your database (SQL, CSV, pandas, polars, mongodb, noSQL, etc). PandasAI makes data analysis conversational using LLMs (GPT 3.5 / 4, Anthropic, VertexAI) and RAG." authors = ["Gabriele Venturi"] license = "MIT"