Arcypojeb commited on
Commit
f5ab02a
1 Parent(s): 5330ae3

Upload 2 files

Browse files
Files changed (2) hide show
  1. home.py +55 -0
  2. requirements.txt +10 -0
home.py ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ st.set_page_config(layout="wide")
4
+
5
+ st.sidebar.title("NeuralGPT")
6
+ st.sidebar.info(
7
+ """
8
+ - GitHub repository: <https://github.com/CognitiveCodes/NeuralGPT>
9
+ """
10
+ )
11
+ async def main():
12
+ st.sidebar.text("Server ports:")
13
+ serverPorts = st.sidebar.container(border=True)
14
+ serverPorts.text("Local ports")
15
+ st.sidebar.text("Client ports")
16
+ clientPorts = st.sidebar.container(border=True)
17
+ clientPorts.text("Connected ports")
18
+
19
+ st.sidebar.title("Contact")
20
+ st.sidebar.info(
21
+ """
22
+ Qiusheng Wu at [wetlands.io](https://wetlands.io) | [GitHub](https://github.com/giswqs) | [Twitter](https://twitter.com/giswqs) | [YouTube](https://www.youtube.com/c/QiushengWu) | [LinkedIn](https://www.linkedin.com/in/qiushengwu)
23
+ """
24
+ )
25
+
26
+ st.title("NeuralGPT")
27
+
28
+ st.markdown(
29
+ """
30
+ This page is supposed to work as interface of a hierarchical cooperative multi-agent frameork/platform called NeuralGPT
31
+
32
+ """
33
+ )
34
+
35
+ st.info("Click on the left sidebar menu to navigate to the different apps.")
36
+
37
+ st.subheader("shit goes in here")
38
+ st.markdown(
39
+ """
40
+ The following stuff is totally random no need to think about it too much.
41
+ """
42
+ )
43
+
44
+ row1_col1, row1_col2 = st.columns(2)
45
+ with row1_col1:
46
+
47
+ st.image("https://i.postimg.cc/gk0LXT5p/earth6.gif")
48
+ st.image("https://i.postimg.cc/kM2d2NcZ/movie-18.gif")
49
+ st.image("https://i.postimg.cc/8z5ccf7z/Screenshot-2022-03-02-21-27-22-566-com-google-android-youtube.jpg")
50
+
51
+ with row1_col2:
52
+ st.image("https://i.postimg.cc/X7nw1tFT/Neural-GPT.gif")
53
+ st.image("https://i.postimg.cc/qBwpKMVh/brain-cell-galaxy.jpg")
54
+ st.image("https://i.postimg.cc/YqvTSppw/dh.gif")
55
+ st.image("https://i.postimg.cc/T1sdWCL2/pyth.png")
requirements.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ gradio
2
+ requests
3
+ datetime
4
+ websockets
5
+ websocket
6
+ asyncio
7
+ bs4
8
+ pysimplegui
9
+ g4f
10
+ gpt4free