Spaces:
Running
Running
fix
Browse files- app.py +1 -1
- tools/rss_get_papers.py +1 -1
app.py
CHANGED
@@ -56,7 +56,7 @@ with open("prompts.yaml", 'r') as stream:
|
|
56 |
|
57 |
agent = CodeAgent(
|
58 |
model=model,
|
59 |
-
tools=[final_answer, image_generation_tool,
|
60 |
max_steps=6,
|
61 |
verbosity_level=1,
|
62 |
grammar=None,
|
|
|
56 |
|
57 |
agent = CodeAgent(
|
58 |
model=model,
|
59 |
+
tools=[final_answer, image_generation_tool, daily_paper], ## add your tools here (don't remove final answer)
|
60 |
max_steps=6,
|
61 |
verbosity_level=1,
|
62 |
grammar=None,
|
tools/rss_get_papers.py
CHANGED
@@ -47,7 +47,7 @@ class HFDaylyPapperTool(Tool):
|
|
47 |
except Exception as e:
|
48 |
return f"An unexpected error occurred: {str(e)}"
|
49 |
|
50 |
-
def pretty_str_paper(article):
|
51 |
return f"*{article.title}*\n" \
|
52 |
f"_Источник_: {article.source}\n" \
|
53 |
f"_Авторы_: {article.authors}\n" \
|
|
|
47 |
except Exception as e:
|
48 |
return f"An unexpected error occurred: {str(e)}"
|
49 |
|
50 |
+
def pretty_str_paper(self, article):
|
51 |
return f"*{article.title}*\n" \
|
52 |
f"_Источник_: {article.source}\n" \
|
53 |
f"_Авторы_: {article.authors}\n" \
|