Skip to content

Commit

Permalink
Update packages and bump version (#20)
Browse files Browse the repository at this point in the history
Signed-off-by: Aivin V. Solatorio <avsolatorio@gmail.com>
  • Loading branch information
avsolatorio authored Dec 12, 2023
1 parent 21f25eb commit f1aba7e
Show file tree
Hide file tree
Showing 5 changed files with 85 additions and 68 deletions.
2 changes: 1 addition & 1 deletion llm4data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Do this before importing any other modules.
dotenv.load_dotenv()

__version__ = "0.0.4"
__version__ = "0.0.5"

indicator2name = dict(
wdi=json.load((Path(__file__).parent / "wdi2name.json").open("r"))
Expand Down
2 changes: 1 addition & 1 deletion llm4data/prompts/indicators/wdi.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pandas as pd
from typing import Any
from urllib.parse import urlparse
from openai_tools.parser import parse_misparsed
from llm_space.parser import parse_misparsed
from llm4data.prompts.base import DatedPrompt, APIPrompt
from llm4data import configs

Expand Down
2 changes: 1 addition & 1 deletion llm4data/prompts/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from openai_tools.prompt import PromptZeros
from llm_space.prompt import PromptZeros
from llm4data import configs


Expand Down
142 changes: 80 additions & 62 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "llm4data"
version = "0.0.4"
version = "0.0.5"
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 <avsolatorio@gmail.com>"]
readme = "README.md"
Expand All @@ -10,19 +10,18 @@ python = "^3.10"
pandas = "^2.0.1"
numpy = "^1.24.3"
sqlalchemy = "^2.0.15"
openai-tools = "0.0.0.1.dev3"
tomli = "^2.0.1"
langchain = "^0.0.178"
psycopg2-binary = "^2.9.6"
python-dotenv = "^1.0.0"
tiktoken = "^0.4.0"
fire = "^0.5.0"
qdrant-client = {version = "^1.2.0", python = ">=3.10,<3.12"}
sentence-transformers = "^2.2.2"
instructorembedding = "^1.0.1"
pymupdf = "^1.22.3"
metaschema = "0.0.3"
pycountry = "^22.3.5"
llm-space = "^0.0.1"

[tool.poetry.group.test.dependencies]
pytest = "^7.3.1"
Expand Down

0 comments on commit f1aba7e

Please sign in to comment.