chore: Update destination in main.py to Paris, France
Browse files- kitt/keepalive.py +2 -1
- main.py +1 -1
kitt/keepalive.py
CHANGED
@@ -34,8 +34,9 @@ def job():
|
|
34 |
run_replicate_model()
|
35 |
|
36 |
|
|
|
|
|
37 |
schedule.every(100).seconds.do(job)
|
38 |
-
|
39 |
logger.info("Keepalive started.")
|
40 |
|
41 |
while True:
|
|
|
34 |
run_replicate_model()
|
35 |
|
36 |
|
37 |
+
logger.info("First run to boot up.")
|
38 |
+
run_replicate_model()
|
39 |
schedule.every(100).seconds.do(job)
|
|
|
40 |
logger.info("Keepalive started.")
|
41 |
|
42 |
while True:
|
main.py
CHANGED
@@ -39,7 +39,7 @@ from kitt.skills.common import config, vehicle
|
|
39 |
from kitt.skills.routing import calculate_route, find_address
|
40 |
|
41 |
ORIGIN = "Mondorf-les-Bains, Luxembourg"
|
42 |
-
DESTINATION = "
|
43 |
DEFAULT_LLM_BACKEND = "replicate"
|
44 |
ENABLE_HISTORY = True
|
45 |
ENABLE_TTS = True
|
|
|
39 |
from kitt.skills.routing import calculate_route, find_address
|
40 |
|
41 |
ORIGIN = "Mondorf-les-Bains, Luxembourg"
|
42 |
+
DESTINATION = "Paris, France"
|
43 |
DEFAULT_LLM_BACKEND = "replicate"
|
44 |
ENABLE_HISTORY = True
|
45 |
ENABLE_TTS = True
|