fix: added date to result file name

main
Antonio De Lucreziis 9 months ago
parent 4c63bb03b5
commit 302a52a53b

@ -4,9 +4,11 @@ from llama_cpp import Llama
from bs4 import BeautifulSoup
import requests
import json
from datetime import datetime
OUTPUT_FILE = "results.json"
current_date = datetime.now().strftime("%Y-%m-%d_%H-%M")
OUTPUT_FILE = f"results_{current_date}.json"
EXAMPLES = [

Loading…
Cancel
Save