datacipen commited on
Commit
aa869da
·
verified ·
1 Parent(s): f230647

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +2 -1
main.py CHANGED
@@ -30,7 +30,8 @@ from datetime import timedelta
30
  @cl.step(type="tool")
31
  async def LLMistral():
32
  os.environ['HUGGINGFACEHUB_API_TOKEN'] = os.environ['HUGGINGFACEHUB_API_TOKEN']
33
- repo_id = "mistralai/Mixtral-8x7B-Instruct-v0.1"
 
34
  llm = HuggingFaceEndpoint(
35
  repo_id=repo_id, max_new_tokens=5300, temperature=0.5, task="text2text-generation", streaming=True
36
  )
 
30
  @cl.step(type="tool")
31
  async def LLMistral():
32
  os.environ['HUGGINGFACEHUB_API_TOKEN'] = os.environ['HUGGINGFACEHUB_API_TOKEN']
33
+ #repo_id = "mistralai/Mixtral-8x7B-Instruct-v0.1"
34
+ repo_id = "microsoft/Phi-3.5-mini-instruct"
35
  llm = HuggingFaceEndpoint(
36
  repo_id=repo_id, max_new_tokens=5300, temperature=0.5, task="text2text-generation", streaming=True
37
  )