Remove Copy
This commit is contained in:
parent
6fa09e855f
commit
8229bda979
1 changed files with 3 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue