zaturn 0.2.2__tar.gz → 0.3.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.
- {zaturn-0.2.2 → zaturn-0.3.0}/CHANGELOG.md +3 -0
- {zaturn-0.2.2/zaturn.egg-info → zaturn-0.3.0}/PKG-INFO +4 -3
- {zaturn-0.2.2 → zaturn-0.3.0}/README.md +1 -1
- {zaturn-0.2.2 → zaturn-0.3.0}/pyproject.toml +3 -2
- {zaturn-0.2.2 → zaturn-0.3.0}/uv.lock +2330 -1283
- zaturn-0.3.0/zaturn/studio/agent_wrapper.py +55 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/studio/app.py +48 -41
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/studio/storage.py +14 -4
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/studio/templates/_shell.html +3 -3
- zaturn-0.3.0/zaturn/studio/templates/ai_message.html +3 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/studio/templates/c_source_card.html +3 -3
- zaturn-0.3.0/zaturn/studio/templates/chat.html +30 -0
- zaturn-0.3.0/zaturn/studio/templates/chat_metadata.html +10 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/studio/templates/css/style.css +146 -21
- zaturn-0.3.0/zaturn/studio/templates/function_call.html +8 -0
- zaturn-0.3.0/zaturn/studio/templates/icons/arrow-left.svg +3 -0
- zaturn-0.3.0/zaturn/studio/templates/icons/arrow-right.svg +3 -0
- zaturn-0.3.0/zaturn/studio/templates/icons/chat-bubble.svg +6 -0
- zaturn-0.3.0/zaturn/studio/templates/icons/check-circle-solid.svg +3 -0
- zaturn-0.3.0/zaturn/studio/templates/icons/database.svg +5 -0
- zaturn-0.3.0/zaturn/studio/templates/icons/fire-flame.svg +4 -0
- zaturn-0.3.0/zaturn/studio/templates/icons/floppy-disk.svg +5 -0
- zaturn-0.3.0/zaturn/studio/templates/icons/link.svg +4 -0
- zaturn-0.3.0/zaturn/studio/templates/icons/play.svg +3 -0
- zaturn-0.3.0/zaturn/studio/templates/icons/settings.svg +4 -0
- zaturn-0.3.0/zaturn/studio/templates/icons/timer.svg +5 -0
- zaturn-0.3.0/zaturn/studio/templates/icons/trash.svg +4 -0
- zaturn-0.3.0/zaturn/studio/templates/icons/upload.svg +4 -0
- zaturn-0.3.0/zaturn/studio/templates/icons/user.svg +4 -0
- zaturn-0.3.0/zaturn/studio/templates/icons/warning-triangle.svg +5 -0
- zaturn-0.3.0/zaturn/studio/templates/icons/wrench.svg +4 -0
- zaturn-0.3.0/zaturn/studio/templates/loader.html +1 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/studio/templates/manage_sources.html +5 -5
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/studio/templates/new_conversation.html +2 -2
- zaturn-0.3.0/zaturn/studio/templates/settings.html +50 -0
- zaturn-0.3.0/zaturn/studio/templates/setup_prompt.html +7 -0
- zaturn-0.3.0/zaturn/studio/templates/user_message.html +4 -0
- {zaturn-0.2.2 → zaturn-0.3.0/zaturn.egg-info}/PKG-INFO +4 -3
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn.egg-info/SOURCES.txt +17 -1
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn.egg-info/requires.txt +2 -1
- zaturn-0.2.2/zaturn/studio/agent_wrapper.py +0 -131
- zaturn-0.2.2/zaturn/studio/static/noto_emoji.ttf +0 -0
- zaturn-0.2.2/zaturn/studio/templates/ai_message.html +0 -4
- zaturn-0.2.2/zaturn/studio/templates/chat.html +0 -22
- zaturn-0.2.2/zaturn/studio/templates/function_call.html +0 -7
- zaturn-0.2.2/zaturn/studio/templates/loader.html +0 -1
- zaturn-0.2.2/zaturn/studio/templates/settings.html +0 -29
- zaturn-0.2.2/zaturn/studio/templates/setup_prompt.html +0 -6
- zaturn-0.2.2/zaturn/studio/templates/user_message.html +0 -4
- {zaturn-0.2.2 → zaturn-0.3.0}/.gitignore +0 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/LICENSE +0 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/setup.cfg +0 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/mcp/__init__.py +0 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/studio/__init__.py +0 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/studio/static/fira_code.ttf +0 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/studio/static/inter_ital_var.ttf +0 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/studio/static/inter_var.ttf +0 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/studio/static/js/htmx-multi-swap.js +0 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/studio/static/js/htmx.min.js +0 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/studio/static/logo.png +0 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/studio/static/logo.svg +0 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/studio/templates/c_settings_updated.html +0 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/studio/templates/nav.html +0 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/tools/__init__.py +0 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/tools/config.py +0 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/tools/core.py +0 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/tools/example_data/all_pokemon_data.csv +0 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/tools/query_utils.py +0 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn/tools/visualizations.py +0 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn.egg-info/dependency_links.txt +0 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn.egg-info/entry_points.txt +0 -0
- {zaturn-0.2.2 → zaturn-0.3.0}/zaturn.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: zaturn
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.3.0
|
4
4
|
Summary: AI Data Analysis MCP & Studio
|
5
5
|
Author-email: Karthik Devan <krtdvn@gmail.com>
|
6
6
|
Maintainer-email: Karthik Devan <krtdvn@gmail.com>
|
@@ -18,13 +18,14 @@ Requires-Dist: function-schema>=0.4.5
|
|
18
18
|
Requires-Dist: kaleido==0.2.1
|
19
19
|
Requires-Dist: mistune>=3.1.3
|
20
20
|
Requires-Dist: openai>=1.82.1
|
21
|
-
Requires-Dist: openai-agents>=0.0.16
|
22
21
|
Requires-Dist: pandas>=2.2.3
|
23
22
|
Requires-Dist: pillow>=11.2.1
|
24
23
|
Requires-Dist: platformdirs>=4.3.7
|
25
24
|
Requires-Dist: plotly[express]>=6.0.1
|
26
25
|
Requires-Dist: psycopg2-binary>=2.9.10
|
27
26
|
Requires-Dist: pyarrow>=19.0.1
|
27
|
+
Requires-Dist: pydantic-ai>=0.8.0
|
28
|
+
Requires-Dist: pydantic-core>=2.33.2
|
28
29
|
Requires-Dist: pymssql>=2.3.7
|
29
30
|
Requires-Dist: pymysql>=1.1.1
|
30
31
|
Requires-Dist: python-lsp-server>=1.12.2
|
@@ -43,7 +44,7 @@ Dynamic: license-file
|
|
43
44
|
</h1>
|
44
45
|
|
45
46
|
<a href="https://discord.gg/K8mECeVzpQ">
|
46
|
-
|
47
|
+
Join the Discord
|
47
48
|
</a>
|
48
49
|
|
49
50
|
## Just Chat With Your Data! No SQL, No Python.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "zaturn"
|
3
|
-
version = "0.
|
3
|
+
version = "0.3.0"
|
4
4
|
description = "AI Data Analysis MCP & Studio"
|
5
5
|
authors = [
|
6
6
|
{name = "Karthik Devan", email = "krtdvn@gmail.com"},
|
@@ -20,13 +20,14 @@ dependencies = [
|
|
20
20
|
"kaleido==0.2.1",
|
21
21
|
"mistune>=3.1.3",
|
22
22
|
"openai>=1.82.1",
|
23
|
-
"openai-agents>=0.0.16",
|
24
23
|
"pandas>=2.2.3",
|
25
24
|
"pillow>=11.2.1",
|
26
25
|
"platformdirs>=4.3.7",
|
27
26
|
"plotly[express]>=6.0.1",
|
28
27
|
"psycopg2-binary>=2.9.10",
|
29
28
|
"pyarrow>=19.0.1",
|
29
|
+
"pydantic-ai>=0.8.0",
|
30
|
+
"pydantic-core>=2.33.2",
|
30
31
|
"pymssql>=2.3.7",
|
31
32
|
"pymysql>=1.1.1",
|
32
33
|
"python-lsp-server>=1.12.2",
|