File size: 348 Bytes
b67af4a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import os
import sys

sys.path.append(os.path.dirname(os.path.dirname(__file__)))

from scripts.hf_tools import HFDashboardReportTool


def main():
    tool = HFDashboardReportTool()
    html = tool.forward(query="semantic search", limit=5)
    print(html[:500])  # print first 500 chars


if __name__ == "__main__":
    main()