calcuis commited on
Commit
bc15c02
1 Parent(s): 046e869

Update chat.py

Browse files
Files changed (1) hide show
  1. chat.py +1 -0
chat.py CHANGED
@@ -1,5 +1,6 @@
1
  from ctransformers import AutoModelForCausalLM
2
  llm = AutoModelForCausalLM.from_pretrained("chat.gguf")
 
3
  while True:
4
  ask = input("Enter a Question (Q for quit): ")
5
  if ask == "q" or ask == "Q":
 
1
  from ctransformers import AutoModelForCausalLM
2
  llm = AutoModelForCausalLM.from_pretrained("chat.gguf")
3
+
4
  while True:
5
  ask = input("Enter a Question (Q for quit): ")
6
  if ask == "q" or ask == "Q":