frost-ai 0.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- frost_ai-0.2.1/.gitignore +19 -0
- frost_ai-0.2.1/Cargo.lock +477 -0
- frost_ai-0.2.1/Cargo.toml +30 -0
- frost_ai-0.2.1/LICENSE +21 -0
- frost_ai-0.2.1/PKG-INFO +8 -0
- frost_ai-0.2.1/QUICKSTART.md +96 -0
- frost_ai-0.2.1/README.md +146 -0
- frost_ai-0.2.1/benchmarks/results.json +29 -0
- frost_ai-0.2.1/benchmarks/run_benchmarks.py +79 -0
- frost_ai-0.2.1/docs/assets/frost_logo.png +0 -0
- frost_ai-0.2.1/pyproject.toml +21 -0
- frost_ai-0.2.1/python/frost/__init__.py +14 -0
- frost_ai-0.2.1/python/frost/__main__.py +5 -0
- frost_ai-0.2.1/python/frost/backends/__init__.py +31 -0
- frost_ai-0.2.1/python/frost/backends/docker.py +103 -0
- frost_ai-0.2.1/python/frost/backends/native.py +85 -0
- frost_ai-0.2.1/python/frost/cli.py +85 -0
- frost_ai-0.2.1/python/frost/core.py +179 -0
- frost_ai-0.2.1/python/frost/installer.py +267 -0
- frost_ai-0.2.1/python/frost/runtime/cache.py +185 -0
- frost_ai-0.2.1/python/frost/runtime/checkpoint.py +205 -0
- frost_ai-0.2.1/python/frost/runtime/history.py +51 -0
- frost_ai-0.2.1/python/frost/runtime/session.py +236 -0
- frost_ai-0.2.1/python/frost/server.py +122 -0
- frost_ai-0.2.1/python/frost/v2/__init__.py +1 -0
- frost_ai-0.2.1/python/frost/v2/branch_loop.py +180 -0
- frost_ai-0.2.1/python/frost/v2/memory.py +108 -0
- frost_ai-0.2.1/python/frost/v2/micro_branch.py +294 -0
- frost_ai-0.2.1/python/frost/v2/orchestrator.py +334 -0
- frost_ai-0.2.1/python/frost/v2/uncertainty.py +207 -0
- frost_ai-0.2.1/python/frost/v2/validator.py +43 -0
- frost_ai-0.2.1/src/compress.rs +139 -0
- frost_ai-0.2.1/src/engines/compression/adaptive_sizer.rs +415 -0
- frost_ai-0.2.1/src/engines/compression/anchor_selector.rs +972 -0
- frost_ai-0.2.1/src/engines/compression/bm25.rs +142 -0
- frost_ai-0.2.1/src/engines/compression/content_detector.rs +667 -0
- frost_ai-0.2.1/src/engines/compression/diff_compressor.rs +1273 -0
- frost_ai-0.2.1/src/engines/compression/log_compressor.rs +1111 -0
- frost_ai-0.2.1/src/engines/compression/mod.rs +89 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/analyzer.rs +1052 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/anchors.rs +260 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/classifier.rs +143 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/compaction/classifier.rs +239 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/compaction/compactor.rs +722 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/compaction/formatter.rs +524 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/compaction/ir.rs +180 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/compaction/mod.rs +57 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/compaction/walker.rs +50 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/config.rs +95 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/constraints.rs +76 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/crusher.rs +1322 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/crushers.rs +633 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/error_keywords.rs +56 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/field_detect.rs +295 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/hashing.rs +27 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/mod.rs +43 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/orchestration.rs +340 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/outliers.rs +341 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/planning.rs +753 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/statistics.rs +361 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/stats_math.rs +214 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/traits.rs +1 -0
- frost_ai-0.2.1/src/engines/compression/smart_crusher/types.rs +175 -0
- frost_ai-0.2.1/src/engines/compression/text_crusher/config.rs +24 -0
- frost_ai-0.2.1/src/engines/compression/text_crusher/crusher.rs +290 -0
- frost_ai-0.2.1/src/engines/compression/text_crusher/mod.rs +5 -0
- frost_ai-0.2.1/src/engines/loop_detection/config.rs +53 -0
- frost_ai-0.2.1/src/engines/loop_detection/engine.rs +88 -0
- frost_ai-0.2.1/src/engines/loop_detection/history.rs +163 -0
- frost_ai-0.2.1/src/engines/loop_detection/state.rs +75 -0
- frost_ai-0.2.1/src/engines/mod.rs +8 -0
- frost_ai-0.2.1/src/lib.rs +90 -0
- frost_ai-0.2.1/src/runtime/ccr/backends/in_memory.rs +242 -0
- frost_ai-0.2.1/src/runtime/ccr/backends/mod.rs +3 -0
- frost_ai-0.2.1/src/runtime/ccr/mod.rs +16 -0
- frost_ai-0.2.1/src/runtime/mod.rs +1 -0
- frost_ai-0.2.1/tests/test_installer.py +68 -0
- frost_ai-0.2.1/tests/test_session.py +340 -0
- frost_ai-0.2.1/tests/test_v2.py +195 -0
|
@@ -0,0 +1,477 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aho-corasick"
|
|
13
|
+
version = "1.1.4"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"memchr",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "arrayref"
|
|
22
|
+
version = "0.3.9"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "arrayvec"
|
|
28
|
+
version = "0.7.8"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "blake3"
|
|
34
|
+
version = "1.8.5"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"arrayref",
|
|
39
|
+
"arrayvec",
|
|
40
|
+
"cc",
|
|
41
|
+
"cfg-if",
|
|
42
|
+
"constant_time_eq",
|
|
43
|
+
"cpufeatures",
|
|
44
|
+
]
|
|
45
|
+
|
|
46
|
+
[[package]]
|
|
47
|
+
name = "cc"
|
|
48
|
+
version = "1.3.0"
|
|
49
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
50
|
+
checksum = "c89588d05638b5b4594a3348a2d6c20277e43a7f5c5202b05cc56888475a47b8"
|
|
51
|
+
dependencies = [
|
|
52
|
+
"find-msvc-tools",
|
|
53
|
+
"shlex",
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "cfg-if"
|
|
58
|
+
version = "1.0.4"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "constant_time_eq"
|
|
64
|
+
version = "0.4.2"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "cpufeatures"
|
|
70
|
+
version = "0.3.0"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
73
|
+
dependencies = [
|
|
74
|
+
"libc",
|
|
75
|
+
]
|
|
76
|
+
|
|
77
|
+
[[package]]
|
|
78
|
+
name = "crc32fast"
|
|
79
|
+
version = "1.5.0"
|
|
80
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
82
|
+
dependencies = [
|
|
83
|
+
"cfg-if",
|
|
84
|
+
]
|
|
85
|
+
|
|
86
|
+
[[package]]
|
|
87
|
+
name = "equivalent"
|
|
88
|
+
version = "1.0.2"
|
|
89
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
91
|
+
|
|
92
|
+
[[package]]
|
|
93
|
+
name = "find-msvc-tools"
|
|
94
|
+
version = "0.1.9"
|
|
95
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
96
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
97
|
+
|
|
98
|
+
[[package]]
|
|
99
|
+
name = "flate2"
|
|
100
|
+
version = "1.1.9"
|
|
101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
103
|
+
dependencies = [
|
|
104
|
+
"crc32fast",
|
|
105
|
+
"miniz_oxide",
|
|
106
|
+
]
|
|
107
|
+
|
|
108
|
+
[[package]]
|
|
109
|
+
name = "frost-core"
|
|
110
|
+
version = "0.2.1"
|
|
111
|
+
dependencies = [
|
|
112
|
+
"aho-corasick",
|
|
113
|
+
"blake3",
|
|
114
|
+
"flate2",
|
|
115
|
+
"pyo3",
|
|
116
|
+
"regex",
|
|
117
|
+
"serde",
|
|
118
|
+
"serde_json",
|
|
119
|
+
"serde_yml",
|
|
120
|
+
"thiserror",
|
|
121
|
+
"tracing",
|
|
122
|
+
]
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "hashbrown"
|
|
126
|
+
version = "0.17.1"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "heck"
|
|
132
|
+
version = "0.5.0"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "indexmap"
|
|
138
|
+
version = "2.14.0"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
141
|
+
dependencies = [
|
|
142
|
+
"equivalent",
|
|
143
|
+
"hashbrown",
|
|
144
|
+
"serde",
|
|
145
|
+
"serde_core",
|
|
146
|
+
]
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "itoa"
|
|
150
|
+
version = "1.0.18"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "libc"
|
|
156
|
+
version = "0.2.187"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "a7743783ea728ef5c31194c6590797eed286449b4a4e87d626d8a51f0a94e732"
|
|
159
|
+
|
|
160
|
+
[[package]]
|
|
161
|
+
name = "memchr"
|
|
162
|
+
version = "2.8.3"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "miniz_oxide"
|
|
168
|
+
version = "0.8.9"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
171
|
+
dependencies = [
|
|
172
|
+
"adler2",
|
|
173
|
+
"simd-adler32",
|
|
174
|
+
]
|
|
175
|
+
|
|
176
|
+
[[package]]
|
|
177
|
+
name = "noyalib"
|
|
178
|
+
version = "0.0.5"
|
|
179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
+
checksum = "e493c05128df7a83b9676b709d590e0ebc285c7ed3152bc679668e8c1e506af5"
|
|
181
|
+
dependencies = [
|
|
182
|
+
"indexmap",
|
|
183
|
+
"memchr",
|
|
184
|
+
"rustc-hash",
|
|
185
|
+
"serde",
|
|
186
|
+
"smallvec",
|
|
187
|
+
]
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "once_cell"
|
|
191
|
+
version = "1.21.4"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "pin-project-lite"
|
|
197
|
+
version = "0.2.17"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
200
|
+
|
|
201
|
+
[[package]]
|
|
202
|
+
name = "portable-atomic"
|
|
203
|
+
version = "1.14.0"
|
|
204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
+
checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
|
|
206
|
+
|
|
207
|
+
[[package]]
|
|
208
|
+
name = "proc-macro2"
|
|
209
|
+
version = "1.0.107"
|
|
210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
212
|
+
dependencies = [
|
|
213
|
+
"unicode-ident",
|
|
214
|
+
]
|
|
215
|
+
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "pyo3"
|
|
218
|
+
version = "0.29.0"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
|
|
221
|
+
dependencies = [
|
|
222
|
+
"libc",
|
|
223
|
+
"once_cell",
|
|
224
|
+
"portable-atomic",
|
|
225
|
+
"pyo3-build-config",
|
|
226
|
+
"pyo3-ffi",
|
|
227
|
+
"pyo3-macros",
|
|
228
|
+
]
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "pyo3-build-config"
|
|
232
|
+
version = "0.29.0"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
|
|
235
|
+
dependencies = [
|
|
236
|
+
"target-lexicon",
|
|
237
|
+
]
|
|
238
|
+
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "pyo3-ffi"
|
|
241
|
+
version = "0.29.0"
|
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
+
checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
|
|
244
|
+
dependencies = [
|
|
245
|
+
"libc",
|
|
246
|
+
"pyo3-build-config",
|
|
247
|
+
]
|
|
248
|
+
|
|
249
|
+
[[package]]
|
|
250
|
+
name = "pyo3-macros"
|
|
251
|
+
version = "0.29.0"
|
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
+
checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
|
|
254
|
+
dependencies = [
|
|
255
|
+
"proc-macro2",
|
|
256
|
+
"pyo3-macros-backend",
|
|
257
|
+
"quote",
|
|
258
|
+
"syn 2.0.119",
|
|
259
|
+
]
|
|
260
|
+
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "pyo3-macros-backend"
|
|
263
|
+
version = "0.29.0"
|
|
264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
+
checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
|
|
266
|
+
dependencies = [
|
|
267
|
+
"heck",
|
|
268
|
+
"proc-macro2",
|
|
269
|
+
"quote",
|
|
270
|
+
"syn 2.0.119",
|
|
271
|
+
]
|
|
272
|
+
|
|
273
|
+
[[package]]
|
|
274
|
+
name = "quote"
|
|
275
|
+
version = "1.0.47"
|
|
276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
278
|
+
dependencies = [
|
|
279
|
+
"proc-macro2",
|
|
280
|
+
]
|
|
281
|
+
|
|
282
|
+
[[package]]
|
|
283
|
+
name = "regex"
|
|
284
|
+
version = "1.13.1"
|
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
287
|
+
dependencies = [
|
|
288
|
+
"aho-corasick",
|
|
289
|
+
"memchr",
|
|
290
|
+
"regex-automata",
|
|
291
|
+
"regex-syntax",
|
|
292
|
+
]
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "regex-automata"
|
|
296
|
+
version = "0.4.16"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
|
|
299
|
+
dependencies = [
|
|
300
|
+
"aho-corasick",
|
|
301
|
+
"memchr",
|
|
302
|
+
"regex-syntax",
|
|
303
|
+
]
|
|
304
|
+
|
|
305
|
+
[[package]]
|
|
306
|
+
name = "regex-syntax"
|
|
307
|
+
version = "0.8.11"
|
|
308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
310
|
+
|
|
311
|
+
[[package]]
|
|
312
|
+
name = "rustc-hash"
|
|
313
|
+
version = "2.1.3"
|
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
316
|
+
|
|
317
|
+
[[package]]
|
|
318
|
+
name = "serde"
|
|
319
|
+
version = "1.0.229"
|
|
320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
322
|
+
dependencies = [
|
|
323
|
+
"serde_core",
|
|
324
|
+
"serde_derive",
|
|
325
|
+
]
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "serde_core"
|
|
329
|
+
version = "1.0.229"
|
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
332
|
+
dependencies = [
|
|
333
|
+
"serde_derive",
|
|
334
|
+
]
|
|
335
|
+
|
|
336
|
+
[[package]]
|
|
337
|
+
name = "serde_derive"
|
|
338
|
+
version = "1.0.229"
|
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
341
|
+
dependencies = [
|
|
342
|
+
"proc-macro2",
|
|
343
|
+
"quote",
|
|
344
|
+
"syn 3.0.2",
|
|
345
|
+
]
|
|
346
|
+
|
|
347
|
+
[[package]]
|
|
348
|
+
name = "serde_json"
|
|
349
|
+
version = "1.0.151"
|
|
350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
352
|
+
dependencies = [
|
|
353
|
+
"itoa",
|
|
354
|
+
"memchr",
|
|
355
|
+
"serde",
|
|
356
|
+
"serde_core",
|
|
357
|
+
"zmij",
|
|
358
|
+
]
|
|
359
|
+
|
|
360
|
+
[[package]]
|
|
361
|
+
name = "serde_yml"
|
|
362
|
+
version = "0.0.13"
|
|
363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
364
|
+
checksum = "909764a65f86829ccdb5eea9ab355843aa02c019a7bfd47465092953565caa05"
|
|
365
|
+
dependencies = [
|
|
366
|
+
"noyalib",
|
|
367
|
+
"serde",
|
|
368
|
+
]
|
|
369
|
+
|
|
370
|
+
[[package]]
|
|
371
|
+
name = "shlex"
|
|
372
|
+
version = "2.0.1"
|
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "simd-adler32"
|
|
378
|
+
version = "0.3.10"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "smallvec"
|
|
384
|
+
version = "1.15.2"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
387
|
+
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "syn"
|
|
390
|
+
version = "2.0.119"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
393
|
+
dependencies = [
|
|
394
|
+
"proc-macro2",
|
|
395
|
+
"quote",
|
|
396
|
+
"unicode-ident",
|
|
397
|
+
]
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "syn"
|
|
401
|
+
version = "3.0.2"
|
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
+
checksum = "a207d6d6a2b7fc470b80443726053f18a2481b7e1eee970597051596567987a3"
|
|
404
|
+
dependencies = [
|
|
405
|
+
"proc-macro2",
|
|
406
|
+
"quote",
|
|
407
|
+
"unicode-ident",
|
|
408
|
+
]
|
|
409
|
+
|
|
410
|
+
[[package]]
|
|
411
|
+
name = "target-lexicon"
|
|
412
|
+
version = "0.13.5"
|
|
413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
414
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "thiserror"
|
|
418
|
+
version = "2.0.19"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
|
|
421
|
+
dependencies = [
|
|
422
|
+
"thiserror-impl",
|
|
423
|
+
]
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "thiserror-impl"
|
|
427
|
+
version = "2.0.19"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
|
|
430
|
+
dependencies = [
|
|
431
|
+
"proc-macro2",
|
|
432
|
+
"quote",
|
|
433
|
+
"syn 3.0.2",
|
|
434
|
+
]
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "tracing"
|
|
438
|
+
version = "0.1.44"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
441
|
+
dependencies = [
|
|
442
|
+
"pin-project-lite",
|
|
443
|
+
"tracing-attributes",
|
|
444
|
+
"tracing-core",
|
|
445
|
+
]
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "tracing-attributes"
|
|
449
|
+
version = "0.1.31"
|
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
452
|
+
dependencies = [
|
|
453
|
+
"proc-macro2",
|
|
454
|
+
"quote",
|
|
455
|
+
"syn 2.0.119",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "tracing-core"
|
|
460
|
+
version = "0.1.36"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
463
|
+
dependencies = [
|
|
464
|
+
"once_cell",
|
|
465
|
+
]
|
|
466
|
+
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "unicode-ident"
|
|
469
|
+
version = "1.0.24"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
472
|
+
|
|
473
|
+
[[package]]
|
|
474
|
+
name = "zmij"
|
|
475
|
+
version = "1.0.23"
|
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[package]
|
|
2
|
+
name = "frost-core"
|
|
3
|
+
version = "0.2.1"
|
|
4
|
+
edition = "2021"
|
|
5
|
+
license = "Apache-2.0"
|
|
6
|
+
description = "FROST — Agent execution optimization (Rust core)"
|
|
7
|
+
readme = "README.md"
|
|
8
|
+
|
|
9
|
+
[lib]
|
|
10
|
+
name = "frost_core"
|
|
11
|
+
crate-type = ["cdylib"]
|
|
12
|
+
|
|
13
|
+
[dependencies]
|
|
14
|
+
pyo3 = { version = "0.29", features = ["extension-module", "abi3-py38"] }
|
|
15
|
+
serde = { version = "1.0.228", features = ["derive", "alloc"] }
|
|
16
|
+
serde_json = { version = "1.0.150", default-features = false, features = ["alloc"] }
|
|
17
|
+
serde_yml = "0.0.13"
|
|
18
|
+
regex = "1"
|
|
19
|
+
thiserror = "2.0"
|
|
20
|
+
tracing = "0.1"
|
|
21
|
+
flate2 = "1"
|
|
22
|
+
aho-corasick = "1"
|
|
23
|
+
blake3 = "1"
|
|
24
|
+
|
|
25
|
+
[profile.release]
|
|
26
|
+
opt-level = "z"
|
|
27
|
+
lto = true
|
|
28
|
+
codegen-units = 1
|
|
29
|
+
panic = "abort"
|
|
30
|
+
strip = true
|
frost_ai-0.2.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 FROST Authors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO MECHANICAL QUALIFICATIONS, MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
frost_ai-0.2.1/PKG-INFO
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
# FROST Quickstart
|
|
2
|
+
|
|
3
|
+
FROST provides autonomous execution resilience for AI coding agents. The user gives FROST an engineering task. FROST executes linearly by default, detects uncertainty, micro-branches when needed, and merges the winning fix.
|
|
4
|
+
|
|
5
|
+
## Installation & Setup
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install frost-execution
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
frost init
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
```text
|
|
16
|
+
Welcome to FROST.
|
|
17
|
+
|
|
18
|
+
How would you like to use FROST?
|
|
19
|
+
|
|
20
|
+
1. Claude Code
|
|
21
|
+
2. Gemini CLI
|
|
22
|
+
3. OpenCode
|
|
23
|
+
4. Cursor
|
|
24
|
+
5. VS Code
|
|
25
|
+
6. Custom MCP Client
|
|
26
|
+
7. Skip
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## Python API Usage
|
|
32
|
+
|
|
33
|
+
```python
|
|
34
|
+
import frost
|
|
35
|
+
|
|
36
|
+
# 1. Run a task
|
|
37
|
+
result = frost.run("Fix failing tests in this repository")
|
|
38
|
+
|
|
39
|
+
# 2. Resume if interrupted
|
|
40
|
+
result = frost.resume()
|
|
41
|
+
|
|
42
|
+
# 3. Inspect history and trajectory metrics
|
|
43
|
+
info = frost.inspect()
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
## The 3 Core Primitives
|
|
49
|
+
|
|
50
|
+
| Primitive | Usage | Description |
|
|
51
|
+
| :--- | :--- | :--- |
|
|
52
|
+
| `frost.run(task)` | `frost.run("pytest tests/")` | Solves an engineering task with linear-first execution and uncertainty branching. |
|
|
53
|
+
| `frost.resume()` | `frost.resume()` | Resumes execution state, skipping previously failed strategies via memory. |
|
|
54
|
+
| `frost.inspect()` | `frost.inspect()` | Returns attempt logs, micro-branch summaries, and token reduction metrics. |
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## Automatic Internal Escalation
|
|
59
|
+
|
|
60
|
+
Caller flags like `docker=True`, `cache=True`, or `compression=True` are not required. FROST manages internal machinery automatically:
|
|
61
|
+
|
|
62
|
+
- **Simple task**: Level 0 Native Execution (~20 ms overhead)
|
|
63
|
+
- **Large output**: LogCompressor (95%+ token reduction)
|
|
64
|
+
- **Repeated error**: Uncertainty Detector spawns budget-constrained micro-branches
|
|
65
|
+
- **Internal loop**: BranchLoopDetector terminates code oscillation or stagnation
|
|
66
|
+
- **Winner selection**: Winning branch merged immediately into source repository
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
## MCP Server (Single Tool Integration)
|
|
71
|
+
|
|
72
|
+
Start the FastMCP server for AI agent integration:
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
frost serve
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
### Input
|
|
79
|
+
```json
|
|
80
|
+
{
|
|
81
|
+
"task": "Upgrade this repository to Python 3.13"
|
|
82
|
+
}
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
### Output
|
|
86
|
+
```json
|
|
87
|
+
{
|
|
88
|
+
"status": "success",
|
|
89
|
+
"summary": "Task completed successfully in 0.05s across 1 attempt(s).",
|
|
90
|
+
"output": "...",
|
|
91
|
+
"next_steps": "Proceed to next task.",
|
|
92
|
+
"retries": 0,
|
|
93
|
+
"cached": false,
|
|
94
|
+
"mode": "linear"
|
|
95
|
+
}
|
|
96
|
+
```
|