forevr 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.
- forevr-0.1.0/PKG-INFO +93 -0
- forevr-0.1.0/README.md +62 -0
- forevr-0.1.0/forevr.egg-info/PKG-INFO +93 -0
- forevr-0.1.0/forevr.egg-info/SOURCES.txt +7 -0
- forevr-0.1.0/forevr.egg-info/dependency_links.txt +1 -0
- forevr-0.1.0/forevr.egg-info/requires.txt +14 -0
- forevr-0.1.0/forevr.egg-info/top_level.txt +1 -0
- forevr-0.1.0/pyproject.toml +48 -0
- forevr-0.1.0/setup.cfg +4 -0
forevr-0.1.0/PKG-INFO
ADDED
|
@@ -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
|
+
```
|
forevr-0.1.0/README.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# traceai
|
|
2
|
+
|
|
3
|
+
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.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install traceai
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Quick start
|
|
12
|
+
|
|
13
|
+
```python
|
|
14
|
+
import traceai
|
|
15
|
+
|
|
16
|
+
traceai.init(
|
|
17
|
+
api_key = "tai-xxxxxxxxxxxxxxxxxxxx", # from your Trace AI dashboard
|
|
18
|
+
project = "my-agent",
|
|
19
|
+
)
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Integrations
|
|
23
|
+
|
|
24
|
+
**LangChain / LangGraph**
|
|
25
|
+
```python
|
|
26
|
+
from traceai.langchain import Tracer
|
|
27
|
+
|
|
28
|
+
agent = AgentExecutor(agent=..., tools=..., callbacks=[Tracer()])
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
**CrewAI**
|
|
32
|
+
```python
|
|
33
|
+
from traceai.crewai import trace_crew
|
|
34
|
+
|
|
35
|
+
result = trace_crew(crew, inputs={"topic": "AI trends"})
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
**OpenAI Agents SDK**
|
|
39
|
+
```python
|
|
40
|
+
from traceai.openai_agents import Processor
|
|
41
|
+
from agents import add_trace_processor
|
|
42
|
+
|
|
43
|
+
add_trace_processor(Processor())
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
**Any custom agent**
|
|
47
|
+
```python
|
|
48
|
+
from traceai.universal import Trace, span
|
|
49
|
+
|
|
50
|
+
with Trace("my_agent"):
|
|
51
|
+
with span("tool_call", "web_search"):
|
|
52
|
+
result = search(query)
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## Local dev (no API key needed)
|
|
56
|
+
|
|
57
|
+
Run the backend locally and traces appear in the dashboard automatically — no key required:
|
|
58
|
+
|
|
59
|
+
```python
|
|
60
|
+
# No init() needed — defaults to http://127.0.0.1:8000
|
|
61
|
+
from traceai.langchain import Tracer
|
|
62
|
+
```
|
|
@@ -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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "forevr"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Observability SDK for AI agents — auto-traces LangChain, CrewAI, OpenAI Agents, and any custom agent."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Trace AI", email = "mayankdindor229@gmail.com" }
|
|
14
|
+
]
|
|
15
|
+
keywords = ["ai", "agents", "observability", "tracing", "langchain", "crewai", "openai"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 3 - Alpha",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Programming Language :: Python :: 3.9",
|
|
21
|
+
"Programming Language :: Python :: 3.10",
|
|
22
|
+
"Programming Language :: Python :: 3.11",
|
|
23
|
+
"Programming Language :: Python :: 3.12",
|
|
24
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
25
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
# Only `requests` is truly required — framework packages are optional
|
|
29
|
+
dependencies = [
|
|
30
|
+
"requests>=2.28.0",
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[project.optional-dependencies]
|
|
34
|
+
langchain = ["langchain-core>=0.1.0"]
|
|
35
|
+
crewai = ["crewai>=0.1.0"]
|
|
36
|
+
openai = ["openai-agents>=0.1.0"]
|
|
37
|
+
all = ["langchain-core>=0.1.0", "crewai>=0.1.0"]
|
|
38
|
+
|
|
39
|
+
[project.urls]
|
|
40
|
+
Homepage = "https://github.com/traceai-dev/traceai"
|
|
41
|
+
Repository = "https://github.com/traceai-dev/traceai"
|
|
42
|
+
|
|
43
|
+
[tool.setuptools.packages.find]
|
|
44
|
+
where = ["."]
|
|
45
|
+
include = ["traceai*"]
|
|
46
|
+
|
|
47
|
+
[tool.setuptools.package-data]
|
|
48
|
+
traceai = ["py.typed"]
|
forevr-0.1.0/setup.cfg
ADDED