seminara 1.0.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.
- seminara-1.0.0/PKG-INFO +102 -0
- seminara-1.0.0/README.md +88 -0
- seminara-1.0.0/pyproject.toml +21 -0
- seminara-1.0.0/seminara/__init__.py +47 -0
- seminara-1.0.0/seminara.egg-info/PKG-INFO +102 -0
- seminara-1.0.0/seminara.egg-info/SOURCES.txt +8 -0
- seminara-1.0.0/seminara.egg-info/dependency_links.txt +1 -0
- seminara-1.0.0/seminara.egg-info/requires.txt +2 -0
- seminara-1.0.0/seminara.egg-info/top_level.txt +1 -0
- seminara-1.0.0/setup.cfg +4 -0
seminara-1.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: seminara
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Official Python SDK for Seminara AI interactive presentation platform (seminara.online)
|
|
5
|
+
Author-email: Shivam Selam <shivamselam@seminara.online>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://seminara.online
|
|
8
|
+
Project-URL: Documentation, https://seminara.online/docs
|
|
9
|
+
Project-URL: Repository, https://github.com/shivamselam/seminara-agentic-suite
|
|
10
|
+
Keywords: seminara,ai-presenter,presentation,agentic,mcp
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
Requires-Dist: httpx>=0.24.0
|
|
13
|
+
Requires-Dist: pydantic>=2.0.0
|
|
14
|
+
|
|
15
|
+
<div align="center">
|
|
16
|
+
<h1>Seminara Python SDK</h1>
|
|
17
|
+
<p><strong>Official Python client for the Seminara AI Presentation Engine.</strong></p>
|
|
18
|
+
|
|
19
|
+
[](https://pypi.org/project/seminara/)
|
|
20
|
+
[](https://pypi.org/project/seminara/)
|
|
21
|
+
[](./LICENSE)
|
|
22
|
+
[](https://seminara.online/api/v1/mcp)
|
|
23
|
+
|
|
24
|
+
<br />
|
|
25
|
+
<a href="https://seminara.online/live/demo"><strong>View Live Presentation Demo »</strong></a>
|
|
26
|
+
·
|
|
27
|
+
<a href="https://seminara.online/docs/api-overview"><strong>API Reference »</strong></a>
|
|
28
|
+
<br />
|
|
29
|
+
<br />
|
|
30
|
+
</div>
|
|
31
|
+
|
|
32
|
+
## Overview
|
|
33
|
+
|
|
34
|
+
The **Seminara Python SDK** allows developers and autonomous AI agents to programmatically create, manage, and orchestrate live AI-hosted presentations on [Seminara](https://seminara.online).
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## 📦 Installation
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
pip install seminara
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## ⚡ Quickstart
|
|
47
|
+
|
|
48
|
+
### 1. Initialize Client
|
|
49
|
+
Get your API key from [seminara.online/settings](https://seminara.online/settings).
|
|
50
|
+
|
|
51
|
+
```python
|
|
52
|
+
import os
|
|
53
|
+
from seminara import SeminaraClient
|
|
54
|
+
|
|
55
|
+
client = SeminaraClient(api_key=os.environ.get("SEMINARA_API_KEY"))
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
### 2. Create a Live Presentation Session
|
|
59
|
+
|
|
60
|
+
```python
|
|
61
|
+
session = client.create_session(
|
|
62
|
+
title="Q3 Enterprise Demo & Discovery",
|
|
63
|
+
description="Autonomous product walkthrough with live Q&A handling.",
|
|
64
|
+
is_live=True,
|
|
65
|
+
pdf_url="https://example.com/pitch-deck.pdf",
|
|
66
|
+
knowledge_base=[
|
|
67
|
+
{
|
|
68
|
+
"title": "Pricing & Plans",
|
|
69
|
+
"content": "Core Host is $199/mo ($179/mo annually) for 50 presentations and 1,400 minutes.",
|
|
70
|
+
}
|
|
71
|
+
],
|
|
72
|
+
cta_text="Book an Architecture Review",
|
|
73
|
+
cta_url="https://seminara.online/book-meeting"
|
|
74
|
+
)
|
|
75
|
+
|
|
76
|
+
print(f"Session Created: {session['sessionId']}")
|
|
77
|
+
print(f"Share Link: {session['shareLink']}")
|
|
78
|
+
print(f"Live Room URL: {session['liveLink']}")
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
### 3. List Existing Sessions
|
|
82
|
+
|
|
83
|
+
```python
|
|
84
|
+
sessions = client.list_sessions(limit=10)
|
|
85
|
+
for s in sessions.get("sessions", []):
|
|
86
|
+
print(f"- {s['title']} ({s['slug']})")
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
## 🤖 Agentic Integrations (MCP & WebMCP)
|
|
92
|
+
|
|
93
|
+
Seminara supports the **Model Context Protocol (MCP)** and **WebMCP** natively. Connect your Python AI agents (LangChain, LlamaIndex, AutoGen, CrewAI) directly:
|
|
94
|
+
|
|
95
|
+
- **MCP Server URL:** `https://seminara.online/api/v1/mcp`
|
|
96
|
+
- **Docs MCP Server:** `https://seminara.online/api/docs/mcp`
|
|
97
|
+
- **OpenAPI 3.1 Spec:** [`https://seminara.online/openapi.json`](https://seminara.online/openapi.json)
|
|
98
|
+
|
|
99
|
+
---
|
|
100
|
+
|
|
101
|
+
## 📄 License
|
|
102
|
+
MIT License. Created by [Omni AI Club Private Limited](https://omniai.club).
|
seminara-1.0.0/README.md
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
<h1>Seminara Python SDK</h1>
|
|
3
|
+
<p><strong>Official Python client for the Seminara AI Presentation Engine.</strong></p>
|
|
4
|
+
|
|
5
|
+
[](https://pypi.org/project/seminara/)
|
|
6
|
+
[](https://pypi.org/project/seminara/)
|
|
7
|
+
[](./LICENSE)
|
|
8
|
+
[](https://seminara.online/api/v1/mcp)
|
|
9
|
+
|
|
10
|
+
<br />
|
|
11
|
+
<a href="https://seminara.online/live/demo"><strong>View Live Presentation Demo »</strong></a>
|
|
12
|
+
·
|
|
13
|
+
<a href="https://seminara.online/docs/api-overview"><strong>API Reference »</strong></a>
|
|
14
|
+
<br />
|
|
15
|
+
<br />
|
|
16
|
+
</div>
|
|
17
|
+
|
|
18
|
+
## Overview
|
|
19
|
+
|
|
20
|
+
The **Seminara Python SDK** allows developers and autonomous AI agents to programmatically create, manage, and orchestrate live AI-hosted presentations on [Seminara](https://seminara.online).
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## 📦 Installation
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
pip install seminara
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
## ⚡ Quickstart
|
|
33
|
+
|
|
34
|
+
### 1. Initialize Client
|
|
35
|
+
Get your API key from [seminara.online/settings](https://seminara.online/settings).
|
|
36
|
+
|
|
37
|
+
```python
|
|
38
|
+
import os
|
|
39
|
+
from seminara import SeminaraClient
|
|
40
|
+
|
|
41
|
+
client = SeminaraClient(api_key=os.environ.get("SEMINARA_API_KEY"))
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
### 2. Create a Live Presentation Session
|
|
45
|
+
|
|
46
|
+
```python
|
|
47
|
+
session = client.create_session(
|
|
48
|
+
title="Q3 Enterprise Demo & Discovery",
|
|
49
|
+
description="Autonomous product walkthrough with live Q&A handling.",
|
|
50
|
+
is_live=True,
|
|
51
|
+
pdf_url="https://example.com/pitch-deck.pdf",
|
|
52
|
+
knowledge_base=[
|
|
53
|
+
{
|
|
54
|
+
"title": "Pricing & Plans",
|
|
55
|
+
"content": "Core Host is $199/mo ($179/mo annually) for 50 presentations and 1,400 minutes.",
|
|
56
|
+
}
|
|
57
|
+
],
|
|
58
|
+
cta_text="Book an Architecture Review",
|
|
59
|
+
cta_url="https://seminara.online/book-meeting"
|
|
60
|
+
)
|
|
61
|
+
|
|
62
|
+
print(f"Session Created: {session['sessionId']}")
|
|
63
|
+
print(f"Share Link: {session['shareLink']}")
|
|
64
|
+
print(f"Live Room URL: {session['liveLink']}")
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
### 3. List Existing Sessions
|
|
68
|
+
|
|
69
|
+
```python
|
|
70
|
+
sessions = client.list_sessions(limit=10)
|
|
71
|
+
for s in sessions.get("sessions", []):
|
|
72
|
+
print(f"- {s['title']} ({s['slug']})")
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
---
|
|
76
|
+
|
|
77
|
+
## 🤖 Agentic Integrations (MCP & WebMCP)
|
|
78
|
+
|
|
79
|
+
Seminara supports the **Model Context Protocol (MCP)** and **WebMCP** natively. Connect your Python AI agents (LangChain, LlamaIndex, AutoGen, CrewAI) directly:
|
|
80
|
+
|
|
81
|
+
- **MCP Server URL:** `https://seminara.online/api/v1/mcp`
|
|
82
|
+
- **Docs MCP Server:** `https://seminara.online/api/docs/mcp`
|
|
83
|
+
- **OpenAPI 3.1 Spec:** [`https://seminara.online/openapi.json`](https://seminara.online/openapi.json)
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
## 📄 License
|
|
88
|
+
MIT License. Created by [Omni AI Club Private Limited](https://omniai.club).
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "seminara"
|
|
7
|
+
version = "1.0.0"
|
|
8
|
+
description = "Official Python SDK for Seminara AI interactive presentation platform (seminara.online)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
authors = [{ name = "Shivam Selam", email = "shivamselam@seminara.online" }]
|
|
11
|
+
license = "MIT"
|
|
12
|
+
keywords = ["seminara", "ai-presenter", "presentation", "agentic", "mcp"]
|
|
13
|
+
dependencies = [
|
|
14
|
+
"httpx>=0.24.0",
|
|
15
|
+
"pydantic>=2.0.0"
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[project.urls]
|
|
19
|
+
Homepage = "https://seminara.online"
|
|
20
|
+
Documentation = "https://seminara.online/docs"
|
|
21
|
+
Repository = "https://github.com/shivamselam/seminara-agentic-suite"
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Official Python SDK for Seminara AI (seminara.online)
|
|
3
|
+
Autonomous AI Host for Live Presentations, Demos & Onboarding.
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
import os
|
|
7
|
+
import httpx
|
|
8
|
+
from typing import Optional, Dict, Any, List
|
|
9
|
+
|
|
10
|
+
class Seminara:
|
|
11
|
+
def __init__(self, api_key: Optional[str] = None, base_url: str = "https://seminara.online/api/v1"):
|
|
12
|
+
self.api_key = api_key or os.environ.get("SEMINARA_API_KEY", "")
|
|
13
|
+
self.base_url = base_url
|
|
14
|
+
self.client = httpx.Client(
|
|
15
|
+
base_url=self.base_url,
|
|
16
|
+
headers={
|
|
17
|
+
"Authorization": f"Bearer {self.api_key}",
|
|
18
|
+
"Content-Type": "application/json",
|
|
19
|
+
}
|
|
20
|
+
)
|
|
21
|
+
|
|
22
|
+
def create_session(self, title: str, description: Optional[str] = None, is_live: bool = False, **kwargs) -> Dict[str, Any]:
|
|
23
|
+
payload = {"title": title, "isLive": is_live, **kwargs}
|
|
24
|
+
if description:
|
|
25
|
+
payload["description"] = description
|
|
26
|
+
response = self.client.post("/agent/sessions", json=payload)
|
|
27
|
+
response.raise_for_status()
|
|
28
|
+
return response.json()
|
|
29
|
+
|
|
30
|
+
def list_sessions(self, limit: int = 20, cursor: Optional[str] = None) -> Dict[str, Any]:
|
|
31
|
+
params = {"limit": limit}
|
|
32
|
+
if cursor:
|
|
33
|
+
params["cursor"] = cursor
|
|
34
|
+
response = self.client.get("/agent/sessions", params=params)
|
|
35
|
+
response.raise_for_status()
|
|
36
|
+
return response.json()
|
|
37
|
+
|
|
38
|
+
def get_pricing(self) -> Dict[str, Any]:
|
|
39
|
+
response = httpx.get("https://seminara.online/api/pricing")
|
|
40
|
+
response.raise_for_status()
|
|
41
|
+
return response.json()
|
|
42
|
+
|
|
43
|
+
# Alias for backwards compatibility & consistency
|
|
44
|
+
SeminaraClient = Seminara
|
|
45
|
+
|
|
46
|
+
__all__ = ["Seminara", "SeminaraClient"]
|
|
47
|
+
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: seminara
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Official Python SDK for Seminara AI interactive presentation platform (seminara.online)
|
|
5
|
+
Author-email: Shivam Selam <shivamselam@seminara.online>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://seminara.online
|
|
8
|
+
Project-URL: Documentation, https://seminara.online/docs
|
|
9
|
+
Project-URL: Repository, https://github.com/shivamselam/seminara-agentic-suite
|
|
10
|
+
Keywords: seminara,ai-presenter,presentation,agentic,mcp
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
Requires-Dist: httpx>=0.24.0
|
|
13
|
+
Requires-Dist: pydantic>=2.0.0
|
|
14
|
+
|
|
15
|
+
<div align="center">
|
|
16
|
+
<h1>Seminara Python SDK</h1>
|
|
17
|
+
<p><strong>Official Python client for the Seminara AI Presentation Engine.</strong></p>
|
|
18
|
+
|
|
19
|
+
[](https://pypi.org/project/seminara/)
|
|
20
|
+
[](https://pypi.org/project/seminara/)
|
|
21
|
+
[](./LICENSE)
|
|
22
|
+
[](https://seminara.online/api/v1/mcp)
|
|
23
|
+
|
|
24
|
+
<br />
|
|
25
|
+
<a href="https://seminara.online/live/demo"><strong>View Live Presentation Demo »</strong></a>
|
|
26
|
+
·
|
|
27
|
+
<a href="https://seminara.online/docs/api-overview"><strong>API Reference »</strong></a>
|
|
28
|
+
<br />
|
|
29
|
+
<br />
|
|
30
|
+
</div>
|
|
31
|
+
|
|
32
|
+
## Overview
|
|
33
|
+
|
|
34
|
+
The **Seminara Python SDK** allows developers and autonomous AI agents to programmatically create, manage, and orchestrate live AI-hosted presentations on [Seminara](https://seminara.online).
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## 📦 Installation
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
pip install seminara
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## ⚡ Quickstart
|
|
47
|
+
|
|
48
|
+
### 1. Initialize Client
|
|
49
|
+
Get your API key from [seminara.online/settings](https://seminara.online/settings).
|
|
50
|
+
|
|
51
|
+
```python
|
|
52
|
+
import os
|
|
53
|
+
from seminara import SeminaraClient
|
|
54
|
+
|
|
55
|
+
client = SeminaraClient(api_key=os.environ.get("SEMINARA_API_KEY"))
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
### 2. Create a Live Presentation Session
|
|
59
|
+
|
|
60
|
+
```python
|
|
61
|
+
session = client.create_session(
|
|
62
|
+
title="Q3 Enterprise Demo & Discovery",
|
|
63
|
+
description="Autonomous product walkthrough with live Q&A handling.",
|
|
64
|
+
is_live=True,
|
|
65
|
+
pdf_url="https://example.com/pitch-deck.pdf",
|
|
66
|
+
knowledge_base=[
|
|
67
|
+
{
|
|
68
|
+
"title": "Pricing & Plans",
|
|
69
|
+
"content": "Core Host is $199/mo ($179/mo annually) for 50 presentations and 1,400 minutes.",
|
|
70
|
+
}
|
|
71
|
+
],
|
|
72
|
+
cta_text="Book an Architecture Review",
|
|
73
|
+
cta_url="https://seminara.online/book-meeting"
|
|
74
|
+
)
|
|
75
|
+
|
|
76
|
+
print(f"Session Created: {session['sessionId']}")
|
|
77
|
+
print(f"Share Link: {session['shareLink']}")
|
|
78
|
+
print(f"Live Room URL: {session['liveLink']}")
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
### 3. List Existing Sessions
|
|
82
|
+
|
|
83
|
+
```python
|
|
84
|
+
sessions = client.list_sessions(limit=10)
|
|
85
|
+
for s in sessions.get("sessions", []):
|
|
86
|
+
print(f"- {s['title']} ({s['slug']})")
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
## 🤖 Agentic Integrations (MCP & WebMCP)
|
|
92
|
+
|
|
93
|
+
Seminara supports the **Model Context Protocol (MCP)** and **WebMCP** natively. Connect your Python AI agents (LangChain, LlamaIndex, AutoGen, CrewAI) directly:
|
|
94
|
+
|
|
95
|
+
- **MCP Server URL:** `https://seminara.online/api/v1/mcp`
|
|
96
|
+
- **Docs MCP Server:** `https://seminara.online/api/docs/mcp`
|
|
97
|
+
- **OpenAPI 3.1 Spec:** [`https://seminara.online/openapi.json`](https://seminara.online/openapi.json)
|
|
98
|
+
|
|
99
|
+
---
|
|
100
|
+
|
|
101
|
+
## 📄 License
|
|
102
|
+
MIT License. Created by [Omni AI Club Private Limited](https://omniai.club).
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
seminara
|
seminara-1.0.0/setup.cfg
ADDED