Update app.py
Browse files
app.py
CHANGED
@@ -32,12 +32,35 @@ tab1, tab2, tab3 = st.tabs(["AI Adviseur voor niet-giftige glazuren", "Uitleg",
|
|
32 |
# st.image("https://static.streamlit.io/examples/cat.jpg", width=200)
|
33 |
|
34 |
with tab2:
|
35 |
-
|
36 |
-
|
37 |
|
38 |
with tab3:
|
39 |
-
|
40 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
# ========================================================================
|
42 |
|
43 |
|
|
|
32 |
# st.image("https://static.streamlit.io/examples/cat.jpg", width=200)
|
33 |
|
34 |
with tab2:
|
35 |
+
st.header("Uitleg")
|
36 |
+
st.image("De fritte oven - een schets van het proces.jpg", width=200)
|
37 |
|
38 |
with tab3:
|
39 |
+
st.header("Voorbeeld vragen")
|
40 |
+
st.image("De fritte oven - een schets van het proces.jpg", width=200)
|
41 |
+
|
42 |
+
# https://docs.streamlit.io/library/api-reference/widgets/st.text_area
|
43 |
+
# st.text_area
|
44 |
+
# Streamlit Version -Version 1.32.0
|
45 |
+
# Display a multi-line text input widget.
|
46 |
+
|
47 |
+
|
48 |
+
txt = st.text_area(
|
49 |
+
"Hier alvast een klein aantal voorbeeldvragen die je aan deze AI adviseur voor niet-giftige glazuren zou kunnen stellen:",
|
50 |
+
"Hoe kan ik thuis als hobby keramiek maken? Geef het antwoord uitsluitend en alleen in de Nederlands taal "
|
51 |
+
"Geef een samenvatting in 10 zinnen. "
|
52 |
+
"Geef een samenvatting in 25 bullet points. "
|
53 |
+
"Geef een samenvatting in 25 bullet points. Geef het antwoord uitsluitend en alleen in de Nederlandse taal. "
|
54 |
+
"Geef een samenvatting in 25 bullet points. Geef het antwoord uitsluitend en alleen in de Duitse taal. "
|
55 |
+
"Explain glazing techniques to me as if I am 10 years old. "
|
56 |
+
"Geef me uitleg over glazuurtechnieken alsof ik 5 jaar oud ben. Geef het antwoord uitsluitend en alleen in de Nederlandse taal."
|
57 |
+
" ... "
|
58 |
+
"(wordt vervolgd)"
|
59 |
+
)
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
# ========================================================================
|
65 |
|
66 |
|