Oysiyl commited on
Commit
2c007f8
1 Parent(s): 827dffc

Add title and a few links

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py CHANGED
@@ -104,6 +104,19 @@ db = Pinecone.from_existing_index(index_name, embed)
104
  model, tokenizer = initialize_model_and_tokenizer(model_name="mistralai/Mistral-7B-Instruct-v0.2")
105
 
106
  with gr.Blocks() as demo:
 
 
 
 
 
 
 
 
 
 
 
 
 
107
  with gr.Column():
108
  chatbot = gr.Chatbot()
109
  with gr.Row():
 
104
  model, tokenizer = initialize_model_and_tokenizer(model_name="mistralai/Mistral-7B-Instruct-v0.2")
105
 
106
  with gr.Blocks() as demo:
107
+ with gr.Column():
108
+ gr.HTML("""
109
+ <center>
110
+ <h1>Ask about my work experience!<h1>
111
+ </center>
112
+ <center>
113
+ Start typing your question or choose one of the examples below to start from
114
+ </center>
115
+ """)
116
+ with gr.Row():
117
+ gr.Markdown("[Resume]('https://drive.google.com/file/d/1OejkWuQKcjP73_uH6sfnj9u4hfmXQ-Oy/view?usp=sharing')")
118
+ gr.Markdown("[LinkedIn]('https://www.linkedin.com/in/dmytro-kisil/')")
119
+ gr.Markdown("[Another GenAI project]('https://sdloraandroidtoy.streamlit.app/')")
120
  with gr.Column():
121
  chatbot = gr.Chatbot()
122
  with gr.Row():