Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion apps/dataset-viewer/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
from cot import Collection
import yaml

st.set_page_config(page_title="ThoughtSource⚡", layout="wide")

with open(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'config.yml'), 'r') as file:
config = yaml.safe_load(file)

Expand Down Expand Up @@ -156,7 +158,7 @@ def display_dataset(dataset):

def run_app():

st.set_page_config(page_title="ThoughtSource⚡", layout="wide")


# st.title('ThoughtSource⚡ Viewer')

Expand Down