Chris4K commited on
Commit
b1d5623
·
verified ·
1 Parent(s): 235f64d

Update app_agent_config.py

Browse files
Files changed (1) hide show
  1. app_agent_config.py +61 -0
app_agent_config.py CHANGED
@@ -29,3 +29,64 @@ class AgentConfig:
29
  self.log_enabled = st.checkbox("Enable Logging")
30
  self.tool_checkboxes = [st.checkbox(f"{tool.name} --- {tool.description} ") for tool in tool_loader.tools]
31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  self.log_enabled = st.checkbox("Enable Logging")
30
  self.tool_checkboxes = [st.checkbox(f"{tool.name} --- {tool.description} ") for tool in tool_loader.tools]
31
 
32
+ def content_and_context(self):
33
+ agent_config.context = st.text_area("Context")
34
+
35
+ agent_config.image = st.camera_input("Take a picture")
36
+
37
+ img_file_buffer = st.file_uploader('Upload a PNG image', type='png')
38
+
39
+ if img_file_buffer is not None:
40
+ image_raw = Image.open(img_file_buffer)
41
+ #global image
42
+ agent_config.image = np.array(image_raw)
43
+ ########
44
+ st.image(agent_config.image)
45
+
46
+ uploaded_file = st.file_uploader("Choose a pdf", type='pdf')
47
+ if uploaded_file is not None:
48
+ # To read file as bytes:
49
+ pdf_document = uploaded_file.getvalue()
50
+ agent_config.document = pdf_document
51
+ st.write(pdf_document)
52
+
53
+ uploaded_txt_file = st.file_uploader("Choose a txt", type='txt')
54
+ if uploaded_txt_file is not None:
55
+ # To read file as bytes:
56
+ txt_document = uploaded_txt_file.getvalue()
57
+ agent_config.document = txt_document
58
+ st.write(txt_document)
59
+
60
+ uploaded_csv_file = st.file_uploader("Choose a csv", type='csv')
61
+ if uploaded_csv_file is not None:
62
+ # To read file as bytes:
63
+ csv_document = uploaded_csv_file.getvalue()
64
+ agent_config.document = csv_document
65
+ st.write(csv_document)
66
+
67
+ uploaded_csv_file = st.file_uploader("Choose audio", type='wav')
68
+ if uploaded_csv_file is not None:
69
+ # To read file as bytes:
70
+ csv_document = uploaded_csv_file.getvalue()
71
+ agent_config.document = csv_document
72
+ st.write(csv_document)
73
+
74
+ uploaded_csv_file = st.file_uploader("Choose video", type='avi')
75
+ if uploaded_csv_file is not None:
76
+ # To read file as bytes:
77
+ csv_document = uploaded_csv_file.getvalue()
78
+ agent_config.document = csv_document
79
+ st.write(csv_document)
80
+
81
+ # To convert to a string based IO:
82
+ #stringio = StringIO(uploaded_file.getvalue().decode("utf-8"))
83
+ #st.write(stringio)
84
+
85
+ # To read file as string:
86
+ #string_data = stringio.read()
87
+ #st.write(string_data)
88
+
89
+ # Can be used wherever a "file-like" object is accepted:
90
+ dataframe = pd.read_csv(uploaded_file)
91
+ st.write(dataframe)
92
+