-
Notifications
You must be signed in to change notification settings - Fork 39
Demo
Jael Gu edited this page May 29, 2023
·
13 revisions
Before getting started, you need to have database services ready to connect. For example, if you're using default modules, you should prepare:
- vector store: Milvus or Zilliz Cloud
- memory store: Postgresql
Follow steps below to build a Gradio demo:
- Downloads
$ git clone https://github.com/zilliztech/akcio.git
$ cd akcio
- Installation
$ pip install -r requirements.txt
- Configuration (Optional)
Modify store/config.py
to change connection addresses:
# Vector db configs
vectordb_config = {
'host': 'localhost',
'port': 19530,
'top_k': 10,
}
# Memory db configs
memorydb_config = {
'connect_str': 'postgresql://postgres:postgres@localhost/chat_history'
}
- Start Gradio
python gradio_demo.py
- Open in browser
Open local or public url returned by step 4 to access the online demo.
- Load data
- Start conversation
Akcio is a proprietary project owned and developed by Zilliz. It is published under the Server Side Public License (SSPL) v1.
© Copyright 2023, Zilliz Inc.
Towhee
LangChain
Others