Update app.py
Browse files
app.py
CHANGED
@@ -109,8 +109,7 @@ prompt = PromptTemplate(template=template, input_variables=["text"])
|
|
109 |
|
110 |
llm_chain = LLMChain(prompt=prompt, llm=llm)
|
111 |
|
112 |
-
text = st.text_input('Plug in your prompt here :
|
113 |
-
Try Employment law: Can I discuss my salary with coworkers?')
|
114 |
# Instantiate the prompt template # this will show stuff to the screen if there's a prompt
|
115 |
|
116 |
if text:
|
|
|
109 |
|
110 |
llm_chain = LLMChain(prompt=prompt, llm=llm)
|
111 |
|
112 |
+
text = st.text_input('Plug in your prompt here : Try (Employment law: Can I discuss my salary with coworkers?)')
|
|
|
113 |
# Instantiate the prompt template # this will show stuff to the screen if there's a prompt
|
114 |
|
115 |
if text:
|