Spaces:
Running
Running
File size: 225 Bytes
3421713 |
1 2 3 4 5 6 7 8 9 10 11 |
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 |