Spaces:
Sleeping
Sleeping
File size: 2,479 Bytes
cc4bc20 f5ab02a 7274712 f5ab02a eaf1f49 7274712 eaf1f49 7274712 eaf1f49 7274712 f5ab02a 7274712 f5ab02a eaf1f49 f5ab02a 362f305 f5ab02a 362f305 eaf1f49 f5ab02a eaf1f49 f5ab02a eaf1f49 f5ab02a eaf1f49 f5ab02a eaf1f49 f5ab02a eaf1f49 f5ab02a eaf1f49 f5ab02a eaf1f49 f5ab02a eaf1f49 f5ab02a eaf1f49 cc4bc20 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
import asyncio
import streamlit as st
servers = {}
inputs = []
outputs = []
used_ports = []
server_ports = []
client_ports = []
st.set_page_config(layout="wide")
st.session_state.update(st.session_state)
if 'active_page' not in st.session_state:
st.session_state.active_page = 'NeuralGPT'
if "sidebar" not in st.session_state:
st.session_state.sidebar = True
if "server_Ports" not in st.session_state:
st.session_state['server_ports'] = False
if "client_Ports" not in st.session_state:
st.session_state['client_ports'] = False
if "userID" not in st.session_state:
st.session_state.userID = False
st.sidebar.title("NeuralGPT")
st.sidebar.info(
"""
[GitHub](https://github.com/giswqs)
"""
)
async def main():
st.text("Server ports:")
serverPorts = st.sidebar.container(border=True)
serverPorts.markdown(st.session_state['server_prts'])
st.sidebar.text("Client ports")
clientPorts = st.sidebar.container(border=True)
clientPorts.markdown(st.session_state['client_ports'])
st.sidebar.text("Charavter.ai ID")
user_id = st.sidebar.container(border=True)
user_id.markdown(st.session_state.userID)
st.title("NeuralGPT")
st.markdown(
"""
This page is supposed to work as interface of a hierarchical cooperative multi-agent framework/platform called NeuralGPT
"""
)
st.info("Click on the left sidebar menu to navigate to the different apps.")
st.subheader("shit goes in here")
st.markdown(
"""
The following stuff is totally random no need to think about it too much.
"""
)
row1_col1, row1_col2 = st.columns(2)
with row1_col1:
st.image("https://i.postimg.cc/gk0LXT5p/earth6.gif")
st.image("https://i.postimg.cc/kM2d2NcZ/movie-18.gif")
st.image("https://i.postimg.cc/8z5ccf7z/Screenshot-2022-03-02-21-27-22-566-com-google-android-youtube.jpg")
st.image("https://i.postimg.cc/YqvTSppw/dh.gif")
st.image("https://i.postimg.cc/7PdxPGhr/bandicam-2018-11-13-04-33-29-245.jpg")
with row1_col2:
st.image("https://i.postimg.cc/X7nw1tFT/Neural-GPT.gif")
st.image("https://i.postimg.cc/qBwpKMVh/brain-cell-galaxy.jpg")
st.image("https://i.postimg.cc/T1sdWCL2/pyth.png")
st.image("https://i.postimg.cc/L8T5s9Gk/bandicam2023-02-0323-10-40-545-ezgif-com-speed.gif")
st.image("https://i.postimg.cc/rF5zvCJP/clocks5.gif")
asyncio.run(main()) |