Update app.py
Browse files
app.py
CHANGED
@@ -17,7 +17,5 @@ question = tg.Variable(question_string,
|
|
17 |
role_description="question to the LLM",
|
18 |
requires_grad=False)
|
19 |
|
20 |
-
|
21 |
-
|
22 |
-
#answer = model(question)
|
23 |
-
#print(answer)
|
|
|
17 |
role_description="question to the LLM",
|
18 |
requires_grad=False)
|
19 |
|
20 |
+
answer = model(question)
|
21 |
+
st.write(answer)
|
|
|
|