coolwind 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,7 @@
1
+ __pycache__/
2
+ *.egg-info/
3
+ dist/
4
+ build/
5
+ .venv/
6
+ config/instance.yaml
7
+ .env
coolwind-0.0.1/LICENSE ADDED
File without changes
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.5
2
+ Name: coolwind
3
+ Version: 0.0.1
4
+ Summary: Local-first agent platform.
5
+ Project-URL: Homepage, https://github.com/antoniojoboy/coolwind
6
+ Author: Antonio Joboy
7
+ License-Expression: MIT
8
+ License-File: LICENSE
9
+ Keywords: agent,llm,local-first,ollama
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Operating System :: POSIX :: Linux
12
+ Classifier: Programming Language :: Python :: 3
13
+ Requires-Python: >=3.10
14
+ Description-Content-Type: text/markdown
15
+
16
+ # coolwind
17
+
18
+ Local-first agent platform. Runs a configured assistant on your own
19
+ hardware — local inference, local memory, no data leaving the machine.
20
+
21
+ **Status: early development.** Name reserved, nothing usable yet.
@@ -0,0 +1,6 @@
1
+ # coolwind
2
+
3
+ Local-first agent platform. Runs a configured assistant on your own
4
+ hardware — local inference, local memory, no data leaving the machine.
5
+
6
+ **Status: early development.** Name reserved, nothing usable yet.
Binary file
@@ -0,0 +1,22 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "coolwind"
7
+ version = "0.0.1"
8
+ description = "Local-first agent platform."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = "MIT"
12
+ license-files = ["LICENSE"]
13
+ authors = [{ name = "Antonio Joboy" }]
14
+ keywords = ["agent", "llm", "local-first", "ollama"]
15
+ classifiers = [
16
+ "Development Status :: 1 - Planning",
17
+ "Programming Language :: Python :: 3",
18
+ "Operating System :: POSIX :: Linux",
19
+ ]
20
+
21
+ [project.urls]
22
+ Homepage = "https://github.com/antoniojoboy/coolwind"
@@ -0,0 +1 @@
1
+ __version__ = "0.0.1"