Remove Copy

This commit is contained in:
dazedanon 2025-07-15 15:25:26 -05:00
parent 6fa09e855f
commit 8229bda979

View file

@ -8,7 +8,6 @@ import time
import traceback
import tiktoken
import openai
import copy
from concurrent.futures import ThreadPoolExecutor, as_completed
from pathlib import Path
from colorama import Fore
@ -2537,6 +2536,9 @@ def createContext(fullPromptFlag, subbedT, format):
vocabPairs = parseVocabWithCategories(VOCAB)
matchedVocabText = buildMatchedVocabText(vocabPairs, subbedT)
if matchedVocabText:
print(matchedVocabText)
if fullPromptFlag:
system = PROMPT + matchedVocabText
else: