hanzla commited on
Commit
1ad9c4b
·
1 Parent(s): 0954b86
Files changed (1) hide show
  1. src/pdfchatbot.py +1 -1
src/pdfchatbot.py CHANGED
@@ -77,7 +77,7 @@ class PDFChatBot:
77
  @spaces.GPU
78
  def create_organic_response(self, history, query):
79
  self.get_organic_context(query)
80
- tokenizer = AutoModelForCausalLM.from_pretrained("meta-llama/Meta-Llama-3-8B-Instruct")
81
  messages = [
82
  {"role": "system", "content": "From the the contained given below, answer the question of user \n " + self.current_context},
83
  {"role": "user", "content": query},
 
77
  @spaces.GPU
78
  def create_organic_response(self, history, query):
79
  self.get_organic_context(query)
80
+ tokenizer = AutoTokenizer.from_pretrained("meta-llama/Meta-Llama-3-8B-Instruct")
81
  messages = [
82
  {"role": "system", "content": "From the the contained given below, answer the question of user \n " + self.current_context},
83
  {"role": "user", "content": query},