feat: bump version to 0.0.64 (#733)
This commit is contained in:
@@ -17,13 +17,13 @@ class Llama2App(App):
|
|||||||
query(query): finds answer to the given query using vector database and LLM.
|
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.
|
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.
|
Use `App` instead.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, config: CustomAppConfig = None, system_prompt: Optional[str] = None):
|
def __init__(self, config: CustomAppConfig = None, system_prompt: Optional[str] = None):
|
||||||
"""
|
"""
|
||||||
.. deprecated:: 0.0.59
|
.. deprecated:: 0.0.64
|
||||||
Use `App` instead.
|
Use `App` instead.
|
||||||
|
|
||||||
:param config: CustomAppConfig instance to load as configuration. Optional.
|
:param config: CustomAppConfig instance to load as configuration. Optional.
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ class CustomApp(App):
|
|||||||
query(query): finds answer to the given query using vector database and LLM.
|
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.
|
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.
|
Use `App` instead.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
@@ -36,7 +36,7 @@ class CustomApp(App):
|
|||||||
"""
|
"""
|
||||||
Initialize a new `CustomApp` instance. You have to choose a LLM, database and embedder.
|
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.
|
Use `App` instead.
|
||||||
|
|
||||||
:param config: Config for the app instance. This is the most basic configuration,
|
:param config: Config for the app instance. This is the most basic configuration,
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ class OpenSourceApp(App):
|
|||||||
query(query): finds answer to the given query using vector database and LLM.
|
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.
|
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.
|
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.
|
Since it's opinionated you don't have to choose a LLM, database and embedder.
|
||||||
However, you can configure those.
|
However, you can configure those.
|
||||||
|
|
||||||
.. deprecated:: 0.0.59
|
.. deprecated:: 0.0.64
|
||||||
Use `App` instead.
|
Use `App` instead.
|
||||||
|
|
||||||
:param config: Config for the app instance. This is the most basic configuration,
|
:param config: Config for the app instance. This is the most basic configuration,
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "embedchain"
|
name = "embedchain"
|
||||||
version = "0.0.63"
|
version = "0.0.64"
|
||||||
description = "embedchain is a framework to easily create LLM powered bots over any dataset"
|
description = "embedchain is a framework to easily create LLM powered bots over any dataset"
|
||||||
authors = ["Taranjeet Singh"]
|
authors = ["Taranjeet Singh"]
|
||||||
license = "Apache License"
|
license = "Apache License"
|
||||||
|
|||||||
Reference in New Issue
Block a user