parlot 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.
@@ -0,0 +1,61 @@
1
+ # OS
2
+ .DS_Store
3
+ Thumbs.db
4
+
5
+ # Python
6
+ __pycache__/
7
+ *.py[cod]
8
+ *$py.class
9
+ *.so
10
+ .Python
11
+ *.egg-info/
12
+ .eggs/
13
+ *.egg
14
+ dist/
15
+ build/
16
+ wheels/
17
+
18
+ # Virtual environments
19
+ .venv/
20
+ venv/
21
+ env/
22
+
23
+ # Test & type checkers
24
+ .pytest_cache/
25
+ .mypy_cache/
26
+ .ruff_cache/
27
+ .pyright/
28
+ .hypothesis/
29
+ .coverage
30
+ .coverage.*
31
+ htmlcov/
32
+ .tox/
33
+ .nox/
34
+
35
+ # Secrets — never commit (keep *.example templates)
36
+ .env
37
+ .env.*
38
+ !.env.example
39
+ !.env.*.example
40
+
41
+ # IDE (keep shared VS Code settings)
42
+ .idea/
43
+ *.swp
44
+ *.swo
45
+ *~
46
+ .vscode/*
47
+ !.vscode/settings.json
48
+
49
+ # Logs
50
+ *.log
51
+ logs/
52
+ examples/**/compare/**
53
+
54
+ # Node
55
+ node_modules/
56
+
57
+ # Docs site
58
+ docs/build/
59
+ docs/.docusaurus/
60
+ docs/package-lock.json
61
+
parlot-0.1.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Nineth LLC
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.
parlot-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,60 @@
1
+ Metadata-Version: 2.5
2
+ Name: parlot
3
+ Version: 0.1.0
4
+ Summary: Parlot: OpenTelemetry-native observability for AI agents
5
+ Project-URL: Homepage, https://parlot.ai
6
+ Project-URL: Documentation, https://parlot.ai/docs
7
+ Project-URL: Repository, https://github.com/parlot-ai/sdk
8
+ Author-email: Parlot AI <hi@parlot.ai>
9
+ License-Expression: MIT
10
+ License-File: LICENSE
11
+ Keywords: agents,ai,observability,opentelemetry,parlot,telemetry
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Topic :: System :: Monitoring
20
+ Requires-Python: >=3.11
21
+ Requires-Dist: parlot-core>=0.1.0
22
+ Provides-Extra: all
23
+ Requires-Dist: parlot-instrumentation-langgraph>=0.1.0; extra == 'all'
24
+ Requires-Dist: parlot-instrumentation-livekit>=0.1.0; extra == 'all'
25
+ Provides-Extra: langgraph
26
+ Requires-Dist: parlot-instrumentation-langgraph>=0.1.0; extra == 'langgraph'
27
+ Provides-Extra: livekit
28
+ Requires-Dist: parlot-instrumentation-livekit>=0.1.0; extra == 'livekit'
29
+ Description-Content-Type: text/markdown
30
+
31
+ # Parlot
32
+
33
+ OpenTelemetry-native observability and telemetry for voice and multimodal AI agents.
34
+
35
+ ## Quick Start
36
+
37
+ Install Parlot with the extra for your agent framework:
38
+
39
+ ```bash
40
+ # For LiveKit Agents
41
+ pip install "parlot[livekit]"
42
+
43
+ # For LangGraph / LangChain Agents
44
+ pip install "parlot[langgraph]"
45
+
46
+ # For all supported integrations
47
+ pip install "parlot[all]"
48
+ ```
49
+
50
+ Or install the specific instrumentation package directly:
51
+
52
+ ```bash
53
+ pip install parlot-instrumentation-livekit
54
+ # or
55
+ pip install parlot-instrumentation-langgraph
56
+ ```
57
+
58
+ ## Documentation
59
+
60
+ Full documentation, guides, and API references are available at [parlot.ai/docs](https://parlot.ai/docs).
parlot-0.1.0/README.md ADDED
@@ -0,0 +1,30 @@
1
+ # Parlot
2
+
3
+ OpenTelemetry-native observability and telemetry for voice and multimodal AI agents.
4
+
5
+ ## Quick Start
6
+
7
+ Install Parlot with the extra for your agent framework:
8
+
9
+ ```bash
10
+ # For LiveKit Agents
11
+ pip install "parlot[livekit]"
12
+
13
+ # For LangGraph / LangChain Agents
14
+ pip install "parlot[langgraph]"
15
+
16
+ # For all supported integrations
17
+ pip install "parlot[all]"
18
+ ```
19
+
20
+ Or install the specific instrumentation package directly:
21
+
22
+ ```bash
23
+ pip install parlot-instrumentation-livekit
24
+ # or
25
+ pip install parlot-instrumentation-langgraph
26
+ ```
27
+
28
+ ## Documentation
29
+
30
+ Full documentation, guides, and API references are available at [parlot.ai/docs](https://parlot.ai/docs).
@@ -0,0 +1,51 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "parlot"
7
+ version = "0.1.0"
8
+ description = "Parlot: OpenTelemetry-native observability for AI agents"
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ authors = [
12
+ { name = "Parlot AI", email = "hi@parlot.ai" },
13
+ ]
14
+ requires-python = ">=3.11"
15
+ classifiers = [
16
+ "Development Status :: 4 - Beta",
17
+ "Intended Audience :: Developers",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.11",
21
+ "Programming Language :: Python :: 3.12",
22
+ "Programming Language :: Python :: 3.13",
23
+ "Topic :: System :: Monitoring",
24
+ ]
25
+ keywords = ["opentelemetry", "telemetry", "ai", "agents", "observability", "parlot"]
26
+ dependencies = [
27
+ "parlot-core>=0.1.0",
28
+ ]
29
+
30
+ [project.optional-dependencies]
31
+ livekit = ["parlot-instrumentation-livekit>=0.1.0"]
32
+ langgraph = ["parlot-instrumentation-langgraph>=0.1.0"]
33
+ all = [
34
+ "parlot-instrumentation-livekit>=0.1.0",
35
+ "parlot-instrumentation-langgraph>=0.1.0",
36
+ ]
37
+
38
+ [project.urls]
39
+ Homepage = "https://parlot.ai"
40
+ Documentation = "https://parlot.ai/docs"
41
+ Repository = "https://github.com/parlot-ai/sdk"
42
+
43
+ [tool.hatch.build.targets.wheel]
44
+ packages = ["src/parlot"]
45
+
46
+ [tool.hatch.build.targets.sdist]
47
+ include = [
48
+ "src/parlot",
49
+ "README.md",
50
+ "LICENSE",
51
+ ]
File without changes