Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -7,6 +7,7 @@ from tools.final_answer import FinalAnswerTool
|
|
7 |
from Gradio_UI import GradioUI
|
8 |
|
9 |
# Define Zodiac signs and their boundaries
|
|
|
10 |
ZODIAC_SIGNS = [
|
11 |
("Aries", 0, 30),
|
12 |
("Taurus", 30, 60),
|
@@ -110,7 +111,7 @@ final_answer = FinalAnswerTool()
|
|
110 |
model = LiteLLMModel(
|
111 |
model_id="gemini/gemini-2.0-flash-lite",
|
112 |
temperature=0.7,
|
113 |
-
api_key=userdata.get("GEMINI_KEY")
|
114 |
custom_role_conversions=None,
|
115 |
)
|
116 |
|
|
|
7 |
from Gradio_UI import GradioUI
|
8 |
|
9 |
# Define Zodiac signs and their boundaries
|
10 |
+
|
11 |
ZODIAC_SIGNS = [
|
12 |
("Aries", 0, 30),
|
13 |
("Taurus", 30, 60),
|
|
|
111 |
model = LiteLLMModel(
|
112 |
model_id="gemini/gemini-2.0-flash-lite",
|
113 |
temperature=0.7,
|
114 |
+
api_key=userdata.get("GEMINI_KEY"),
|
115 |
custom_role_conversions=None,
|
116 |
)
|
117 |
|