Spaces:
Runtime error
Runtime error
File size: 407 Bytes
01b8e8e 843bc9e 6a6afbf 843bc9e 01b8e8e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
from interface.pages import page_landing_page, page_search, page_index
# Define default Session Variables over the whole session.
session_state_variables = {
"pipeline": None,
"pipeline_func_parameters": [],
"doc_id": 0,
}
# Define Pages for the demo
pages = {
"Introduction": (page_landing_page, "house-fill"),
"Search": (page_search, "search"),
"Index": (page_index, "files"),
}
|