geomind-ai 1.0.8__tar.gz → 1.0.9__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.
- {geomind_ai-1.0.8 → geomind_ai-1.0.9}/PKG-INFO +3 -3
- {geomind_ai-1.0.8 → geomind_ai-1.0.9}/geomind/__init__.py +2 -2
- {geomind_ai-1.0.8 → geomind_ai-1.0.9}/geomind/cli.py +1 -1
- {geomind_ai-1.0.8 → geomind_ai-1.0.9}/geomind_ai.egg-info/PKG-INFO +3 -3
- {geomind_ai-1.0.8 → geomind_ai-1.0.9}/pyproject.toml +4 -3
- {geomind_ai-1.0.8 → geomind_ai-1.0.9}/LICENSE +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.0.9}/MANIFEST.in +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.0.9}/README.md +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.0.9}/geomind/agent.py +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.0.9}/geomind/config.py +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.0.9}/geomind/tools/__init__.py +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.0.9}/geomind/tools/geocoding.py +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.0.9}/geomind/tools/processing.py +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.0.9}/geomind/tools/stac_search.py +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.0.9}/geomind_ai.egg-info/SOURCES.txt +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.0.9}/geomind_ai.egg-info/dependency_links.txt +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.0.9}/geomind_ai.egg-info/entry_points.txt +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.0.9}/geomind_ai.egg-info/requires.txt +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.0.9}/geomind_ai.egg-info/top_level.txt +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.0.9}/requirements.txt +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.0.9}/setup.cfg +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: geomind-ai
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.9
|
|
4
4
|
Summary: AI agent for geospatial analysis with Sentinel-2 satellite imagery
|
|
5
|
-
Author: Harsh Shinde
|
|
5
|
+
Author: Harsh Shinde, Rajat Shinde
|
|
6
6
|
License-Expression: MIT
|
|
7
|
-
Project-URL: Homepage, https://github.
|
|
7
|
+
Project-URL: Homepage, https://harshshinde0.github.io/GeoMind
|
|
8
8
|
Project-URL: Repository, https://github.com/HarshShinde0/GeoMind
|
|
9
9
|
Project-URL: Documentation, https://github.com/HarshShinde0/GeoMind#readme
|
|
10
10
|
Project-URL: Issues, https://github.com/HarshShinde0/GeoMind/issues
|
|
@@ -137,7 +137,7 @@ def run_interactive(model: Optional[str] = None, api_key: Optional[str] = None):
|
|
|
137
137
|
print("=" * 60)
|
|
138
138
|
print("🌍 GeoMind - Geospatial AI Agent")
|
|
139
139
|
print("=" * 60)
|
|
140
|
-
print(f"Version: {__version__} |
|
|
140
|
+
print(f"Version: {__version__} | Authors: Harsh Shinde, Rajat Shinde")
|
|
141
141
|
print("Type 'quit' or 'exit' to end the session")
|
|
142
142
|
print("Type 'reset' to start a new conversation")
|
|
143
143
|
print("Type 'geomind --help' for more options")
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: geomind-ai
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.9
|
|
4
4
|
Summary: AI agent for geospatial analysis with Sentinel-2 satellite imagery
|
|
5
|
-
Author: Harsh Shinde
|
|
5
|
+
Author: Harsh Shinde, Rajat Shinde
|
|
6
6
|
License-Expression: MIT
|
|
7
|
-
Project-URL: Homepage, https://github.
|
|
7
|
+
Project-URL: Homepage, https://harshshinde0.github.io/GeoMind
|
|
8
8
|
Project-URL: Repository, https://github.com/HarshShinde0/GeoMind
|
|
9
9
|
Project-URL: Documentation, https://github.com/HarshShinde0/GeoMind#readme
|
|
10
10
|
Project-URL: Issues, https://github.com/HarshShinde0/GeoMind/issues
|
|
@@ -4,11 +4,12 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "geomind-ai"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.9"
|
|
8
8
|
description = "AI agent for geospatial analysis with Sentinel-2 satellite imagery"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [
|
|
11
|
-
{name = "Harsh Shinde"}
|
|
11
|
+
{name = "Harsh Shinde"},
|
|
12
|
+
{name = "Rajat Shinde"}
|
|
12
13
|
]
|
|
13
14
|
license = "MIT"
|
|
14
15
|
requires-python = ">=3.10"
|
|
@@ -42,7 +43,7 @@ dependencies = [
|
|
|
42
43
|
]
|
|
43
44
|
|
|
44
45
|
[project.urls]
|
|
45
|
-
Homepage = "https://github.
|
|
46
|
+
Homepage = "https://harshshinde0.github.io/GeoMind"
|
|
46
47
|
Repository = "https://github.com/HarshShinde0/GeoMind"
|
|
47
48
|
Documentation = "https://github.com/HarshShinde0/GeoMind#readme"
|
|
48
49
|
Issues = "https://github.com/HarshShinde0/GeoMind/issues"
|
|
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
|