calcuis commited on
Commit
f97ff82
1 Parent(s): c2b7abd

Create chat.py

Browse files
Files changed (1) hide show
  1. chat.py +13 -0
chat.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
7
+ if ask == "q" or ask == "Q":
8
+ break
9
+
10
+ ans = llm(ask, max_new_tokens=1024)
11
+ print(ask+ans)
12
+
13
+ print("Goodbye!")