Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions sdk/wren-langchain/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ classifiers = [
]
dependencies = [
# Core: provides WrenEngine, MemoryStore, profile resolution, MDL handling.
"wrenai>=0.7.0",
"wrenai>=0.13.1",
# langchain >=1.0 ships the recommended `langchain.agents.create_agent`
# entrypoint. Older `langgraph.prebuilt.create_react_agent` still works
# but emits deprecation warnings and is scheduled for removal in
Expand All @@ -50,18 +50,18 @@ dependencies = [
# pip install "wren-langchain[mysql,memory]"
#
# DuckDB is built into wrenai — no extra needed.
postgres = ["wrenai[postgres]>=0.7.0"]
mysql = ["wrenai[mysql]>=0.7.0"]
bigquery = ["wrenai[bigquery]>=0.7.0"]
snowflake = ["wrenai[snowflake]>=0.7.0"]
clickhouse = ["wrenai[clickhouse]>=0.7.0"]
trino = ["wrenai[trino]>=0.7.0"]
mssql = ["wrenai[mssql]>=0.7.0"]
databricks = ["wrenai[databricks]>=0.7.0"]
redshift = ["wrenai[redshift]>=0.7.0"]
spark = ["wrenai[spark]>=0.7.0"]
athena = ["wrenai[athena]>=0.7.0"]
oracle = ["wrenai[oracle]>=0.7.0"]
postgres = ["wrenai[postgres]>=0.13.1"]
mysql = ["wrenai[mysql]>=0.13.1"]
bigquery = ["wrenai[bigquery]>=0.13.1"]
snowflake = ["wrenai[snowflake]>=0.13.1"]
clickhouse = ["wrenai[clickhouse]>=0.13.1"]
trino = ["wrenai[trino]>=0.13.1"]
mssql = ["wrenai[mssql]>=0.13.1"]
databricks = ["wrenai[databricks]>=0.13.1"]
redshift = ["wrenai[redshift]>=0.13.1"]
spark = ["wrenai[spark]>=0.13.1"]
athena = ["wrenai[athena]>=0.13.1"]
oracle = ["wrenai[oracle]>=0.13.1"]

# ── Memory extra ──────────────────────────────────────────────────────────
# Required to use the three memory tools (wren_fetch_context,
Expand All @@ -70,20 +70,20 @@ oracle = ["wrenai[oracle]>=0.7.0"]
#
# Without this, the toolkit auto-detects no memory and exposes only the
# three runtime tools.
memory = ["wrenai[memory]>=0.7.0"]
memory = ["wrenai[memory]>=0.13.1"]

# ── Convenience aggregate ─────────────────────────────────────────────────
# Installs every datasource + memory at once. Useful for CI / examples,
# heavyweight for production where you usually want only one datasource.
all = ["wrenai[all]>=0.7.0"]
all = ["wrenai[all]>=0.13.1"]

# ── Dev / test deps ───────────────────────────────────────────────────────
dev = [
"pytest>=8",
"pytest-mock>=3",
"ruff>=0.4",
# Tests run real DuckDB + LanceDB integrations, so memory deps are required.
"wrenai[memory]>=0.7.0",
"wrenai[memory]>=0.13.1",
]

[project.urls]
Expand Down
32 changes: 16 additions & 16 deletions sdk/wren-pydantic/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ classifiers = [
]
dependencies = [
# Core: provides WrenEngine, MemoryStore, profile resolution, MDL handling.
"wrenai>=0.7.0",
"wrenai>=0.13.1",
# Pydantic AI v1 is GA. Pin major so breaking changes are an explicit
# opt-in via CHANGELOG.
"pydantic-ai>=1.0,<2.0",
Expand All @@ -46,18 +46,18 @@ dependencies = [
# pip install "wren-pydantic[mysql,memory]"
#
# DuckDB is built into wrenai — no extra needed.
postgres = ["wrenai[postgres]>=0.7.0"]
mysql = ["wrenai[mysql]>=0.7.0"]
bigquery = ["wrenai[bigquery]>=0.7.0"]
snowflake = ["wrenai[snowflake]>=0.7.0"]
clickhouse = ["wrenai[clickhouse]>=0.7.0"]
trino = ["wrenai[trino]>=0.7.0"]
mssql = ["wrenai[mssql]>=0.7.0"]
databricks = ["wrenai[databricks]>=0.7.0"]
redshift = ["wrenai[redshift]>=0.7.0"]
spark = ["wrenai[spark]>=0.7.0"]
athena = ["wrenai[athena]>=0.7.0"]
oracle = ["wrenai[oracle]>=0.7.0"]
postgres = ["wrenai[postgres]>=0.13.1"]
mysql = ["wrenai[mysql]>=0.13.1"]
bigquery = ["wrenai[bigquery]>=0.13.1"]
snowflake = ["wrenai[snowflake]>=0.13.1"]
clickhouse = ["wrenai[clickhouse]>=0.13.1"]
trino = ["wrenai[trino]>=0.13.1"]
mssql = ["wrenai[mssql]>=0.13.1"]
databricks = ["wrenai[databricks]>=0.13.1"]
redshift = ["wrenai[redshift]>=0.13.1"]
spark = ["wrenai[spark]>=0.13.1"]
athena = ["wrenai[athena]>=0.13.1"]
oracle = ["wrenai[oracle]>=0.13.1"]

# ── Memory extra ──────────────────────────────────────────────────────────
# Required to use the three memory tools (wren_fetch_context,
Expand All @@ -66,20 +66,20 @@ oracle = ["wrenai[oracle]>=0.7.0"]
#
# Without this, the toolkit auto-detects no memory and exposes only the
# three runtime tools.
memory = ["wrenai[memory]>=0.7.0"]
memory = ["wrenai[memory]>=0.13.1"]

# ── Convenience aggregate ─────────────────────────────────────────────────
# Installs every datasource + memory at once. Useful for CI / examples,
# heavyweight for production where you usually want only one datasource.
all = ["wrenai[all]>=0.7.0"]
all = ["wrenai[all]>=0.13.1"]

# ── Dev / test deps ───────────────────────────────────────────────────────
dev = [
"pytest>=8",
"pytest-mock>=3",
"ruff>=0.4",
# Tests run real DuckDB + LanceDB integrations, so memory deps are required.
"wrenai[memory]>=0.7.0",
"wrenai[memory]>=0.13.1",
]

[project.urls]
Expand Down
Loading