Spaces:
Running
Running
Nathan Butters
commited on
Commit
·
0ba9733
1
Parent(s):
a0f442b
attempting to make images work with API
Browse files
app.py
CHANGED
@@ -9,6 +9,7 @@ from helpers.constant import *
|
|
9 |
from helpers.chat import basicChat, guidedMM, mmChat
|
10 |
import os
|
11 |
import requests
|
|
|
12 |
|
13 |
logger = logging.getLogger(__name__)
|
14 |
logging.basicConfig(filename='app.log', level=logging.INFO)
|
@@ -48,10 +49,13 @@ enable = st.checkbox("Enable camera")
|
|
48 |
picture = st.camera_input("Take a picture of your math work", disabled=not enable)
|
49 |
|
50 |
if picture is not None:
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
|
|
|
|
|
|
56 |
else:
|
57 |
basicChat()
|
|
|
9 |
from helpers.chat import basicChat, guidedMM, mmChat
|
10 |
import os
|
11 |
import requests
|
12 |
+
import tempfile
|
13 |
|
14 |
logger = logging.getLogger(__name__)
|
15 |
logging.basicConfig(filename='app.log', level=logging.INFO)
|
|
|
49 |
picture = st.camera_input("Take a picture of your math work", disabled=not enable)
|
50 |
|
51 |
if picture is not None:
|
52 |
+
temp_dir = tempfile.TemporaryDirectory()
|
53 |
+
temp_image_path = "." + temp_dir.name + "/" + picture.name
|
54 |
+
with open(temp_image_path, "wb") as f:
|
55 |
+
f.write(picture.getvalue())
|
56 |
+
|
57 |
+
# Get image URL
|
58 |
+
logger.info(temp_image_path)
|
59 |
+
guidedMM(st.session_state.systemPrompt, temp_image_path)
|
60 |
else:
|
61 |
basicChat()
|