Spaces:
Running
on
Zero
Running
on
Zero
Update breed_recommendation.py
Browse files- breed_recommendation.py +1 -1
breed_recommendation.py
CHANGED
|
@@ -1,4 +1,3 @@
|
|
| 1 |
-
|
| 2 |
import sqlite3
|
| 3 |
import gradio as gr
|
| 4 |
from dog_database import get_dog_description, dog_data
|
|
@@ -6,6 +5,7 @@ from breed_health_info import breed_health_info
|
|
| 6 |
from breed_noise_info import breed_noise_info
|
| 7 |
from scoring_calculation_system import UserPreferences, calculate_compatibility_score
|
| 8 |
from recommendation_html_format import format_recommendation_html, get_breed_recommendations
|
|
|
|
| 9 |
from smart_breed_matcher import SmartBreedMatcher
|
| 10 |
from description_search_ui import create_description_search_tab
|
| 11 |
|
|
|
|
|
|
|
| 1 |
import sqlite3
|
| 2 |
import gradio as gr
|
| 3 |
from dog_database import get_dog_description, dog_data
|
|
|
|
| 5 |
from breed_noise_info import breed_noise_info
|
| 6 |
from scoring_calculation_system import UserPreferences, calculate_compatibility_score
|
| 7 |
from recommendation_html_format import format_recommendation_html, get_breed_recommendations
|
| 8 |
+
from search_history import create_history_tab, create_history_component
|
| 9 |
from smart_breed_matcher import SmartBreedMatcher
|
| 10 |
from description_search_ui import create_description_search_tab
|
| 11 |
|