geomind-ai 1.0.7__tar.gz → 1.0.8__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: geomind-ai
3
- Version: 1.0.7
3
+ Version: 1.0.8
4
4
  Summary: AI agent for geospatial analysis with Sentinel-2 satellite imagery
5
5
  Author: Harsh Shinde
6
6
  License-Expression: MIT
@@ -50,12 +50,15 @@ geomind
50
50
 
51
51
  # Single query
52
52
  geomind --query "Find recent imagery of Paris"
53
+
54
+ geomind --query "Create an RGB true-color composite visualization from the December 25th image"
55
+
56
+ geomind --query "Create an NDVI from the December 25th image"
53
57
  ```
54
58
 
55
59
  ## Example Queries
56
60
 
57
61
  ```
58
-
59
62
  💬 "Create an RGB composite for the most recent image of London"
60
63
 
61
64
  💬 "Calculate NDVI for Central Park, New York"
@@ -12,12 +12,15 @@ geomind
12
12
 
13
13
  # Single query
14
14
  geomind --query "Find recent imagery of Paris"
15
+
16
+ geomind --query "Create an RGB true-color composite visualization from the December 25th image"
17
+
18
+ geomind --query "Create an NDVI from the December 25th image"
15
19
  ```
16
20
 
17
21
  ## Example Queries
18
22
 
19
23
  ```
20
-
21
24
  💬 "Create an RGB composite for the most recent image of London"
22
25
 
23
26
  💬 "Calculate NDVI for Central Park, New York"
@@ -37,4 +40,4 @@ Full Scene Download → Local Storage → Process → Result
37
40
  ```
38
41
  HTTP Range Request → Stream Chunks → Process in Memory → Result
39
42
  ~1-5 MB No disk Fast
40
- ```
43
+ ```
@@ -3,7 +3,7 @@ GeoMind - Geospatial AI Agent
3
3
 
4
4
  """
5
5
 
6
- __version__ = "1.0.7"
6
+ __version__ = "1.0.8"
7
7
  __author__ = "Harsh Shinde"
8
8
 
9
9
  from .agent import GeoMindAgent
@@ -107,8 +107,10 @@ Environment Variables:
107
107
  # Start interactive or single-query mode
108
108
  try:
109
109
  if args.query:
110
- # Single query mode - also use saved key
111
- api_key = args.api_key or get_saved_api_key()
110
+ # Single query mode - check API key in order: argument > env > saved file
111
+ from .config import OPENROUTER_API_KEY
112
+
113
+ api_key = args.api_key or OPENROUTER_API_KEY or get_saved_api_key()
112
114
  if not api_key:
113
115
  print("❌ No API key found. Run 'geomind' first to set up.")
114
116
  sys.exit(1)
@@ -138,15 +140,18 @@ def run_interactive(model: Optional[str] = None, api_key: Optional[str] = None):
138
140
  print(f"Version: {__version__} | Author: Harsh Shinde")
139
141
  print("Type 'quit' or 'exit' to end the session")
140
142
  print("Type 'reset' to start a new conversation")
141
- print("=" * 60)
143
+ print("Type 'geomind --help' for more options")
142
144
 
143
145
  # Check for API key in order: argument > env > saved file
144
146
  from .config import OPENROUTER_API_KEY
145
147
 
146
- if not api_key:
148
+ # Priority: command line arg > env variable > saved file
149
+ if api_key:
150
+ # Use provided argument
151
+ pass
152
+ elif OPENROUTER_API_KEY:
147
153
  api_key = OPENROUTER_API_KEY
148
-
149
- if not api_key:
154
+ else:
150
155
  api_key = get_saved_api_key()
151
156
 
152
157
  if not api_key:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: geomind-ai
3
- Version: 1.0.7
3
+ Version: 1.0.8
4
4
  Summary: AI agent for geospatial analysis with Sentinel-2 satellite imagery
5
5
  Author: Harsh Shinde
6
6
  License-Expression: MIT
@@ -50,12 +50,15 @@ geomind
50
50
 
51
51
  # Single query
52
52
  geomind --query "Find recent imagery of Paris"
53
+
54
+ geomind --query "Create an RGB true-color composite visualization from the December 25th image"
55
+
56
+ geomind --query "Create an NDVI from the December 25th image"
53
57
  ```
54
58
 
55
59
  ## Example Queries
56
60
 
57
61
  ```
58
-
59
62
  💬 "Create an RGB composite for the most recent image of London"
60
63
 
61
64
  💬 "Calculate NDVI for Central Park, New York"
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "geomind-ai"
7
- version = "1.0.7"
7
+ version = "1.0.8"
8
8
  description = "AI agent for geospatial analysis with Sentinel-2 satellite imagery"
9
9
  readme = "README.md"
10
10
  authors = [
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes