added @tool before function
Browse files
app.py
CHANGED
|
@@ -7,6 +7,7 @@ from tools.final_answer import FinalAnswerTool
|
|
| 7 |
|
| 8 |
from Gradio_UI import GradioUI
|
| 9 |
|
|
|
|
| 10 |
def company_logos(company_name: str, _: int) -> str:
|
| 11 |
"""A tool that retrieves the logo of a given company using the Clearbit Logo API.
|
| 12 |
|
|
|
|
| 7 |
|
| 8 |
from Gradio_UI import GradioUI
|
| 9 |
|
| 10 |
+
@tool
|
| 11 |
def company_logos(company_name: str, _: int) -> str:
|
| 12 |
"""A tool that retrieves the logo of a given company using the Clearbit Logo API.
|
| 13 |
|