Skip to content

Commit

Permalink
refactor: Refactor variable names for consistency across codebase
Browse files Browse the repository at this point in the history
- Rename variable `openai_summary` to `anthropic_summary` in `main.py`
- Refactor code for improved clarity and consistency.
  • Loading branch information
johnnyhuy committed Apr 9, 2024
1 parent 80977f9 commit 63aa19e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transcribe_me/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ def main():

print(f"{Fore.BLUE}Summarizing {transcription_name} with Anthropic (Temp {model_config['temperature']} - {model_config['model']}):\n")
anthropic_summary = generate_summary(transcription, "anthropic", model_config)
print(openai_summary + "\n")
print(anthropic_summary + "\n")

print(f"\n{Fore.MAGENTA}Anthropic Summary (Temp {model_config['temperature']} - {model_config['model']}):")
print(anthropic_summary)
Expand Down

0 comments on commit 63aa19e

Please sign in to comment.