tracia 0.0.1__py3-none-any.whl

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.
tracia/__init__.py ADDED
@@ -0,0 +1,8 @@
1
+ """
2
+ Tracia - LLM prompt management and tracing SDK
3
+
4
+ Full SDK coming soon at https://tracia.io
5
+ """
6
+
7
+ __version__ = "0.0.1"
8
+ __status__ = "coming-soon"
@@ -0,0 +1,52 @@
1
+ Metadata-Version: 2.4
2
+ Name: tracia
3
+ Version: 0.0.1
4
+ Summary: LLM prompt management and tracing SDK - Coming soon
5
+ Project-URL: Homepage, https://tracia.io
6
+ Project-URL: Repository, https://github.com/tracia/tracia-python
7
+ Project-URL: Issues, https://github.com/tracia/tracia-python/issues
8
+ Author-email: Tracia <hello@tracia.io>
9
+ License-Expression: MIT
10
+ License-File: LICENSE
11
+ Keywords: ai,anthropic,chatgpt,claude,gemini,google,llm,observability,openai,prompt,tracing
12
+ Classifier: Development Status :: 1 - Planning
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ Requires-Python: >=3.8
23
+ Description-Content-Type: text/markdown
24
+
25
+ # Tracia
26
+
27
+ **LLM prompt management and tracing SDK**
28
+
29
+ 🚀 **Coming soon** - Full SDK launching in early 2026.
30
+
31
+ ## What is Tracia?
32
+
33
+ Tracia is a modern LLM prompt management and tracing platform with zero-config setup. Store your prompts in the cloud, trace every LLM call, and iterate faster.
34
+
35
+ ## Quick Preview
36
+
37
+ ```python
38
+ from tracia import Tracia
39
+
40
+ client = Tracia()
41
+ response = client.run("my-prompt", variables={"name": "World"})
42
+ ```
43
+
44
+ ## Learn More
45
+
46
+ - 🌐 Website: [tracia.io](https://tracia.io)
47
+ - 📖 Docs: Coming soon
48
+ - 🐙 GitHub: [github.com/tracia](https://github.com/tracia)
49
+
50
+ ## License
51
+
52
+ MIT
@@ -0,0 +1,5 @@
1
+ tracia/__init__.py,sha256=LOfccReusbDjJkitNMUSvGb5X18iBZv-Zrka7ryRD5o,148
2
+ tracia-0.0.1.dist-info/METADATA,sha256=TUNipf7P_IObyy1xDumTKu1HfS_dGfszMFZdNkzi2D8,1643
3
+ tracia-0.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
4
+ tracia-0.0.1.dist-info/licenses/LICENSE,sha256=jnoLcro_uevZVCUf3nkyE43c6mG6MGNJ_3_TShNJj5s,1063
5
+ tracia-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.27.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Tracia
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.