AtlasIA_Assistant / retrieve.py
abdeljalilELmajjodi's picture
upload app
3421713 verified
raw
history blame contribute delete
225 Bytes
from smolagents import tool
@tool
def about_atlasia() -> str:
"""
Atlasia Information Retrieval.
"""
with open("atlasia.txt","r") as file:
content = file.read()
file.close()
return content