Skip to content

Commit

Permalink
eliminate hardcoded gpt4-turbo from multilingual function (#415)
Browse files Browse the repository at this point in the history
  • Loading branch information
caufieldjh authored Jul 25, 2024
2 parents aa77dbd + f4a5328 commit c27b489
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ontogpt/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1361,7 +1361,7 @@ def run_multilingual_analysis(
api_base,
api_version,
model_provider,
model="gpt-4-turbo",
model,
):
"""Call the multilingual analysis function."""
multilingual_analysis(
Expand Down
2 changes: 1 addition & 1 deletion src/ontogpt/utils/multilingual.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from ontogpt.io.yaml_wrapper import dump_minimal_yaml


def multilingual_analysis(input_data_dir, output_directory, output, model="gpt-4-turbo"):
def multilingual_analysis(input_data_dir, output_directory, output, model):
"""Run the multilingual analysis."""
# Set up the extraction template
template = "all_disease_grounding"
Expand Down

0 comments on commit c27b489

Please sign in to comment.