phaseo 2.0.4__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,48 @@
1
+ node_modules
2
+ dist
3
+ build
4
+ .next
5
+ .mint
6
+ .out
7
+ .env*
8
+ pnpm-debug.log
9
+ .turbo/
10
+ **/.turbo/
11
+ node_modules/.cache/turbo/
12
+ turbo-*.log
13
+ .openapi-generator
14
+ .venv
15
+ .ai-stats-devtools/
16
+ /.cache
17
+ /internal/*
18
+ !/internal/fetch-provider-model-endpoints.mjs
19
+ /guides/
20
+ # /supabase
21
+ guides/private/
22
+ /apps/api/docs/internal/
23
+ /apps/api/reports
24
+ /reports
25
+ /scripts/model-discovery/state/
26
+ .tmp/
27
+ # Local temp artifacts occasionally generated by scripts/editors
28
+ /.tmp*
29
+ *.tmp
30
+ *.tmp.*
31
+ /tmp
32
+ .playwright-cli/
33
+ .tools/
34
+ .codex/tmp/
35
+ packages/data/catalog/src/data/monitor-history.json
36
+ packages/sdk/sdk-csharp/bin/
37
+ packages/sdk/sdk-csharp/obj/
38
+ packages/sdk/sdk-csharp/**/bin/
39
+ packages/sdk/sdk-csharp/**/obj/
40
+ packages/sdk/sdk-java/target/
41
+ packages/sdk/sdk-rust/target/
42
+ packages/sdk/sdk-php/vendor/
43
+ packages/sdk/sdk-ruby/*.gem
44
+ .vercel
45
+
46
+ # React Doctor local scan outputs
47
+ /apps/web/.react-doctor-current.json
48
+ /apps/web/react-doctor-report*.json
phaseo-2.0.4/PKG-INFO ADDED
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.4
2
+ Name: phaseo
3
+ Version: 2.0.4
4
+ Summary: Phaseo Python SDK transition package.
5
+ Project-URL: Homepage, https://phaseo.app
6
+ Project-URL: Documentation, https://docs.phaseo.app
7
+ Project-URL: Repository, https://github.com/phaseoteam/Phaseo
8
+ Project-URL: Issues, https://github.com/phaseoteam/Phaseo/issues
9
+ Author-email: Phaseo <support@phaseo.app>
10
+ License: MIT
11
+ Keywords: ai,gateway,llm,phaseo,sdk
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3 :: Only
16
+ Classifier: Typing :: Typed
17
+ Requires-Python: >=3.10
18
+ Requires-Dist: ai-stats-py-sdk==2.0.4
19
+ Description-Content-Type: text/markdown
20
+
21
+ # Phaseo Python SDK
22
+
23
+ Phaseo is the new name for AI Stats.
24
+
25
+ This package reserves the `phaseo` PyPI name and installs the current Phaseo Python SDK distribution, which is still published as `ai-stats-py-sdk` during the package migration.
26
+
27
+ ```bash
28
+ pip install phaseo
29
+ ```
30
+
31
+ Existing imports continue to work:
32
+
33
+ ```python
34
+ from ai_stats import AIStats
35
+ ```
36
+
37
+ The `phaseo` import also re-exports the current SDK surface:
38
+
39
+ ```python
40
+ from phaseo import AIStats
41
+ ```
42
+
43
+ Package names, import paths, and documentation will continue moving to Phaseo as the migration is completed.
phaseo-2.0.4/README.md ADDED
@@ -0,0 +1,23 @@
1
+ # Phaseo Python SDK
2
+
3
+ Phaseo is the new name for AI Stats.
4
+
5
+ This package reserves the `phaseo` PyPI name and installs the current Phaseo Python SDK distribution, which is still published as `ai-stats-py-sdk` during the package migration.
6
+
7
+ ```bash
8
+ pip install phaseo
9
+ ```
10
+
11
+ Existing imports continue to work:
12
+
13
+ ```python
14
+ from ai_stats import AIStats
15
+ ```
16
+
17
+ The `phaseo` import also re-exports the current SDK surface:
18
+
19
+ ```python
20
+ from phaseo import AIStats
21
+ ```
22
+
23
+ Package names, import paths, and documentation will continue moving to Phaseo as the migration is completed.
@@ -0,0 +1,38 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "phaseo"
7
+ version = "2.0.4"
8
+ description = "Phaseo Python SDK transition package."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = { text = "MIT" }
12
+ authors = [{ name = "Phaseo", email = "support@phaseo.app" }]
13
+ keywords = ["ai", "sdk", "llm", "gateway", "phaseo"]
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "Programming Language :: Python :: 3 :: Only",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Operating System :: OS Independent",
19
+ "Typing :: Typed",
20
+ ]
21
+ dependencies = [
22
+ "ai-stats-py-sdk==2.0.4",
23
+ ]
24
+
25
+ [project.urls]
26
+ Homepage = "https://phaseo.app"
27
+ Documentation = "https://docs.phaseo.app"
28
+ Repository = "https://github.com/phaseoteam/Phaseo"
29
+ Issues = "https://github.com/phaseoteam/Phaseo/issues"
30
+
31
+ [tool.hatch.build.targets.sdist]
32
+ include = [
33
+ "src/phaseo",
34
+ "README.md",
35
+ ]
36
+
37
+ [tool.hatch.build.targets.wheel]
38
+ packages = ["src/phaseo"]
@@ -0,0 +1,13 @@
1
+ """Phaseo Python SDK transition import.
2
+
3
+ The current SDK implementation is still distributed under the ai_stats module
4
+ during the package migration. This package provides the new phaseo import path
5
+ while preserving the existing SDK surface.
6
+ """
7
+
8
+ from ai_stats import * # noqa: F401,F403
9
+
10
+ try:
11
+ from ai_stats import __version__ as __version__
12
+ except ImportError: # pragma: no cover
13
+ __version__ = "2.0.4"