Skip to content

Commit

Permalink
update examples/semiconductor-etching-yieldguard Streamlit app
Browse files Browse the repository at this point in the history
  • Loading branch information
TheVinhLuong102 committed Oct 7, 2024
1 parent cbe93d1 commit 43886ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/semiconductor-etching-yieldguard/dana.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def get_or_create_dana(use_semikong_lm: bool = True, max_depth=2, max_subtasks_p
return DANA(knowledge={EXPERT_KNOWLEDGE},
program_store=program_store,
programmer=HTPlanner(lm=lm, max_depth=max_depth, max_subtasks_per_decomp=max_subtasks_per_decomp),
resources={FileResource(path=DATA_DIR_PATH, re_index=True, lm=lm)})
resources={FileResource(path=DATA_DIR_PATH, re_index=True)})


if __name__ == '__main__':
Expand Down
6 changes: 2 additions & 4 deletions examples/semiconductor-etching-yieldguard/streamlit-main.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,19 @@
from dana import get_or_create_dana


TITLE: str = 'Semiconductor Etching YieldGuard with DANA'
TITLE: str = 'Proactive _YieldGuard_ for Plasma Etchers'

st.set_page_config(page_title=TITLE,
page_icon=None,
layout='wide',
initial_sidebar_state='auto',
menu_items=None)

st.title(body=TITLE, anchor=None, help=None)

st.image('YieldGuard.png')


st.title(body=TITLE, anchor=None, help=None)


st.write('__PROBLEM__:')

if 'typed_problem' not in st.session_state:
Expand Down

0 comments on commit 43886ea

Please sign in to comment.