Skip to content

Commit 3ef4fe3

Browse files
chore: pin downstream packages to giskard-llm 1.0.0 (#2797)
Require the stable giskard-llm 1.0.0 release instead of 1.0.0rc1 in giskard-agents and the root giskard extras. Co-authored-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: Kevin Messiaen <kevinmessiaen@users.noreply.github.com>
1 parent 2eb5491 commit 3ef4fe3

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

libs/giskard-agents/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = { text = "MIT" }
77
authors = [{ name = "Giskard R&D", email = "rnd@giskard.ai" }]
88
requires-python = ">=3.12"
99
dependencies = [
10-
"giskard-llm>=1.0.0rc1,<2",
10+
"giskard-llm>=1.0.0,<2",
1111
"pydantic>=2.11.0,<3",
1212
"griffe>=1.7.0,<3",
1313
"typing-extensions>=4.14.0,<5",
@@ -19,11 +19,11 @@ dependencies = [
1919
]
2020

2121
[project.optional-dependencies]
22-
openai = ["giskard-llm[openai]>=1.0.0rc1,<2"]
23-
google = ["giskard-llm[google]>=1.0.0rc1,<2"]
24-
anthropic = ["giskard-llm[anthropic]>=1.0.0rc1,<2"]
22+
openai = ["giskard-llm[openai]>=1.0.0,<2"]
23+
google = ["giskard-llm[google]>=1.0.0,<2"]
24+
anthropic = ["giskard-llm[anthropic]>=1.0.0,<2"]
2525
litellm = ["litellm>=1.83.0,<2"]
26-
all = ["giskard-llm[all]>=1.0.0rc1,<2"]
26+
all = ["giskard-llm[all]>=1.0.0,<2"]
2727

2828
[build-system]
2929
requires = ["hatchling"]

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ requires-python = ">=3.12"
2525

2626
[project.optional-dependencies]
2727
# Native LLM providers
28-
openai = ["giskard-llm[openai]>=1.0.0rc1,<2"]
29-
google = ["giskard-llm[google]>=1.0.0rc1,<2"]
30-
anthropic = ["giskard-llm[anthropic]>=1.0.0rc1,<2"]
31-
azure = ["giskard-llm[azure]>=1.0.0rc1,<2"]
28+
openai = ["giskard-llm[openai]>=1.0.0,<2"]
29+
google = ["giskard-llm[google]>=1.0.0,<2"]
30+
anthropic = ["giskard-llm[anthropic]>=1.0.0,<2"]
31+
azure = ["giskard-llm[azure]>=1.0.0,<2"]
3232

3333
# External LLM providers
3434
litellm = ["giskard-agents[litellm]>=1.0.2rc1,<2"]
@@ -44,7 +44,7 @@ garak = ["giskard-scan[garak]>=1.0.0rc1,<2"] # Heavy dep, not included by defaul
4444
deepteam = ["giskard-scan[deepteam]>=1.0.0rc1,<2"] # Heavy dep, not included by default
4545

4646
# Aggregated packages
47-
all-llms = ["giskard-llm[all]>=1.0.0rc1,<2"] # Install all native LLM providers
47+
all-llms = ["giskard-llm[all]>=1.0.0,<2"] # Install all native LLM providers
4848
all-checks = ["giskard-checks[all]>=1.0.2rc1,<2"] # Install all optional checks dependencies
4949
full = ["giskard[all-llms,all-checks,scan,litellm]"]
5050

0 commit comments

Comments
 (0)