FredinVázquez commited on
Commit
80fc666
·
1 Parent(s): c4a9528

update test for vision model

Browse files
Files changed (2) hide show
  1. app.py +1 -1
  2. requirements.txt +2 -2
app.py CHANGED
@@ -26,7 +26,7 @@ from src.ui.theme import CSS, theme
26
  def on_propose(fridge_image: Image.Image | None, state: dict | None) -> tuple[str, str, list[str], dict]:
27
  """Photo → ingredients → 3 dish options."""
28
  state = state or {}
29
- ingredients = identify_ingredients(fridge_image)
30
  # options = propose_dishes(ingredients)
31
 
32
  # state.update({
 
26
  def on_propose(fridge_image: Image.Image | None, state: dict | None) -> tuple[str, str, list[str], dict]:
27
  """Photo → ingredients → 3 dish options."""
28
  state = state or {}
29
+ ingredients = identify_ingredients()
30
  # options = propose_dishes(ingredients)
31
 
32
  # state.update({
requirements.txt CHANGED
@@ -1,5 +1,5 @@
1
- --extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cpu
2
- llama-cpp-python
3
  gradio==6.15.2
4
  huggingface_hub>=1.17
5
 
 
1
+ # --extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cpu
2
+ # llama-cpp-python
3
  gradio==6.15.2
4
  huggingface_hub>=1.17
5