Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update import paths for e84_geoai_common imports #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading