Add files via upload
This commit is contained in:
parent
2aa3775529
commit
5d7be2475a
1 changed files with 12 additions and 0 deletions
12
promptai.py
Normal file
12
promptai.py
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
from aitextgen import aitextgen
|
||||||
|
import sys
|
||||||
|
|
||||||
|
s = sys.argv[1:]
|
||||||
|
|
||||||
|
prompt1 = ""
|
||||||
|
for ele in s:
|
||||||
|
prompt1 += ele
|
||||||
|
|
||||||
|
ai = aitextgen(model_folder="trained_model", tokenizer_file="aitextgen.tokenizer.json")
|
||||||
|
|
||||||
|
ai.generate(n=1, prompt=prompt1, max_length=500)
|
Loading…
Reference in a new issue