alfraser commited on
Commit
8f9200f
1 Parent(s): 829afa7

Moved the presentation to the home page

Browse files
Files changed (2) hide show
  1. Home.py +10 -1
  2. pages/003_Dissertation.py +0 -4
Home.py CHANGED
@@ -15,7 +15,16 @@ if st_setup("LLM Architecture Assessment", skip_login=True):
15
  The goal of the project is to make an assessment of the architectural patterns for deploying LLMs in conjunction with private data stores. The target audience is IT management, with a goal of providing key considerations for why one might choose a particular architecture or another.
16
 
17
  All the source code for this application and the associated tooling and data can be found the [project GitHub repo on Hugging Face](https://huggingface.co/spaces/alfraser/llm-arch/tree/main).
18
-
 
 
 
 
 
 
 
 
 
19
  ## Tools
20
  This web application serves as the management console to run different elements required to test the architectures. Specifically:
21
 
 
15
  The goal of the project is to make an assessment of the architectural patterns for deploying LLMs in conjunction with private data stores. The target audience is IT management, with a goal of providing key considerations for why one might choose a particular architecture or another.
16
 
17
  All the source code for this application and the associated tooling and data can be found the [project GitHub repo on Hugging Face](https://huggingface.co/spaces/alfraser/llm-arch/tree/main).
18
+ """)
19
+
20
+ # Place the video centred, but surrounded as a workaround to being able to specify the size
21
+ left, center, right = st.columns([2, 3, 2])
22
+ with center:
23
+ with open('img/overview_presentation.m4v', 'rb') as f:
24
+ video_bytes = f.read()
25
+ st.video(video_bytes)
26
+
27
+ st.write("""
28
  ## Tools
29
  This web application serves as the management console to run different elements required to test the architectures. Specifically:
30
 
pages/003_Dissertation.py CHANGED
@@ -14,7 +14,3 @@ if st_setup('Dissertation'):
14
  data=pdf_bytes,
15
  file_name="dissertation.pdf",
16
  mime='application/octet-stream')
17
-
18
- with open('img/overview_presentation.m4v', 'rb') as f:
19
- video_bytes = f.read()
20
- st.video(video_bytes)
 
14
  data=pdf_bytes,
15
  file_name="dissertation.pdf",
16
  mime='application/octet-stream')