LaotHF commited on
Commit
64534ba
·
verified ·
1 Parent(s): 19d0c8c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,7 +7,7 @@ text = st.text_input('Please input')
7
  btn = st.button('Send')
8
  result = st.empty()
9
 
10
- llm = pipleline('text-generation', model='gpt2')
11
 
12
  if btn:
13
  res = llm.generation(text)
 
7
  btn = st.button('Send')
8
  result = st.empty()
9
 
10
+ llm = pipeline('text-generation', model='gpt2')
11
 
12
  if btn:
13
  res = llm.generation(text)