alfraser commited on
Commit
d327bd9
·
1 Parent(s): d934e05

Tweaked the app main page name and added in the descriptive content.

Browse files
Files changed (3) hide show
  1. Home.py +16 -0
  2. LLM_Architectures.py +0 -5
  3. README.md +1 -1
Home.py ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from src.st_helpers import st_setup
3
+
4
+ if st_setup("LLM Architectures"):
5
+ st.write("""
6
+ # LLM Architecture Assessment
7
+ This [streamlit](https://streamlit.io) app is the entry point for interacting with the components of the architecture assessment project prepared by Al Fraser (alisdairfraser (at) gmail (dot) com), in submission for the final research project for the [Online MSc in Artificial Intelligence](https://info.online.bath.ac.uk/msai/) with the University of Bath.
8
+
9
+ ## Tools
10
+ This app serves as the management console to run different elements required to test the architectures. Specifically:
11
+
12
+ - **LLM servers**: The structure of the project calls for each LLM being used to be run as a separate local service and accessed through http requests. This area allows users to see the models which are currently set up, start and stop the associated servers, and manually chat directly with the underlying models.
13
+ - **LLM architectures**: Around the LLM models are wrapped "architectures" which are the systems under test and being assessed. This area allows users to see those configurations and manually chat with the architecture, as opposed to directly with the model.
14
+ - **Data browser**: Underlying this architectural assessment is a synthetic "closed" data set, which has been generated offline to simulate a closed enterprise style dataset for testing purposes. This data browser element allows users to view that data directly.
15
+ - **Transaction logging**: As interactions are taking place with the architectures under test, the results are being logged for analysis. This area allows users to view those log records and see some simple results.
16
+ """)
LLM_Architectures.py DELETED
@@ -1,5 +0,0 @@
1
- import streamlit as st
2
- from src.st_helpers import st_setup
3
-
4
- if st_setup("LLM Architectures"):
5
- st.write("# Testing testing 123")
 
 
 
 
 
 
README.md CHANGED
@@ -5,7 +5,7 @@ colorFrom: green
5
  colorTo: indigo
6
  sdk: streamlit
7
  sdk_version: 1.28.2
8
- app_file: LLM_Architectures.py
9
  pinned: false
10
  license: cc-by-sa-4.0
11
  ---
 
5
  colorTo: indigo
6
  sdk: streamlit
7
  sdk_version: 1.28.2
8
+ app_file: Home.py
9
  pinned: false
10
  license: cc-by-sa-4.0
11
  ---