LeoWalker commited on
Commit
96dd3e3
·
1 Parent(s): a7ddb9f

removed GPT4 and Claude2

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -84,10 +84,10 @@ st.title("Resume Parser")
84
 
85
  # Set up the LLM dictionary
86
  llm_dict = {
87
- "gpt-4-1106-preview": ChatOpenAI(temperature=0, model="gpt-4-1106-preview"),
88
- "gpt-4": ChatOpenAI(temperature=0, model="gpt-4"),
89
  "gpt-3.5-turbo-1106": ChatOpenAI(temperature=0, model="gpt-3.5-turbo-1106"),
90
- "claude-2": ChatAnthropic(model="claude-2", max_tokens=20_000),
91
  "claude-instant-1": ChatAnthropic(model="claude-instant-1", max_tokens=20_000)
92
  }
93
 
 
84
 
85
  # Set up the LLM dictionary
86
  llm_dict = {
87
+ # "gpt-4-1106-preview": ChatOpenAI(temperature=0, model="gpt-4-1106-preview"),
88
+ # "gpt-4": ChatOpenAI(temperature=0, model="gpt-4"),
89
  "gpt-3.5-turbo-1106": ChatOpenAI(temperature=0, model="gpt-3.5-turbo-1106"),
90
+ # "claude-2": ChatAnthropic(model="claude-2", max_tokens=20_000),
91
  "claude-instant-1": ChatAnthropic(model="claude-instant-1", max_tokens=20_000)
92
  }
93