Files changed (1) hide show
  1. app.py +6 -3
app.py CHANGED
@@ -125,11 +125,14 @@ def generate_advice(product: dict, tokenizer, model) -> str:
125
  return advice
126
 
127
  # Streamlit app interface
128
- st.title("Digi-Key Circuit Component Advisor with AI")
129
  st.write(
130
  """
131
- This app helps circuit designers search for electronic components using the Digi-Key API
132
- and provides advice using a pretrained T5 model. It can also extract key specifications from datasheets.
 
 
 
133
  """
134
  )
135
 
 
125
  return advice
126
 
127
  # Streamlit app interface
128
+ st.title("Component Selection Advisor")
129
  st.write(
130
  """
131
+ This app is an advanced tool for circuit designers, enabling efficient searches for electronic components
132
+ using the Digi-Key API. It features AI-powered advice generated with a pretrained T5 model, providing
133
+ insightful recommendations. Additionally, the app can extract key specifications from datasheets, ensuring
134
+ users have all the critical details for their component selection process. Experience a seamless and
135
+ intelligent way to streamline your circuit design workflows.
136
  """
137
  )
138