From 39640cb6970bbd16a1c426b33e3a388c59bed061 Mon Sep 17 00:00:00 2001 From: Taranjeet Singh Date: Fri, 29 Sep 2023 23:46:22 -0700 Subject: [PATCH] feat: bump version to 0.0.64 (#733) --- embedchain/apps/Llama2App.py | 4 ++-- embedchain/apps/custom_app.py | 4 ++-- embedchain/apps/open_source_app.py | 4 ++-- pyproject.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/embedchain/apps/Llama2App.py b/embedchain/apps/Llama2App.py index eaf4abb165..b8c1259cee 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 a72d8e3e77..8c4e46956d 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 @@ 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, diff --git a/embedchain/apps/open_source_app.py b/embedchain/apps/open_source_app.py index 15dbbb0612..194b24337a 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 @@ 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, diff --git a/pyproject.toml b/pyproject.toml index a0e1b972c5..af113c4c79 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"