botanu 0.1.dev61__tar.gz → 0.1.dev63__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.
- {botanu-0.1.dev61 → botanu-0.1.dev63}/PKG-INFO +8 -6
- {botanu-0.1.dev61 → botanu-0.1.dev63}/README.md +7 -5
- {botanu-0.1.dev61 → botanu-0.1.dev63}/.gitignore +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/LICENSE +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/NOTICE +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/pyproject.toml +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/src/botanu/__init__.py +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/src/botanu/_version.py +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/src/botanu/integrations/__init__.py +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/src/botanu/integrations/tenacity.py +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/src/botanu/models/__init__.py +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/src/botanu/models/run_context.py +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/src/botanu/processors/__init__.py +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/src/botanu/processors/enricher.py +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/src/botanu/py.typed +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/src/botanu/resources/__init__.py +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/src/botanu/sdk/__init__.py +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/src/botanu/sdk/bootstrap.py +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/src/botanu/sdk/config.py +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/src/botanu/sdk/context.py +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/src/botanu/sdk/decorators.py +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/src/botanu/sdk/middleware.py +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/src/botanu/sdk/span_helpers.py +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/src/botanu/tracking/__init__.py +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/src/botanu/tracking/data.py +0 -0
- {botanu-0.1.dev61 → botanu-0.1.dev63}/src/botanu/tracking/llm.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: botanu
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.dev63
|
|
4
4
|
Summary: OpenTelemetry-native run-level cost attribution for AI workflows
|
|
5
5
|
Project-URL: Homepage, https://github.com/botanu-ai/botanu-sdk-python
|
|
6
6
|
Project-URL: Documentation, https://docs.botanu.ai
|
|
@@ -100,21 +100,22 @@ Provides-Extra: gcp
|
|
|
100
100
|
Requires-Dist: opentelemetry-resource-detector-gcp>=0.1b0; extra == 'gcp'
|
|
101
101
|
Description-Content-Type: text/markdown
|
|
102
102
|
|
|
103
|
-
#
|
|
103
|
+
# botanu SDK for Python
|
|
104
104
|
|
|
105
105
|
[](./LICENSE)
|
|
106
106
|
|
|
107
|
+
[botanu](https://botanu.ai/) is platform that helps AI companies understand the real cost of their AI features per customer, enabling outcome-based pricing and smarter scaling.
|
|
108
|
+
This SDK is built on [OpenTelemetry](https://opentelemetry.io/) for event-level cost attribution for AI workflow. For more email- deborah@botanu.ai
|
|
107
109
|
|
|
108
|
-
|
|
110
|
+
|
|
111
|
+
## Getting Started
|
|
109
112
|
|
|
110
113
|
An **event** is one business transaction — resolving a support ticket, processing
|
|
111
114
|
an order, generating a report. Each event may involve multiple **runs** (LLM calls,
|
|
112
115
|
retries, sub-workflows) across multiple services. By correlating every run to a
|
|
113
|
-
stable `event_id`,
|
|
116
|
+
stable `event_id`, botanu gives you per-event cost attribution and outcome
|
|
114
117
|
tracking without sampling artifacts.
|
|
115
118
|
|
|
116
|
-
## Getting Started
|
|
117
|
-
|
|
118
119
|
```bash
|
|
119
120
|
pip install botanu
|
|
120
121
|
```
|
|
@@ -193,6 +194,7 @@ To report a security vulnerability, please use
|
|
|
193
194
|
[GitHub Security Advisories](https://github.com/botanu-ai/botanu-sdk-python/security/advisories/new)
|
|
194
195
|
or see [SECURITY.md](./SECURITY.md) for full details. **Do not file a public issue.**
|
|
195
196
|
|
|
197
|
+
|
|
196
198
|
## Code of Conduct
|
|
197
199
|
|
|
198
200
|
This project follows the
|
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
#
|
|
1
|
+
# botanu SDK for Python
|
|
2
2
|
|
|
3
3
|
[](./LICENSE)
|
|
4
4
|
|
|
5
|
+
[botanu](https://botanu.ai/) is platform that helps AI companies understand the real cost of their AI features per customer, enabling outcome-based pricing and smarter scaling.
|
|
6
|
+
This SDK is built on [OpenTelemetry](https://opentelemetry.io/) for event-level cost attribution for AI workflow. For more email- deborah@botanu.ai
|
|
5
7
|
|
|
6
|
-
|
|
8
|
+
|
|
9
|
+
## Getting Started
|
|
7
10
|
|
|
8
11
|
An **event** is one business transaction — resolving a support ticket, processing
|
|
9
12
|
an order, generating a report. Each event may involve multiple **runs** (LLM calls,
|
|
10
13
|
retries, sub-workflows) across multiple services. By correlating every run to a
|
|
11
|
-
stable `event_id`,
|
|
14
|
+
stable `event_id`, botanu gives you per-event cost attribution and outcome
|
|
12
15
|
tracking without sampling artifacts.
|
|
13
16
|
|
|
14
|
-
## Getting Started
|
|
15
|
-
|
|
16
17
|
```bash
|
|
17
18
|
pip install botanu
|
|
18
19
|
```
|
|
@@ -91,6 +92,7 @@ To report a security vulnerability, please use
|
|
|
91
92
|
[GitHub Security Advisories](https://github.com/botanu-ai/botanu-sdk-python/security/advisories/new)
|
|
92
93
|
or see [SECURITY.md](./SECURITY.md) for full details. **Do not file a public issue.**
|
|
93
94
|
|
|
95
|
+
|
|
94
96
|
## Code of Conduct
|
|
95
97
|
|
|
96
98
|
This project follows the
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|