eli-the-pooh commited on
Commit
100430b
·
verified ·
1 Parent(s): ab7263e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -46,9 +46,12 @@ model = HfApiModel(
46
  max_tokens=2096,
47
  temperature=0.5,
48
  #model_id = "meta-llama/Llama-3.2-3B-Instruct",
49
- #model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded
50
- model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud',
 
 
51
  # model_id = "mistralai/Mistral-Small-3.1-24B-Instruct-2503",
 
52
  custom_role_conversions=None,
53
  )
54
 
 
46
  max_tokens=2096,
47
  temperature=0.5,
48
  #model_id = "meta-llama/Llama-3.2-3B-Instruct",
49
+ # The following two models were given originally but are giving Error
50
+ # model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded
51
+ # model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud',
52
+ # Mistral works well. but writes its own tools
53
  # model_id = "mistralai/Mistral-Small-3.1-24B-Instruct-2503",
54
+ model_id = "tiiuae/Falcon-E-3B-Instruct",
55
  custom_role_conversions=None,
56
  )
57