Spaces:
Sleeping
Sleeping
Update to new version of mimic.
Browse files- app.py +6 -1
- requirements.txt +1 -1
app.py
CHANGED
@@ -1,3 +1,8 @@
|
|
1 |
from techiaith.mimic import ui
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
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.
|
2 |
|
|
|
1 |
+
techiaith-mimic==2025.1.27.dev1
|
2 |
|