diff --git a/llm4data/__init__.py b/llm4data/__init__.py index 6dc0c00..6e8f75e 100644 --- a/llm4data/__init__.py +++ b/llm4data/__init__.py @@ -7,7 +7,7 @@ # Do this before importing any other modules. dotenv.load_dotenv() -__version__ = "0.0.6" +__version__ = "0.0.7" indicator2name = dict( wdi=json.load((Path(__file__).parent / "wdi2name.json").open("r")) diff --git a/llm4data/prompts/utils.py b/llm4data/prompts/utils.py index bf02388..d82c103 100644 --- a/llm4data/prompts/utils.py +++ b/llm4data/prompts/utils.py @@ -1,4 +1,4 @@ -from llm_space.prompt import PromptZeros +from llm_space.openai.prompt import PromptZeros from llm4data import configs diff --git a/pyproject.toml b/pyproject.toml index 6457684..a8a8dc6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "llm4data" -version = "0.0.6" +version = "0.0.7" description = "LLM4Data is a Python library designed to facilitate the application of large language models (LLMs) and artificial intelligence for development data and knowledge discovery." authors = ["Aivin V. Solatorio "] readme = "README.md"