Skip to content

Commit

Permalink
update import paths for e84_geoai_common
Browse files Browse the repository at this point in the history
  • Loading branch information
AdeelH committed Dec 11, 2024
1 parent d0a0273 commit b10ddf0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/natural_language_geocoding/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from e84_geoai_common.llm import LLM, extract_data_from_text
from e84_geoai_common.llm.core import LLM
from e84_geoai_common.llm.extraction import extract_data_from_text
from shapely.geometry.base import BaseGeometry

from natural_language_geocoding.models import SpatialNode
Expand Down
2 changes: 1 addition & 1 deletion src/natural_language_geocoding/prompt.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json
import os
from e84_geoai_common.util import singleline
from e84_geoai_common.llm import ExtractDataExample
from e84_geoai_common.llm.extraction import ExtractDataExample

from natural_language_geocoding.models import SpatialNode

Expand Down
2 changes: 1 addition & 1 deletion src/natural_language_geocoding_demo/app.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from e84_geoai_common.llm import BedrockClaudeLLM
from e84_geoai_common.llm.models import BedrockClaudeLLM
from natural_language_geocoding import extract_geometry_from_text
from e84_geoai_common.geometry import simplify_geometry, geometry_to_geojson
from e84_geoai_common.debugging import display_geometry
Expand Down

0 comments on commit b10ddf0

Please sign in to comment.