Skip to content

Commit

Permalink
include version of langchain and openai (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuanbohan authored Jan 4, 2024
1 parent 7e06708 commit fbd12e4
Show file tree
Hide file tree
Showing 10 changed files with 800 additions and 788 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "greptimeai"
version = "0.1.17" # update greptimeai._VERSION at the same time
version = "0.1.18" # update greptimeai.__version__ at the same time
description = "Observability tool for LLM application"
authors = [
{ name = "Greptime", email = "[email protected]" },
Expand Down
5 changes: 2 additions & 3 deletions src/greptimeai/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import logging

_NAME = "greptimeai"
_VERSION = "0.1.17"
__version__ = "0.1.18"

logger = logging.getLogger(f"{_NAME}:{_VERSION}")
logger = logging.getLogger(f"greptimeai:{__version__}")
Loading

0 comments on commit fbd12e4

Please sign in to comment.