blob: 3713db270d42ff88d8c939c096643cccbabffe42 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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"
|