mirror of
https://github.com/sean1832/GPT-Brain
synced 2024-11-18 21:25:53 +00:00
commit
646641c355
12
.core/manifest.json
Normal file
12
.core/manifest.json
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"name": "GPT-Brain",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"license": "MIT",
|
||||||
|
"author": "Zeke Zhang",
|
||||||
|
"homepage": "https://github.com/sean1832/GPT-Brain",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/sean1832/GPT-Brain"
|
||||||
|
},
|
||||||
|
"bugs": "https://github.com/sean1832/GPT-Brain/issues"
|
||||||
|
}
|
@ -25,7 +25,7 @@ PROMPT_PATH = '.user/prompt'
|
|||||||
SESSION_TIME = st.session_state['SESSION_TIME']
|
SESSION_TIME = st.session_state['SESSION_TIME']
|
||||||
CURRENT_LOG_FILE = f'{LOG_PATH}/log_{SESSION_TIME}.log'
|
CURRENT_LOG_FILE = f'{LOG_PATH}/log_{SESSION_TIME}.log'
|
||||||
BRAIN_MEMO = '.user/brain-memo.json'
|
BRAIN_MEMO = '.user/brain-memo.json'
|
||||||
|
MANIFEST = '.core/manifest.json'
|
||||||
|
|
||||||
def create_log():
|
def create_log():
|
||||||
if not os.path.exists(CURRENT_LOG_FILE):
|
if not os.path.exists(CURRENT_LOG_FILE):
|
||||||
@ -132,6 +132,15 @@ with st.sidebar:
|
|||||||
|
|
||||||
if st.button('Clear Log', on_click=clear_log):
|
if st.button('Clear Log', on_click=clear_log):
|
||||||
st.success('Log Cleared')
|
st.success('Log Cleared')
|
||||||
|
|
||||||
|
# info
|
||||||
|
st.markdown('---')
|
||||||
|
st.markdown(f"# {util.read_json_at(MANIFEST, 'name')}")
|
||||||
|
st.markdown(f"version: {util.read_json_at(MANIFEST, 'version')}")
|
||||||
|
st.markdown(f"author: {util.read_json_at(MANIFEST, 'author')}")
|
||||||
|
st.markdown(f"[Report bugs]({util.read_json_at(MANIFEST, 'bugs')})")
|
||||||
|
st.markdown(f"[Github Repo]({util.read_json_at(MANIFEST, 'homepage')})")
|
||||||
|
|
||||||
with header:
|
with header:
|
||||||
st.title('🧠Seanium Brain')
|
st.title('🧠Seanium Brain')
|
||||||
st.text('This is my personal AI powered brain feeding my own Obsidian notes. Ask anything.')
|
st.text('This is my personal AI powered brain feeding my own Obsidian notes. Ask anything.')
|
||||||
|
Loading…
Reference in New Issue
Block a user