Commit
·
cf11f5e
1
Parent(s):
d0763c6
Add paper recommendation comment feature to format_comment function
Browse files
app.py
CHANGED
|
@@ -91,6 +91,7 @@ def format_comment(result: str):
|
|
| 91 |
)
|
| 92 |
result += "\n\n Please give a thumbs up to this comment if you found it helpful!"
|
| 93 |
result += "\n\n If you want recommendations for any Paper on Hugging Face checkout [this](https://huggingface.co/spaces/librarian-bots/recommend_similar_papers) Space"
|
|
|
|
| 94 |
return result
|
| 95 |
|
| 96 |
|
|
|
|
| 91 |
)
|
| 92 |
result += "\n\n Please give a thumbs up to this comment if you found it helpful!"
|
| 93 |
result += "\n\n If you want recommendations for any Paper on Hugging Face checkout [this](https://huggingface.co/spaces/librarian-bots/recommend_similar_papers) Space"
|
| 94 |
+
result += "\n\n You can directly ask Librarian Bot for paper recommendations by tagging it in a comment: `@librarian-bot recommend`"
|
| 95 |
return result
|
| 96 |
|
| 97 |
|