Staticaliza commited on
Commit
0350ec7
·
verified ·
1 Parent(s): 3e7bef2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -139,7 +139,8 @@ def generate(input,
139
  }
140
 
141
  instruction = f"{prefix}\n{instruction}"
142
- msgs = [{ "role": "user", "content": global_instruction }, { "role": "user", "content": omni_content }]
 
143
 
144
  print(msgs)
145
 
 
139
  }
140
 
141
  instruction = f"{prefix}\n{instruction}"
142
+ omni_content = builder_map[filetype](input, instruction)
143
+ msgs = [{ "role": "user", "content": global_instruction }, { "role": "user", "content": omni_content }]
144
 
145
  print(msgs)
146