sensecrafter 0.0.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.
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sensecrafter
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: SenseCrafter — runtime prompt adaptation for multi-LLM workflows (coming soon)
|
|
5
|
+
Project-URL: Homepage, https://codecrafter.cloud
|
|
6
|
+
Project-URL: Source, https://github.com/codecrafterCloud/contextcrafter
|
|
7
|
+
License: PolyForm Noncommercial License 1.0.0
|
|
8
|
+
https://polyformproject.org/licenses/noncommercial/1.0.0
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Keywords: adaptation,ai,llm,middleware,prompt
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# SenseCrafter
|
|
19
|
+
|
|
20
|
+
**SHAPE · ADAPT · LEARN · REPEAT**
|
|
21
|
+
|
|
22
|
+
Runtime prompt adaptation middleware for multi-LLM workflows.
|
|
23
|
+
|
|
24
|
+
> **Coming soon.** This package is a name reservation placeholder.
|
|
25
|
+
> Follow development at [codecrafter.cloud](https://codecrafter.cloud).
|
|
26
|
+
|
|
27
|
+
## What is SenseCrafter?
|
|
28
|
+
|
|
29
|
+
SenseCrafter translates prompts at runtime — for each target model, automatically.
|
|
30
|
+
One shared, trainable context repository learns which structure works best for which model.
|
|
31
|
+
|
|
32
|
+
## Status
|
|
33
|
+
|
|
34
|
+
Architecture phase. Active development has not yet started on the public package.
|
|
35
|
+
|
|
36
|
+
## License
|
|
37
|
+
|
|
38
|
+
PolyForm Noncommercial 1.0.0 — see LICENSE.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# SenseCrafter
|
|
2
|
+
|
|
3
|
+
**SHAPE · ADAPT · LEARN · REPEAT**
|
|
4
|
+
|
|
5
|
+
Runtime prompt adaptation middleware for multi-LLM workflows.
|
|
6
|
+
|
|
7
|
+
> **Coming soon.** This package is a name reservation placeholder.
|
|
8
|
+
> Follow development at [codecrafter.cloud](https://codecrafter.cloud).
|
|
9
|
+
|
|
10
|
+
## What is SenseCrafter?
|
|
11
|
+
|
|
12
|
+
SenseCrafter translates prompts at runtime — for each target model, automatically.
|
|
13
|
+
One shared, trainable context repository learns which structure works best for which model.
|
|
14
|
+
|
|
15
|
+
## Status
|
|
16
|
+
|
|
17
|
+
Architecture phase. Active development has not yet started on the public package.
|
|
18
|
+
|
|
19
|
+
## License
|
|
20
|
+
|
|
21
|
+
PolyForm Noncommercial 1.0.0 — see LICENSE.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "sensecrafter"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "SenseCrafter — runtime prompt adaptation for multi-LLM workflows (coming soon)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { file = "LICENSE" }
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
keywords = ["llm", "prompt", "adaptation", "middleware", "ai"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://codecrafter.cloud"
|
|
22
|
+
Source = "https://github.com/codecrafterCloud/contextcrafter"
|