Vijayanand Sankarasubramanian commited on
Commit
74e5ff7
·
1 Parent(s): c133feb

removed llama3 as a model

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -68,9 +68,9 @@ def setup_summarization_method(choice, summarization_method):
68
  summarization_method = choice
69
  return choice, summarization_method
70
 
71
- summarization_llm_choices = [GPT3, GPT4, LLAMA3, ANTHROPIC2]
72
- question_answer_llm_choices = [GPT3, GPT4, LLAMA3, ANTHROPIC2]
73
- sentiment_analysis_llm_choices = [GPT3, GPT4, LLAMA3, ANTHROPIC2]
74
  summarize_method_choices = [MAPREDUCE, STUFF]
75
 
76
  with gr.Blocks() as demo:
 
68
  summarization_method = choice
69
  return choice, summarization_method
70
 
71
+ summarization_llm_choices = [GPT3, GPT4, ANTHROPIC2]
72
+ question_answer_llm_choices = [GPT3, GPT4, ANTHROPIC2]
73
+ sentiment_analysis_llm_choices = [GPT3, GPT4, ANTHROPIC2]
74
  summarize_method_choices = [MAPREDUCE, STUFF]
75
 
76
  with gr.Blocks() as demo: