forevr 0.1.0__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.
@@ -0,0 +1,93 @@
1
+ Metadata-Version: 2.4
2
+ Name: forevr
3
+ Version: 0.1.0
4
+ Summary: Observability SDK for AI agents — auto-traces LangChain, CrewAI, OpenAI Agents, and any custom agent.
5
+ Author-email: Trace AI <mayankdindor229@gmail.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/traceai-dev/traceai
8
+ Project-URL: Repository, https://github.com/traceai-dev/traceai
9
+ Keywords: ai,agents,observability,tracing,langchain,crewai,openai
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.9
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
18
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
19
+ Requires-Python: >=3.9
20
+ Description-Content-Type: text/markdown
21
+ Requires-Dist: requests>=2.28.0
22
+ Provides-Extra: langchain
23
+ Requires-Dist: langchain-core>=0.1.0; extra == "langchain"
24
+ Provides-Extra: crewai
25
+ Requires-Dist: crewai>=0.1.0; extra == "crewai"
26
+ Provides-Extra: openai
27
+ Requires-Dist: openai-agents>=0.1.0; extra == "openai"
28
+ Provides-Extra: all
29
+ Requires-Dist: langchain-core>=0.1.0; extra == "all"
30
+ Requires-Dist: crewai>=0.1.0; extra == "all"
31
+
32
+ # traceai
33
+
34
+ Observability SDK for AI agents. Auto-traces LangChain, CrewAI, OpenAI Agents, and any custom agent — with a full dashboard for latency, cost, errors, and LLM-as-judge scoring.
35
+
36
+ ## Install
37
+
38
+ ```bash
39
+ pip install traceai
40
+ ```
41
+
42
+ ## Quick start
43
+
44
+ ```python
45
+ import traceai
46
+
47
+ traceai.init(
48
+ api_key = "tai-xxxxxxxxxxxxxxxxxxxx", # from your Trace AI dashboard
49
+ project = "my-agent",
50
+ )
51
+ ```
52
+
53
+ ## Integrations
54
+
55
+ **LangChain / LangGraph**
56
+ ```python
57
+ from traceai.langchain import Tracer
58
+
59
+ agent = AgentExecutor(agent=..., tools=..., callbacks=[Tracer()])
60
+ ```
61
+
62
+ **CrewAI**
63
+ ```python
64
+ from traceai.crewai import trace_crew
65
+
66
+ result = trace_crew(crew, inputs={"topic": "AI trends"})
67
+ ```
68
+
69
+ **OpenAI Agents SDK**
70
+ ```python
71
+ from traceai.openai_agents import Processor
72
+ from agents import add_trace_processor
73
+
74
+ add_trace_processor(Processor())
75
+ ```
76
+
77
+ **Any custom agent**
78
+ ```python
79
+ from traceai.universal import Trace, span
80
+
81
+ with Trace("my_agent"):
82
+ with span("tool_call", "web_search"):
83
+ result = search(query)
84
+ ```
85
+
86
+ ## Local dev (no API key needed)
87
+
88
+ Run the backend locally and traces appear in the dashboard automatically — no key required:
89
+
90
+ ```python
91
+ # No init() needed — defaults to http://127.0.0.1:8000
92
+ from traceai.langchain import Tracer
93
+ ```
@@ -0,0 +1,4 @@
1
+ forevr-0.1.0.dist-info/METADATA,sha256=NFOJhHXJYiRXj0nmlzj9xvv67eS-BcD4fiVYemtqse8,2696
2
+ forevr-0.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
3
+ forevr-0.1.0.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
4
+ forevr-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+