Skip to content

Commit

Permalink
feat: bump version to 0.0.64 (#733)
Browse files Browse the repository at this point in the history
  • Loading branch information
taranjeet authored Sep 30, 2023
1 parent 9ecf2e9 commit 39640cb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions embedchain/apps/Llama2App.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ class Llama2App(App):
query(query): finds answer to the given query using vector database and LLM.
chat(query): finds answer to the given query using vector database and LLM, with conversation history.
.. deprecated:: 0.0.59
.. deprecated:: 0.0.64
Use `App` instead.
"""

def __init__(self, config: CustomAppConfig = None, system_prompt: Optional[str] = None):
"""
.. deprecated:: 0.0.59
.. deprecated:: 0.0.64
Use `App` instead.
:param config: CustomAppConfig instance to load as configuration. Optional.
Expand Down
4 changes: 2 additions & 2 deletions embedchain/apps/custom_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class CustomApp(App):
query(query): finds answer to the given query using vector database and LLM.
chat(query): finds answer to the given query using vector database and LLM, with conversation history.
.. deprecated:: 0.0.59
.. deprecated:: 0.0.64
Use `App` instead.
"""

Expand All @@ -36,7 +36,7 @@ def __init__(
"""
Initialize a new `CustomApp` instance. You have to choose a LLM, database and embedder.
.. deprecated:: 0.0.59
.. deprecated:: 0.0.64
Use `App` instead.
:param config: Config for the app instance. This is the most basic configuration,
Expand Down
4 changes: 2 additions & 2 deletions embedchain/apps/open_source_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class OpenSourceApp(App):
query(query): finds answer to the given query using vector database and LLM.
chat(query): finds answer to the given query using vector database and LLM, with conversation history.
.. deprecated:: 0.0.59
.. deprecated:: 0.0.64
Use `App` instead.
"""

Expand All @@ -39,7 +39,7 @@ def __init__(
Since it's opinionated you don't have to choose a LLM, database and embedder.
However, you can configure those.
.. deprecated:: 0.0.59
.. deprecated:: 0.0.64
Use `App` instead.
:param config: Config for the app instance. This is the most basic configuration,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "embedchain"
version = "0.0.63"
version = "0.0.64"
description = "embedchain is a framework to easily create LLM powered bots over any dataset"
authors = ["Taranjeet Singh"]
license = "Apache License"
Expand Down

0 comments on commit 39640cb

Please sign in to comment.