bvencel commited on
Commit
1879669
·
verified ·
1 Parent(s): 5854b6f

Simplified input part

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -18,7 +18,7 @@ model_name = "abacusai/Smaug-72B-v0.1"
18
  pipe = pipeline("text-generation")
19
 
20
  # Prompting the user for input text
21
- input_text = input("Enter your prompt: ")
22
 
23
  # Generating text based on the input
24
  # Adjust parameters like max_length according to your needs
 
18
  pipe = pipeline("text-generation")
19
 
20
  # Prompting the user for input text
21
+ input_text = "Tell me about yourself"
22
 
23
  # Generating text based on the input
24
  # Adjust parameters like max_length according to your needs