Sarath0x8f commited on
Commit
2817f2a
·
verified ·
1 Parent(s): fe878aa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -70,9 +70,6 @@ website_logo_encoded = encode_image("Images/ai-logo.png")
70
  with gr.Blocks(theme=gr.themes.Ocean(font=[gr.themes.GoogleFont("Roboto Mono")]), css='footer {visibility: hidden}') as main:
71
  gr.Markdown(md.title)
72
  with gr.Tabs():
73
- with gr.TabItem("Resume", visible=True, interactive=True):
74
- gr.Markdown(data)
75
-
76
  with gr.TabItem("My2.0", visible=True, interactive=True):
77
  gr.ChatInterface(respond,
78
  chatbot=gr.Chatbot(height=500),
@@ -83,6 +80,9 @@ with gr.Blocks(theme=gr.themes.Ocean(font=[gr.themes.GoogleFont("Roboto Mono")])
83
  ]
84
  )
85
  gr.Markdown(md.description)
 
 
 
86
 
87
  gr.HTML(md.footer.format(github_logo_encoded, linkedin_logo_encoded, website_logo_encoded))
88
 
 
70
  with gr.Blocks(theme=gr.themes.Ocean(font=[gr.themes.GoogleFont("Roboto Mono")]), css='footer {visibility: hidden}') as main:
71
  gr.Markdown(md.title)
72
  with gr.Tabs():
 
 
 
73
  with gr.TabItem("My2.0", visible=True, interactive=True):
74
  gr.ChatInterface(respond,
75
  chatbot=gr.Chatbot(height=500),
 
80
  ]
81
  )
82
  gr.Markdown(md.description)
83
+
84
+ with gr.TabItem("Resume", visible=True, interactive=True):
85
+ gr.Markdown(data)
86
 
87
  gr.HTML(md.footer.format(github_logo_encoded, linkedin_logo_encoded, website_logo_encoded))
88