diff --git a/pyproject.toml b/pyproject.toml index 6bc6d2a..6f00c94 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ authors = ["Owen Colegrove "] license = "Apache-2.0" readme = "README.md" name = 'sciphi-synthesizer' -version = '1.0.1' +version = '1.0.2' packages = [ { include = "synthesizer" } ] diff --git a/synthesizer/scripts/data_augmenter.py b/synthesizer/scripts/data_augmenter.py index e91bbb2..3744181 100644 --- a/synthesizer/scripts/data_augmenter.py +++ b/synthesizer/scripts/data_augmenter.py @@ -55,7 +55,7 @@ def main( n_samples: int = 100, # LLM Settings llm_provider_name="sciphi", - llm_model_name="SciPhi/SciPhi-Mistral-7B-32k", + llm_model_name="SciPhi/SciPhi-SearchAgent-Alpha-7B", llm_max_tokens_to_sample=128, llm_temperature=0.1, llm_top_k=100, diff --git a/synthesizer/scripts/rag_harness.py b/synthesizer/scripts/rag_harness.py index bd13ccc..05dee92 100644 --- a/synthesizer/scripts/rag_harness.py +++ b/synthesizer/scripts/rag_harness.py @@ -21,7 +21,7 @@ def main( # LLM Settings llm_provider_name="sciphi", - llm_model_name="SciPhi/SciPhi-Mistral-7B-32k", + llm_model_name="SciPhi/SciPhi-SearchAgent-Alpha-7B", llm_max_tokens_to_sample=32, llm_temperature=0.1, llm_top_k=100,