Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
import streamlit as st
|
2 |
from smolagents.agents import ToolCallingAgent
|
3 |
-
from smolagents import tool,
|
4 |
from typing import Optional
|
5 |
import cv2
|
6 |
import pytesseract
|
@@ -8,8 +8,8 @@ from PIL import Image
|
|
8 |
import io
|
9 |
import numpy as np
|
10 |
|
11 |
-
# Define the
|
12 |
-
model =
|
13 |
|
14 |
@tool
|
15 |
def extract_components(image_data: bytes) -> str:
|
@@ -54,8 +54,8 @@ uploaded_file = st.file_uploader("Upload a web design image", type=["png", "jpg"
|
|
54 |
if st.button("Extract and Generate Code"):
|
55 |
if uploaded_file is not None:
|
56 |
image_data = uploaded_file.read()
|
57 |
-
components = agent.run(
|
58 |
-
code = agent.run(
|
59 |
st.write("Extracted Components:", components)
|
60 |
st.write("Generated Code:", code)
|
61 |
else:
|
|
|
1 |
import streamlit as st
|
2 |
from smolagents.agents import ToolCallingAgent
|
3 |
+
from smolagents import tool, GeminiModel # Assuming GeminiModel is the correct class
|
4 |
from typing import Optional
|
5 |
import cv2
|
6 |
import pytesseract
|
|
|
8 |
import io
|
9 |
import numpy as np
|
10 |
|
11 |
+
# Define the GeminiModel
|
12 |
+
model = GeminiModel(api_key="AIzaSyCuK0Z50g5AGZrpvG54c8v_8rsOSRPjJJs", model_id="gemini-1.5-flash")
|
13 |
|
14 |
@tool
|
15 |
def extract_components(image_data: bytes) -> str:
|
|
|
54 |
if st.button("Extract and Generate Code"):
|
55 |
if uploaded_file is not None:
|
56 |
image_data = uploaded_file.read()
|
57 |
+
components = agent.run("extract_components", image_data=image_data)
|
58 |
+
code = agent.run("generate_code", components=components)
|
59 |
st.write("Extracted Components:", components)
|
60 |
st.write("Generated Code:", code)
|
61 |
else:
|