Spaces:
Running
Running
Médéric Hurier (Fmind)
commited on
Commit
·
e37fc3c
1
Parent(s):
2155d84
Added description
Browse files
app.py
CHANGED
@@ -29,6 +29,13 @@ EXAMPLES = [
|
|
29 |
"Describe his proficiency with Python programming",
|
30 |
"What is the answer to life, the universe, and everything?",
|
31 |
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
|
33 |
# %% - Backend
|
34 |
|
@@ -110,6 +117,7 @@ interface = gr.ChatInterface(
|
|
110 |
theme=THEME,
|
111 |
title=TITLE,
|
112 |
examples=EXAMPLES,
|
|
|
113 |
clear_btn=None,
|
114 |
retry_btn=None,
|
115 |
undo_btn=None,
|
|
|
29 |
"Describe his proficiency with Python programming",
|
30 |
"What is the answer to life, the universe, and everything?",
|
31 |
]
|
32 |
+
DESCRIPTION = (
|
33 |
+
"<center>"
|
34 |
+
"Visit my website: https://fmind.dev - Médéric HURIER (Fmind)"
|
35 |
+
" - Freelancer: AI/ML/MLOps/LLMOps Engineer | Data Scientist |"
|
36 |
+
" MLOps Community Organizer | OpenClassrooms Mentor | Hacker | PhD"
|
37 |
+
"</center>"
|
38 |
+
)
|
39 |
|
40 |
# %% - Backend
|
41 |
|
|
|
117 |
theme=THEME,
|
118 |
title=TITLE,
|
119 |
examples=EXAMPLES,
|
120 |
+
description=DESCRIPTION,
|
121 |
clear_btn=None,
|
122 |
retry_btn=None,
|
123 |
undo_btn=None,
|