This commit is contained in:
2026-05-09 20:10:44 +00:00
parent 226d9d0508
commit 90d4000081
5 changed files with 484 additions and 2 deletions
+2 -2
View File
@@ -3,9 +3,9 @@ import json
from pathlib import Path
from openai import OpenAI
from utils import with_disk_cache
from utils import config, with_disk_cache
client = OpenAI()
client = OpenAI(api_key=config["openai"]["token"])
@with_disk_cache('select_best_torrents')
def select_best_torrents(torrents_text: str) -> str: