reygml commited on
Commit
7f01fcb
·
1 Parent(s): eee3392
Files changed (2) hide show
  1. Dockerfile +1 -0
  2. ui.py +2 -0
Dockerfile CHANGED
@@ -3,6 +3,7 @@
3
 
4
  FROM python:3.10
5
 
 
6
  # Make sure subsequent RUNs execute as root
7
  USER root
8
  SHELL ["/bin/bash", "-lc"]
 
3
 
4
  FROM python:3.10
5
 
6
+
7
  # Make sure subsequent RUNs execute as root
8
  USER root
9
  SHELL ["/bin/bash", "-lc"]
ui.py CHANGED
@@ -1,11 +1,13 @@
1
  # ui.py
2
  import os
 
3
  import io
4
  import json
5
  import requests
6
  import streamlit as st
7
  from PIL import Image
8
 
 
9
  st.set_page_config(page_title="SmolVLM UI", layout="wide")
10
  st.title("SmolVLM")
11
 
 
1
  # ui.py
2
  import os
3
+
4
  import io
5
  import json
6
  import requests
7
  import streamlit as st
8
  from PIL import Image
9
 
10
+
11
  st.set_page_config(page_title="SmolVLM UI", layout="wide")
12
  st.title("SmolVLM")
13