Initial commit

This commit is contained in:
Daniel Wiesmann
2025-12-04 09:36:14 +00:00
parent 9e541ac6b7
commit 1a11473421
14 changed files with 2489 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
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"
)