swyx commited on
Commit
0f6ab32
·
1 Parent(s): 5fdd310

phi 3 mini

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -145,7 +145,7 @@ async def delete_conversation(api_key: str, conversation_id: int) -> str:
145
  return f"Failed to delete conversation: {str(e)}"
146
 
147
  # client = InferenceClient("Qwen/Qwen2.5-14B-Instruct") # needs more memory than available in free tier - The model Qwen/Qwen2.5-14B-Instruct is too large to be loaded automatically (29GB > 10GB)
148
- client = InferenceClient("microsoft/Phi-3-small-128k-instruct")
149
 
150
  def respond(
151
  message: str,
 
145
  return f"Failed to delete conversation: {str(e)}"
146
 
147
  # client = InferenceClient("Qwen/Qwen2.5-14B-Instruct") # needs more memory than available in free tier - The model Qwen/Qwen2.5-14B-Instruct is too large to be loaded automatically (29GB > 10GB)
148
+ client = InferenceClient("microsoft/Phi-3-mini-128k-instruct")
149
 
150
  def respond(
151
  message: str,