fix build

This commit is contained in:
Bruce MacDonald 2023-06-27 12:32:21 -04:00
parent 6599268d78
commit a12df7faf4
3 changed files with 1 additions and 2 deletions

View file

@ -86,7 +86,6 @@ def unload(model):
def generate(model, prompt):
# auto load
error = load(model)
print(error)
if error is not None:
return error
generated = llms[model](

View file

@ -1,7 +1,7 @@
from difflib import SequenceMatcher
import json
with open("model_prompts.json", "r") as f:
with open("./model_prompts.json", "r") as f:
model_prompts = json.load(f)