sasan commited on
Commit
a7e0433
1 Parent(s): ba16989

chore: Update destination in main.py to Paris, France

Browse files
Files changed (2) hide show
  1. kitt/keepalive.py +2 -1
  2. 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 = "Rue Alphonse Weicker, Luxembourg"
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