diff --git a/embedchain/apps/Llama2App.py b/embedchain/apps/Llama2App.py index eaf4abb1..b8c1259c 100644 --- a/embedchain/apps/Llama2App.py +++ b/embedchain/apps/Llama2App.py @@ -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. diff --git a/embedchain/apps/custom_app.py b/embedchain/apps/custom_app.py index a72d8e3e..8c4e4695 100644 --- a/embedchain/apps/custom_app.py +++ b/embedchain/apps/custom_app.py @@ -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. """ @@ -36,7 +36,7 @@ class CustomApp(App): """ 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, diff --git a/embedchain/apps/open_source_app.py b/embedchain/apps/open_source_app.py index 15dbbb06..194b2433 100644 --- a/embedchain/apps/open_source_app.py +++ b/embedchain/apps/open_source_app.py @@ -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. """ @@ -39,7 +39,7 @@ class OpenSourceApp(App): 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, diff --git a/pyproject.toml b/pyproject.toml index a0e1b972..af113c4c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"