Spaces:
Sleeping
Sleeping
Added authentication and extra messages
Browse files
app.py
CHANGED
|
@@ -57,10 +57,9 @@ demo = gr.ChatInterface(
|
|
| 57 |
),
|
| 58 |
],
|
| 59 |
title="Job Description Generator expert",
|
| 60 |
-
description="This agent generates job description based upon input text below.",
|
| 61 |
analytics_enabled=True
|
| 62 |
)
|
| 63 |
|
| 64 |
-
|
| 65 |
if __name__ == "__main__":
|
| 66 |
-
demo.launch()
|
|
|
|
| 57 |
),
|
| 58 |
],
|
| 59 |
title="Job Description Generator expert",
|
| 60 |
+
description="This agent generates job description based upon input text below. Be clear and concise on the role, level, expectations, starting salary, etc. for the position. Happy finding the right talent. ",
|
| 61 |
analytics_enabled=True
|
| 62 |
)
|
| 63 |
|
|
|
|
| 64 |
if __name__ == "__main__":
|
| 65 |
+
demo.launch(auth=("administrator", "pass1234"))
|