aboutsummaryrefslogtreecommitdiffstats
path: root/packages/multillm-agentwrap/pyproject.toml
diff options
context:
space:
mode:
authorLouis Burda <dev@sinitax.com>2026-02-02 08:10:56 +0100
committerLouis Burda <dev@sinitax.com>2026-02-02 08:11:17 +0100
commitd69c5b355c450e2c79b62b8a1a7946f375ac207d (patch)
treea20cc4b977e400b2cd08b25f5ea9581156524356 /packages/multillm-agentwrap/pyproject.toml
parent43ddca6e4de9ed2b8615dedd9a31ee42881fdcb5 (diff)
downloadmultillm-main.tar.gz
multillm-main.zip
Add agentwrap provider and allow tools for singleHEADmain
Diffstat (limited to 'packages/multillm-agentwrap/pyproject.toml')
-rw-r--r--packages/multillm-agentwrap/pyproject.toml16
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/multillm-agentwrap/pyproject.toml b/packages/multillm-agentwrap/pyproject.toml
new file mode 100644
index 0000000..3713db2
--- /dev/null
+++ b/packages/multillm-agentwrap/pyproject.toml
@@ -0,0 +1,16 @@
+[project]
+name = "multillm-agentwrap"
+version = "0.1.0"
+description = "Agent wrapper provider for multillm - wraps chat providers with agentic capabilities"
+readme = "README.md"
+requires-python = ">=3.10"
+dependencies = [
+ "multillm>=0.1.0",
+]
+
+[project.entry-points."multillm.providers"]
+agentwrap = "multillm_agentwrap:AgentWrapProvider"
+
+[build-system]
+requires = ["hatchling"]
+build-backend = "hatchling.build"