Commit a12df7fa authored by Bruce MacDonald's avatar Bruce MacDonald
Browse files

fix build

parent 6599268d
......@@ -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](
......
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)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment