JBHF commited on
Commit
ae80635
·
verified ·
1 Parent(s): 32acd0b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +23 -2
app.py CHANGED
@@ -20,6 +20,27 @@
20
  # st.latex(r''' a+a r^1+a r^2+a r^3 ''')
21
 
22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
 
24
  # JB:
25
  # LangChainDeprecationWarning: Importing embeddings from langchain is deprecated.
@@ -84,12 +105,12 @@ st.subheader("Een gereedschap gebaseerd op Kunstmatige Intelligentie (AI) om adv
84
  st.write("---------------------------------")
85
  st.subheader("Victor Benckhuijsen : (Glazuur technieken / Keramiek)")
86
  st.subheader("(ALL RIGHTS RESERVED)")
87
- st.image('Victor_Benckhuijsen_2.png', caption='Victor Benckhuijsen')
88
  # st.subheader("---------------------------------")
89
  # st.write("---------------------------------")
90
  st.subheader("Jan Bours : Artificial Intelligence / Data Science / Natural Language Processing")
91
  st.subheader("(ALL RIGHTS RESERVED)")
92
- st.image('Jan_Bours_2.png', caption='Jan Bours')
93
  st.write("---------------------------------")
94
  st.subheader("Chat with Docs - Using AI: 'mixtral-8x7b-32768' Groq Edition (Very Fast!) - VERSION 2 - April 3, 2024")
95
  st.write("---------------------------------")
 
20
  # st.latex(r''' a+a r^1+a r^2+a r^3 ''')
21
 
22
 
23
+ # ========================================================================
24
+ # TABS
25
+ # 03-04-2024
26
+ import streamlit as st
27
+
28
+ tab1, tab2, tab3 = st.tabs(["Cat", "Dog", "Owl"])
29
+
30
+ with tab1:
31
+ st.header("A cat")
32
+ st.image("https://static.streamlit.io/examples/cat.jpg", width=200)
33
+
34
+ with tab2:
35
+ st.header("A dog")
36
+ st.image("https://static.streamlit.io/examples/dog.jpg", width=200)
37
+
38
+ with tab3:
39
+ st.header("An owl")
40
+ st.image("https://static.streamlit.io/examples/owl.jpg", width=200)
41
+ # ========================================================================
42
+
43
+
44
 
45
  # JB:
46
  # LangChainDeprecationWarning: Importing embeddings from langchain is deprecated.
 
105
  st.write("---------------------------------")
106
  st.subheader("Victor Benckhuijsen : (Glazuur technieken / Keramiek)")
107
  st.subheader("(ALL RIGHTS RESERVED)")
108
+ st.image('Victor_Benckhuijsen_2.png', caption='Victor Benckhuijsen', width=100)
109
  # st.subheader("---------------------------------")
110
  # st.write("---------------------------------")
111
  st.subheader("Jan Bours : Artificial Intelligence / Data Science / Natural Language Processing")
112
  st.subheader("(ALL RIGHTS RESERVED)")
113
+ st.image('Jan_Bours_2.png', caption='Jan Bours', width=100)
114
  st.write("---------------------------------")
115
  st.subheader("Chat with Docs - Using AI: 'mixtral-8x7b-32768' Groq Edition (Very Fast!) - VERSION 2 - April 3, 2024")
116
  st.write("---------------------------------")