hivetrace 1.3.10__tar.gz → 1.3.11__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.
- {hivetrace-1.3.10 → hivetrace-1.3.11}/PKG-INFO +39 -6
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/client/base.py +3 -3
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace.egg-info/PKG-INFO +39 -6
- {hivetrace-1.3.10 → hivetrace-1.3.11}/setup.py +1 -1
- {hivetrace-1.3.10 → hivetrace-1.3.11}/LICENSE +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/README.md +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/__init__.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/adapters/__init__.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/adapters/base_adapter.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/adapters/crewai/__init__.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/adapters/crewai/adapter.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/adapters/crewai/decorators.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/adapters/crewai/monitored_agent.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/adapters/crewai/monitored_crew.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/adapters/crewai/tool_wrapper.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/adapters/langchain/__init__.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/adapters/langchain/adapter.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/adapters/langchain/api.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/adapters/langchain/behavior_tracker.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/adapters/langchain/callback.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/adapters/langchain/decorators.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/adapters/langchain/models.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/adapters/openai_agents/__init__.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/adapters/openai_agents/adapter.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/adapters/openai_agents/models.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/adapters/openai_agents/tracing.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/adapters/utils/__init__.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/adapters/utils/logging.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/client/__init__.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/client/async_client.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/client/sync_client.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/errors/__init__.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/errors/api.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/errors/base.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/errors/network.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/errors/validation.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/handlers/__init__.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/handlers/error_handler.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/handlers/response_builder.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/models/__init__.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/models/requests.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/models/responses.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/utils/__init__.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/utils/error_helpers.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace/utils/uuid_generator.py +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace.egg-info/SOURCES.txt +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace.egg-info/dependency_links.txt +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace.egg-info/requires.txt +7 -7
- {hivetrace-1.3.10 → hivetrace-1.3.11}/hivetrace.egg-info/top_level.txt +0 -0
- {hivetrace-1.3.10 → hivetrace-1.3.11}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: hivetrace
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.11
|
|
4
4
|
Summary: Hivetrace SDK for monitoring LLM applications
|
|
5
5
|
Home-page: http://hivetrace.ai
|
|
6
6
|
Author: Raft
|
|
@@ -9,12 +9,45 @@ Keywords: SDK,monitoring,logging,LLM,AI,Hivetrace
|
|
|
9
9
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
10
10
|
Requires-Python: >=3.8
|
|
11
11
|
Description-Content-Type: text/markdown
|
|
12
|
-
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Requires-Dist: httpx>=0.28.1
|
|
14
|
+
Requires-Dist: python-dotenv>=1.0.1
|
|
15
|
+
Requires-Dist: pydantic>=2.11.7
|
|
13
16
|
Provides-Extra: base
|
|
14
|
-
|
|
17
|
+
Requires-Dist: httpx>=0.28.1; extra == "base"
|
|
18
|
+
Requires-Dist: python-dotenv>=1.0.1; extra == "base"
|
|
19
|
+
Requires-Dist: pydantic>=2.11.7; extra == "base"
|
|
15
20
|
Provides-Extra: langchain
|
|
16
|
-
|
|
17
|
-
|
|
21
|
+
Requires-Dist: langchain-openai==0.2.5; extra == "langchain"
|
|
22
|
+
Requires-Dist: langchain-community==0.3.18; extra == "langchain"
|
|
23
|
+
Requires-Dist: langchain==0.3.19; extra == "langchain"
|
|
24
|
+
Requires-Dist: langchain_experimental==0.3.4; extra == "langchain"
|
|
25
|
+
Provides-Extra: crewai
|
|
26
|
+
Requires-Dist: crewai>=0.95.0; extra == "crewai"
|
|
27
|
+
Provides-Extra: openai-agents
|
|
28
|
+
Requires-Dist: openai-agents>=0.1.0; extra == "openai-agents"
|
|
29
|
+
Provides-Extra: all
|
|
30
|
+
Requires-Dist: httpx>=0.28.1; extra == "all"
|
|
31
|
+
Requires-Dist: python-dotenv>=1.0.1; extra == "all"
|
|
32
|
+
Requires-Dist: pydantic>=2.11.7; extra == "all"
|
|
33
|
+
Requires-Dist: langchain-openai==0.2.5; extra == "all"
|
|
34
|
+
Requires-Dist: langchain-community==0.3.18; extra == "all"
|
|
35
|
+
Requires-Dist: langchain==0.3.19; extra == "all"
|
|
36
|
+
Requires-Dist: langchain_experimental==0.3.4; extra == "all"
|
|
37
|
+
Requires-Dist: crewai>=0.95.0; extra == "all"
|
|
38
|
+
Requires-Dist: openai-agents>=0.1.0; extra == "all"
|
|
39
|
+
Dynamic: author
|
|
40
|
+
Dynamic: author-email
|
|
41
|
+
Dynamic: classifier
|
|
42
|
+
Dynamic: description
|
|
43
|
+
Dynamic: description-content-type
|
|
44
|
+
Dynamic: home-page
|
|
45
|
+
Dynamic: keywords
|
|
46
|
+
Dynamic: license-file
|
|
47
|
+
Dynamic: provides-extra
|
|
48
|
+
Dynamic: requires-dist
|
|
49
|
+
Dynamic: requires-python
|
|
50
|
+
Dynamic: summary
|
|
18
51
|
|
|
19
52
|
# Hivetrace SDK
|
|
20
53
|
|
|
@@ -125,9 +125,9 @@ class BaseHivetraceSDK(ABC):
|
|
|
125
125
|
"""Extracts analysis id from API response if present."""
|
|
126
126
|
try:
|
|
127
127
|
if isinstance(response, dict):
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
128
|
+
request_id = response.get("request_id")
|
|
129
|
+
if request_id:
|
|
130
|
+
return str(request_id)
|
|
131
131
|
except Exception:
|
|
132
132
|
return None
|
|
133
133
|
return None
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: hivetrace
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.11
|
|
4
4
|
Summary: Hivetrace SDK for monitoring LLM applications
|
|
5
5
|
Home-page: http://hivetrace.ai
|
|
6
6
|
Author: Raft
|
|
@@ -9,12 +9,45 @@ Keywords: SDK,monitoring,logging,LLM,AI,Hivetrace
|
|
|
9
9
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
10
10
|
Requires-Python: >=3.8
|
|
11
11
|
Description-Content-Type: text/markdown
|
|
12
|
-
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Requires-Dist: httpx>=0.28.1
|
|
14
|
+
Requires-Dist: python-dotenv>=1.0.1
|
|
15
|
+
Requires-Dist: pydantic>=2.11.7
|
|
13
16
|
Provides-Extra: base
|
|
14
|
-
|
|
17
|
+
Requires-Dist: httpx>=0.28.1; extra == "base"
|
|
18
|
+
Requires-Dist: python-dotenv>=1.0.1; extra == "base"
|
|
19
|
+
Requires-Dist: pydantic>=2.11.7; extra == "base"
|
|
15
20
|
Provides-Extra: langchain
|
|
16
|
-
|
|
17
|
-
|
|
21
|
+
Requires-Dist: langchain-openai==0.2.5; extra == "langchain"
|
|
22
|
+
Requires-Dist: langchain-community==0.3.18; extra == "langchain"
|
|
23
|
+
Requires-Dist: langchain==0.3.19; extra == "langchain"
|
|
24
|
+
Requires-Dist: langchain_experimental==0.3.4; extra == "langchain"
|
|
25
|
+
Provides-Extra: crewai
|
|
26
|
+
Requires-Dist: crewai>=0.95.0; extra == "crewai"
|
|
27
|
+
Provides-Extra: openai-agents
|
|
28
|
+
Requires-Dist: openai-agents>=0.1.0; extra == "openai-agents"
|
|
29
|
+
Provides-Extra: all
|
|
30
|
+
Requires-Dist: httpx>=0.28.1; extra == "all"
|
|
31
|
+
Requires-Dist: python-dotenv>=1.0.1; extra == "all"
|
|
32
|
+
Requires-Dist: pydantic>=2.11.7; extra == "all"
|
|
33
|
+
Requires-Dist: langchain-openai==0.2.5; extra == "all"
|
|
34
|
+
Requires-Dist: langchain-community==0.3.18; extra == "all"
|
|
35
|
+
Requires-Dist: langchain==0.3.19; extra == "all"
|
|
36
|
+
Requires-Dist: langchain_experimental==0.3.4; extra == "all"
|
|
37
|
+
Requires-Dist: crewai>=0.95.0; extra == "all"
|
|
38
|
+
Requires-Dist: openai-agents>=0.1.0; extra == "all"
|
|
39
|
+
Dynamic: author
|
|
40
|
+
Dynamic: author-email
|
|
41
|
+
Dynamic: classifier
|
|
42
|
+
Dynamic: description
|
|
43
|
+
Dynamic: description-content-type
|
|
44
|
+
Dynamic: home-page
|
|
45
|
+
Dynamic: keywords
|
|
46
|
+
Dynamic: license-file
|
|
47
|
+
Dynamic: provides-extra
|
|
48
|
+
Dynamic: requires-dist
|
|
49
|
+
Dynamic: requires-python
|
|
50
|
+
Dynamic: summary
|
|
18
51
|
|
|
19
52
|
# Hivetrace SDK
|
|
20
53
|
|
|
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
|
|
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
|
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
httpx>=0.28.1
|
|
2
|
-
pydantic>=2.11.7
|
|
3
2
|
python-dotenv>=1.0.1
|
|
3
|
+
pydantic>=2.11.7
|
|
4
4
|
|
|
5
5
|
[all]
|
|
6
|
-
crewai>=0.95.0
|
|
7
6
|
httpx>=0.28.1
|
|
8
|
-
|
|
7
|
+
python-dotenv>=1.0.1
|
|
8
|
+
pydantic>=2.11.7
|
|
9
9
|
langchain-openai==0.2.5
|
|
10
|
+
langchain-community==0.3.18
|
|
10
11
|
langchain==0.3.19
|
|
11
12
|
langchain_experimental==0.3.4
|
|
13
|
+
crewai>=0.95.0
|
|
12
14
|
openai-agents>=0.1.0
|
|
13
|
-
pydantic>=2.11.7
|
|
14
|
-
python-dotenv>=1.0.1
|
|
15
15
|
|
|
16
16
|
[base]
|
|
17
17
|
httpx>=0.28.1
|
|
18
|
-
pydantic>=2.11.7
|
|
19
18
|
python-dotenv>=1.0.1
|
|
19
|
+
pydantic>=2.11.7
|
|
20
20
|
|
|
21
21
|
[crewai]
|
|
22
22
|
crewai>=0.95.0
|
|
23
23
|
|
|
24
24
|
[langchain]
|
|
25
|
-
langchain-community==0.3.18
|
|
26
25
|
langchain-openai==0.2.5
|
|
26
|
+
langchain-community==0.3.18
|
|
27
27
|
langchain==0.3.19
|
|
28
28
|
langchain_experimental==0.3.4
|
|
29
29
|
|
|
File without changes
|
|
File without changes
|