rohan112 commited on
Commit
df03337
·
verified ·
1 Parent(s): 7cb5317

added llama3 model

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -70,9 +70,11 @@ loader = TextLoader('resume_data.txt')
70
  # loader = DirectoryLoader('./folder/', glob="./*.pdf", loader_cls=PyPDFLoader)
71
  documents = loader.load()
72
 
 
 
73
  # Make a chain
74
  llm = TogetherLLM(
75
- model= "togethercomputer/llama-2-70b-chat",
76
  temperature = 0.1,
77
  max_tokens = 1024)
78
 
 
70
  # loader = DirectoryLoader('./folder/', glob="./*.pdf", loader_cls=PyPDFLoader)
71
  documents = loader.load()
72
 
73
+ # model= "togethercomputer/llama-2-70b-chat"
74
+ model = "meta-llama/Llama-3-70b-chat-hf"
75
  # Make a chain
76
  llm = TogetherLLM(
77
+ model= model,
78
  temperature = 0.1,
79
  max_tokens = 1024)
80