fix config cache
This commit is contained in:
parent
34c3b6421a
commit
629c6e9036
1 changed files with 3 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
|||
import streamlit as st
|
||||
|
||||
from open_notebook.config import EMBEDDING_MODEL
|
||||
from open_notebook.config import load_default_models
|
||||
from open_notebook.domain.notebook import text_search, vector_search
|
||||
from stream_app.note import note_list_item
|
||||
from stream_app.source import source_list_item
|
||||
|
|
@ -11,6 +11,8 @@ st.set_page_config(
|
|||
)
|
||||
version_sidebar()
|
||||
|
||||
DEFAULT_MODELS, EMBEDDING_MODEL, SPEECH_TO_TEXT_MODEL = load_default_models()
|
||||
|
||||
# search_tab, ask_tab = st.tabs(["Search", "Ask"])
|
||||
# notebooks = Notebook.get_all()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue