Thomas Bartlett commited on
Commit
3878af4
·
1 Parent(s): f40113b

wrong model name?

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -62,13 +62,12 @@ class BasicAgent:
62
 
63
  self.llm = ChatHuggingFace(
64
  llm=HuggingFaceEndpoint(
65
- repo_id="meta-llama/Meta-Llama-3-8B-Instruct",
66
  task="text-generation",
67
  max_new_tokens=512,
68
  temperature=0.0,
69
  do_sample=False,
70
  provider="auto" # Automatically select the first available provider
71
-
72
  )
73
  )
74
 
 
62
 
63
  self.llm = ChatHuggingFace(
64
  llm=HuggingFaceEndpoint(
65
+ repo_id="meta-llama/Llama-3.1-8B-Instruct",
66
  task="text-generation",
67
  max_new_tokens=512,
68
  temperature=0.0,
69
  do_sample=False,
70
  provider="auto" # Automatically select the first available provider
 
71
  )
72
  )
73