geomind-ai 1.0.8__tar.gz → 1.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.
- {geomind_ai-1.0.8 → geomind_ai-1.1.0}/PKG-INFO +3 -3
- {geomind_ai-1.0.8 → geomind_ai-1.1.0}/geomind/__init__.py +2 -2
- {geomind_ai-1.0.8 → geomind_ai-1.1.0}/geomind/agent.py +1 -1
- {geomind_ai-1.0.8 → geomind_ai-1.1.0}/geomind/cli.py +2 -2
- {geomind_ai-1.0.8 → geomind_ai-1.1.0}/geomind/config.py +1 -1
- {geomind_ai-1.0.8 → geomind_ai-1.1.0}/geomind_ai.egg-info/PKG-INFO +3 -3
- {geomind_ai-1.0.8 → geomind_ai-1.1.0}/pyproject.toml +4 -3
- {geomind_ai-1.0.8 → geomind_ai-1.1.0}/LICENSE +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.1.0}/MANIFEST.in +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.1.0}/README.md +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.1.0}/geomind/tools/__init__.py +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.1.0}/geomind/tools/geocoding.py +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.1.0}/geomind/tools/processing.py +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.1.0}/geomind/tools/stac_search.py +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.1.0}/geomind_ai.egg-info/SOURCES.txt +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.1.0}/geomind_ai.egg-info/dependency_links.txt +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.1.0}/geomind_ai.egg-info/entry_points.txt +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.1.0}/geomind_ai.egg-info/requires.txt +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.1.0}/geomind_ai.egg-info/top_level.txt +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.1.0}/requirements.txt +0 -0
- {geomind_ai-1.0.8 → geomind_ai-1.1.0}/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.1.0
|
|
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
|
|
@@ -245,7 +245,7 @@ class GeoMindAgent:
|
|
|
245
245
|
Initialize the GeoMind agent.
|
|
246
246
|
|
|
247
247
|
Args:
|
|
248
|
-
model: Model name (default:
|
|
248
|
+
model: Model name (default: nvidia/nemotron-3-nano-30b-a3b:free)
|
|
249
249
|
api_key: OpenRouter API key (required).
|
|
250
250
|
"""
|
|
251
251
|
self.provider = "openrouter"
|
|
@@ -60,7 +60,7 @@ Examples:
|
|
|
60
60
|
|
|
61
61
|
Environment Variables:
|
|
62
62
|
OPENROUTER_API_KEY Your OpenRouter API key
|
|
63
|
-
OPENROUTER_MODEL Model to use (default:
|
|
63
|
+
OPENROUTER_MODEL Model to use (default: nvidia/nemotron-3-nano-30b-a3b:free)
|
|
64
64
|
OPENROUTER_API_URL API endpoint (default: https://openrouter.ai/api/v1)
|
|
65
65
|
""",
|
|
66
66
|
)
|
|
@@ -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")
|
|
@@ -52,4 +52,4 @@ GEOCODER_USER_AGENT = "geomind_agent_v0.1"
|
|
|
52
52
|
# Get your free API key at: https://openrouter.ai/settings/keys
|
|
53
53
|
OPENROUTER_API_KEY = os.getenv("OPENROUTER_API_KEY", "")
|
|
54
54
|
OPENROUTER_API_URL = os.getenv("OPENROUTER_API_URL", "https://openrouter.ai/api/v1")
|
|
55
|
-
OPENROUTER_MODEL = os.getenv("OPENROUTER_MODEL", "
|
|
55
|
+
OPENROUTER_MODEL = os.getenv("OPENROUTER_MODEL", "nvidia/nemotron-3-nano-30b-a3b:free")
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: geomind-ai
|
|
3
|
-
Version: 1.0
|
|
3
|
+
Version: 1.1.0
|
|
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.1.0"
|
|
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
|