mgrbyte commited on
Commit
b541e08
·
verified ·
1 Parent(s): 4c99b17

Update to new version of mimic.

Browse files
Files changed (2) hide show
  1. app.py +6 -1
  2. requirements.txt +1 -1
app.py CHANGED
@@ -1,3 +1,8 @@
1
  from techiaith.mimic import ui
2
 
3
- ui.main()
 
 
 
 
 
 
1
  from techiaith.mimic import ui
2
 
3
+ model_id: str = "techiaith/llama-3-8b-instruct-ctp-cy"
4
+ example_question_files = [
5
+ "instructions-cy.jsonl",
6
+ "instructions-en.jsonl",
7
+ ]
8
+ ui.main(example_question_file=example_question_files, model_id=model_id)
requirements.txt CHANGED
@@ -1,2 +1,2 @@
1
- techiaith-mimic==2025.1.27.dev0
2
 
 
1
+ techiaith-mimic==2025.1.27.dev1
2