Akshayram1 commited on
Commit
9fb1a13
·
verified ·
1 Parent(s): df9b46a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -1,6 +1,6 @@
1
  import streamlit as st
2
  from smolagents.agents import ToolCallingAgent
3
- from smolagents import tool, LiteLLMModel
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 LiteLLMModel
12
- model = LiteLLMModel(model_id="gpt-4o")
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(f"extract_components {image_data}")
58
- code = agent.run(f"generate_code {components}")
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: