fix build
This commit is contained in:
parent
6599268d78
commit
a12df7faf4
3 changed files with 1 additions and 2 deletions
|
@ -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](
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
Loading…
Reference in a new issue