basic place geometry creation from initial query

This commit is contained in:
Martha
2025-12-04 11:55:40 +00:00
parent 1a11473421
commit 61cce53e4c
2 changed files with 286 additions and 210 deletions
+1 -4
View File
@@ -1,10 +1,7 @@
from langchain.agents import AgentState as BaseAgentState
from geojson_pydantic import FeatureCollection
from typing import Optional
from pydantic import Field
class AgentState(BaseAgentState):
feature_collection: Optional[FeatureCollection] = Field(
default=None, description="FeatureCollection to be used for the analysis"
)
place: Optional[FeatureCollection]