File size: 2,657 Bytes
77bcbf1
 
 
 
 
 
 
1754798
77bcbf1
 
 
 
 
 
 
1754798
 
77bcbf1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b8bef19
77bcbf1
b8bef19
 
 
 
 
77bcbf1
 
 
b8bef19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b87d71a
 
 
77bcbf1
 
b8bef19
 
77bcbf1
b8bef19
 
 
 
 
 
b87d71a
b8bef19
 
 
 
 
 
 
 
77bcbf1
 
 
 
 
 
 
 
 
 
b87d71a
77bcbf1
 
 
 
 
f8ff3cd
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "cascade-lattice"
dynamic = ["version"]
description = "Universal AI provenance layer — cryptographic receipts for every call, HOLD inference halt protocol, and code diagnostics"
readme = "README.md"
license = "MIT"
authors = [
    { name = "Jeff Towers" }
]
keywords = [
    "ai", "ml", "provenance", "observability", "llm", "tracing",
    "cryptographic", "receipts", "monitoring", "hold-protocol",
    "diagnostics", "debugging", "bug-detection", "static-analysis"
]
classifiers = [
    "Development Status :: 4 - Beta",
    "Intended Audience :: Developers",
    "Intended Audience :: Science/Research",
    "License :: OSI Approved :: MIT License",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.8",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Topic :: Scientific/Engineering :: Artificial Intelligence",
    "Topic :: System :: Monitoring",
]
requires-python = ">=3.9"
dependencies = [
    "aiohttp>=3.8.0",
    "rich>=12.0.0",
    "numpy>=1.20.0",
    "dag-cbor>=0.3.0",
    "multiformats>=0.3.0",
]

[project.optional-dependencies]
openai = ["openai>=1.0.0"]
anthropic = ["anthropic>=0.18.0"]
huggingface = [
    "transformers>=4.30.0",
    "huggingface-hub>=0.20.0",
]
ollama = ["ollama>=0.1.0"]
litellm = ["litellm>=1.0.0"]
langchain = ["langchain>=0.1.0"]
ipfs = ["ipfshttpclient>=0.8.0"]
hold = ["numpy>=1.20.0"]
demo = [
    "gymnasium>=0.29.0",
    "pygame>=2.1.0",
    "stable-baselines3>=2.0.0",
    "rl-zoo3>=2.0.0",
    "box2d-py>=2.3.5",
]
tui = [
    "textual>=0.40.0",
]
all = [
    "openai>=1.0.0",
    "anthropic>=0.18.0",
    "transformers>=4.30.0",
    "huggingface-hub>=0.20.0",
    "ollama>=0.1.0",
    "litellm>=1.0.0",
    "langchain>=0.1.0",
    "networkx>=2.6",
    "datasets>=2.14.0",
    "sentence-transformers>=2.2.0",
    "textual>=0.40.0",
]
dev = [
    "pytest>=7.0",
    "pytest-cov>=4.0",
    "pytest-asyncio>=0.21.0",
    "black>=23.0",
    "ruff>=0.1.0",
    "mypy>=1.0",
]

[project.urls]
Homepage = "https://github.com/Yufok1/cascade-lattice"
Documentation = "https://github.com/Yufok1/cascade-lattice#readme"
Repository = "https://github.com/Yufok1/cascade-lattice"
Issues = "https://github.com/Yufok1/cascade-lattice/issues"

[project.scripts]
cascade = "cascade.cli_main:main"
cascade-tui = "cascade.tui:main"

[tool.hatch.version]
path = "cascade/__init__.py"

[tool.hatch.build.targets.wheel]
packages = ["cascade", "cascade_lattice"]