-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (57 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
63 lines (57 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[project]
name = "cave-agent"
version = "0.7.3"
description = "CaveAgent is a tool-augmented agent framework that enables function-calling through LLM code generation and provides runtime state management. Unlike traditional JSON-schema approaches, it natively handles complex Python objects like DataFrames and ndarrays within a persistent runtime, enabling lossless data flow across multi-turn interactions."
readme = "README.md"
authors = [
{ name = "Ram", email = "codermao@gmail.com" }
]
requires-python = ">=3.12"
dependencies = [
"ipython>=9.12.0",
"rich>=14.3.3",
"pydantic>=2.12.5",
"pyyaml>=6.0.3",
]
keywords = ["llm", "agent", "function-calling", "tool-calling"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/acodercat/cave-agent"
Repository = "https://github.com/acodercat/cave-agent"
[project.optional-dependencies]
litellm = [
"litellm>=1.83.4",
]
openai = [
"openai>=2.30.0",
]
all = [
"litellm>=1.83.4",
"openai>=2.30.0",
]
ipykernel = [
"dill>=0.4.1",
"ipykernel>=7.2.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"build>=1.4.2",
"hatch>=1.16.5",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"twine>=6.2.0",
"litellm>=1.83.4",
"openai>=2.30.0",
"dill>=0.4.1",
"ipykernel>=7.2.0",
]