geomind-ai 1.0.9__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.9 → geomind_ai-1.1.0}/PKG-INFO +1 -1
- {geomind_ai-1.0.9 → geomind_ai-1.1.0}/geomind/__init__.py +1 -1
- {geomind_ai-1.0.9 → geomind_ai-1.1.0}/geomind/agent.py +1 -1
- {geomind_ai-1.0.9 → geomind_ai-1.1.0}/geomind/cli.py +1 -1
- {geomind_ai-1.0.9 → geomind_ai-1.1.0}/geomind/config.py +1 -1
- {geomind_ai-1.0.9 → geomind_ai-1.1.0}/geomind_ai.egg-info/PKG-INFO +1 -1
- {geomind_ai-1.0.9 → geomind_ai-1.1.0}/pyproject.toml +1 -1
- {geomind_ai-1.0.9 → geomind_ai-1.1.0}/LICENSE +0 -0
- {geomind_ai-1.0.9 → geomind_ai-1.1.0}/MANIFEST.in +0 -0
- {geomind_ai-1.0.9 → geomind_ai-1.1.0}/README.md +0 -0
- {geomind_ai-1.0.9 → geomind_ai-1.1.0}/geomind/tools/__init__.py +0 -0
- {geomind_ai-1.0.9 → geomind_ai-1.1.0}/geomind/tools/geocoding.py +0 -0
- {geomind_ai-1.0.9 → geomind_ai-1.1.0}/geomind/tools/processing.py +0 -0
- {geomind_ai-1.0.9 → geomind_ai-1.1.0}/geomind/tools/stac_search.py +0 -0
- {geomind_ai-1.0.9 → geomind_ai-1.1.0}/geomind_ai.egg-info/SOURCES.txt +0 -0
- {geomind_ai-1.0.9 → geomind_ai-1.1.0}/geomind_ai.egg-info/dependency_links.txt +0 -0
- {geomind_ai-1.0.9 → geomind_ai-1.1.0}/geomind_ai.egg-info/entry_points.txt +0 -0
- {geomind_ai-1.0.9 → geomind_ai-1.1.0}/geomind_ai.egg-info/requires.txt +0 -0
- {geomind_ai-1.0.9 → geomind_ai-1.1.0}/geomind_ai.egg-info/top_level.txt +0 -0
- {geomind_ai-1.0.9 → geomind_ai-1.1.0}/requirements.txt +0 -0
- {geomind_ai-1.0.9 → geomind_ai-1.1.0}/setup.cfg +0 -0
|
@@ -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
|
)
|
|
@@ -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")
|
|
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
|