correctover 0.1.0__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,51 @@
1
+ Metadata-Version: 2.2
2
+ Name: correctover
3
+ Version: 0.1.0
4
+ Summary: The correct version of failover — LLM API reliability runtime
5
+ Home-page: https://correctover.com
6
+ Author: Guiguang Wang
7
+ License: Apache-2.0 WITH commercial-restriction
8
+ Keywords: failover,correctover,llm,reliability,self-healing,runtime
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
12
+ Requires-Python: >=3.8
13
+ Description-Content-Type: text/markdown
14
+ Dynamic: author
15
+ Dynamic: classifier
16
+ Dynamic: description
17
+ Dynamic: description-content-type
18
+ Dynamic: home-page
19
+ Dynamic: keywords
20
+ Dynamic: license
21
+ Dynamic: requires-python
22
+ Dynamic: summary
23
+
24
+ # Correctover
25
+
26
+ **The correct version of failover.**
27
+
28
+ Because failover switches. Correctover verifies.
29
+
30
+ ## Why Correctover?
31
+
32
+ Traditional failover asks: *"Did Provider B respond?"*
33
+ Correctover asks: *"Is the response contractually correct?"*
34
+
35
+ | | Failover | Correctover |
36
+ |---|---------|-------------|
37
+ | Provider B responds? | ✅ Switch | ✅ Verify |
38
+ | Contract validated? | ❌ Not checked | ✅ Verify → Heal → Guarantee |
39
+ | Silent errors caught? | ❌ No | ✅ 5-dimension validation |
40
+
41
+ The `-over` suffix isn't "over" as in "excessive". It's `-over` as in **failover**, **cutover**, **handover** — the language of switching. Correctover means: the correct version of a switch.
42
+
43
+ ## Install
44
+
45
+ ```bash
46
+ pip install correctover
47
+ ```
48
+
49
+ ## License
50
+
51
+ Apache-2.0 WITH commercial-restriction
@@ -0,0 +1,28 @@
1
+ # Correctover
2
+
3
+ **The correct version of failover.**
4
+
5
+ Because failover switches. Correctover verifies.
6
+
7
+ ## Why Correctover?
8
+
9
+ Traditional failover asks: *"Did Provider B respond?"*
10
+ Correctover asks: *"Is the response contractually correct?"*
11
+
12
+ | | Failover | Correctover |
13
+ |---|---------|-------------|
14
+ | Provider B responds? | ✅ Switch | ✅ Verify |
15
+ | Contract validated? | ❌ Not checked | ✅ Verify → Heal → Guarantee |
16
+ | Silent errors caught? | ❌ No | ✅ 5-dimension validation |
17
+
18
+ The `-over` suffix isn't "over" as in "excessive". It's `-over` as in **failover**, **cutover**, **handover** — the language of switching. Correctover means: the correct version of a switch.
19
+
20
+ ## Install
21
+
22
+ ```bash
23
+ pip install correctover
24
+ ```
25
+
26
+ ## License
27
+
28
+ Apache-2.0 WITH commercial-restriction
@@ -0,0 +1,11 @@
1
+ """
2
+ Correctover — The correct version of failover
3
+
4
+ Because failover switches. Correctover verifies.
5
+
6
+ This is a placeholder package to reserve the name.
7
+ Full SDK coming soon.
8
+ """
9
+
10
+ __version__ = '0.1.0'
11
+ __author__ = 'Guiguang Wang'
@@ -0,0 +1,51 @@
1
+ Metadata-Version: 2.2
2
+ Name: correctover
3
+ Version: 0.1.0
4
+ Summary: The correct version of failover — LLM API reliability runtime
5
+ Home-page: https://correctover.com
6
+ Author: Guiguang Wang
7
+ License: Apache-2.0 WITH commercial-restriction
8
+ Keywords: failover,correctover,llm,reliability,self-healing,runtime
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
12
+ Requires-Python: >=3.8
13
+ Description-Content-Type: text/markdown
14
+ Dynamic: author
15
+ Dynamic: classifier
16
+ Dynamic: description
17
+ Dynamic: description-content-type
18
+ Dynamic: home-page
19
+ Dynamic: keywords
20
+ Dynamic: license
21
+ Dynamic: requires-python
22
+ Dynamic: summary
23
+
24
+ # Correctover
25
+
26
+ **The correct version of failover.**
27
+
28
+ Because failover switches. Correctover verifies.
29
+
30
+ ## Why Correctover?
31
+
32
+ Traditional failover asks: *"Did Provider B respond?"*
33
+ Correctover asks: *"Is the response contractually correct?"*
34
+
35
+ | | Failover | Correctover |
36
+ |---|---------|-------------|
37
+ | Provider B responds? | ✅ Switch | ✅ Verify |
38
+ | Contract validated? | ❌ Not checked | ✅ Verify → Heal → Guarantee |
39
+ | Silent errors caught? | ❌ No | ✅ 5-dimension validation |
40
+
41
+ The `-over` suffix isn't "over" as in "excessive". It's `-over` as in **failover**, **cutover**, **handover** — the language of switching. Correctover means: the correct version of a switch.
42
+
43
+ ## Install
44
+
45
+ ```bash
46
+ pip install correctover
47
+ ```
48
+
49
+ ## License
50
+
51
+ Apache-2.0 WITH commercial-restriction
@@ -0,0 +1,7 @@
1
+ README.md
2
+ setup.py
3
+ correctover/__init__.py
4
+ correctover.egg-info/PKG-INFO
5
+ correctover.egg-info/SOURCES.txt
6
+ correctover.egg-info/dependency_links.txt
7
+ correctover.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ correctover
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,20 @@
1
+ from setuptools import setup
2
+
3
+ setup(
4
+ name='correctover',
5
+ version='0.1.0',
6
+ description='The correct version of failover — LLM API reliability runtime',
7
+ long_description=open('README.md').read(),
8
+ long_description_content_type='text/markdown',
9
+ author='Guiguang Wang',
10
+ license='Apache-2.0 WITH commercial-restriction',
11
+ url='https://correctover.com',
12
+ keywords=['failover', 'correctover', 'llm', 'reliability', 'self-healing', 'runtime'],
13
+ python_requires='>=3.8',
14
+ packages=['correctover'],
15
+ classifiers=[
16
+ 'Development Status :: 3 - Alpha',
17
+ 'Intended Audience :: Developers',
18
+ 'Topic :: Software Development :: Libraries :: Python Modules',
19
+ ],
20
+ )