Spaces:
Running
Running
install transformers
Browse files- requirements.txt +2 -1
- utils/ui.py +1 -1
requirements.txt
CHANGED
@@ -3,4 +3,5 @@ streamlit==1.25.0
|
|
3 |
markdown
|
4 |
python-dotenv
|
5 |
newspaper3k
|
6 |
-
st-annotated-text
|
|
|
|
3 |
markdown
|
4 |
python-dotenv
|
5 |
newspaper3k
|
6 |
+
st-annotated-text
|
7 |
+
transformers
|
utils/ui.py
CHANGED
@@ -48,7 +48,7 @@ def sidebar():
|
|
48 |
st.markdown(
|
49 |
"## How this works\n"
|
50 |
"This app was built with [Haystack 2.0-Beta](https://haystack.deepset.ai) using the"
|
51 |
-
" [`HuggingFaceTGIGenerator`](https://docs.haystack.deepset.ai/v2.0/docs/
|
52 |
" The source code is also on [GitHub](https://github.com/TuanaCelik/hackernews-summaries)"
|
53 |
" with instructions to run locally.\n"
|
54 |
"You can see how the `PromptBuilder` was set up [here](https://github.com/TuanaCelik/hackernews-summaries/blob/main/utils/haystack.py)")
|
|
|
48 |
st.markdown(
|
49 |
"## How this works\n"
|
50 |
"This app was built with [Haystack 2.0-Beta](https://haystack.deepset.ai) using the"
|
51 |
+
" [`HuggingFaceTGIGenerator`](https://docs.haystack.deepset.ai/v2.0/docs/huggingfacetgigenerator) and [`PromptBuilder`](https://docs.haystack.deepset.ai/v2.0/docs/promptbuilder).\n\n"
|
52 |
" The source code is also on [GitHub](https://github.com/TuanaCelik/hackernews-summaries)"
|
53 |
" with instructions to run locally.\n"
|
54 |
"You can see how the `PromptBuilder` was set up [here](https://github.com/TuanaCelik/hackernews-summaries/blob/main/utils/haystack.py)")
|