Skip to content

Commit

Permalink
changed version
Browse files Browse the repository at this point in the history
  • Loading branch information
fractalego committed May 11, 2024
1 parent 0bafd5e commit 556ac14
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions todo.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
* add config file for model names
- llm model name
- whisper model name

/* add version name
/* let user decide port for frontend
/* update docs about port
/* push new version
* update pypi with wafl and wafl-llm
* clean code for llm eval and make it public
* update huggingface readme
* read overleaf paper


* on wafl_llm make it so only some LLMs are supported
* change speaker model with newer one

Expand Down
4 changes: 2 additions & 2 deletions wafl/variables.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
def get_variables():
return {
"version": "0.0.82",
"version": "0.0.83",
}


def is_supported(wafl_llm_version):
supported_versions = ["0.0.82"]
supported_versions = ["0.0.82", "0.0.83"]
return wafl_llm_version in supported_versions

0 comments on commit 556ac14

Please sign in to comment.