diff --git a/README.md b/README.md index 9f1819afb..4d3fe9dd1 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ NO WARRANTY EXPRESSED OR IMPLIED.**
User Data and comma Account -By default, openpilot uploads the driving data to our servers. You can also access your data through [comma connect](https://connect.comma.ai/). We use your data to train better models and improve openpilot for everyone. +By default, openpilot uploads the driving data to our servers. You can also access your data through [comma connect](https://stable.konik.ai/). We use your data to train better models and improve openpilot for everyone. openpilot is open source software: the user is free to disable data collection if they wish to do so. diff --git a/RELEASES.md b/RELEASES.md index d89ee2462..2e8f8a624 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -322,7 +322,7 @@ Version 0.8.12 (2021-12-15) * Improved audio amplifier configuration * System reliability improvements * Update Python to 3.8.10 - * Raw logs upload moved to connect.comma.ai + * Raw logs upload moved to stable.konik.ai * Fixed HUD alerts on newer Honda Bosch thanks to csouers! * Audi Q3 2020-21 support thanks to jyoung8607! * Lexus RC 2020 support thanks to ErichMoraga! diff --git a/common/api.py b/common/api.py index ac231400a..0cd9c529a 100644 --- a/common/api.py +++ b/common/api.py @@ -5,7 +5,7 @@ from datetime import datetime, timedelta, UTC from openpilot.system.hardware.hw import Paths from openpilot.system.version import get_version -API_HOST = os.getenv('API_HOST', 'https://api.commadotai.com') +API_HOST = os.getenv('API_HOST', 'https://api.konik.ai') class Api: def __init__(self, dongle_id): diff --git a/docs/concepts/glossary.md b/docs/concepts/glossary.md index a09b0f078..64a2309a4 100644 --- a/docs/concepts/glossary.md +++ b/docs/concepts/glossary.md @@ -4,6 +4,6 @@ * **offroad**: openpilot's system state while ignition is off * **route**: a route is a recording of an onroad session * **segment**: routes are split into one minute chunks called segments. -* **comma connect**: the web viewer for all your routes; check it out at [connect.comma.ai](https://connect.comma.ai). +* **comma connect**: the web viewer for all your routes; check it out at [stable.konik.ai](https://stable.konik.ai). * **panda**: this is the secondary processor on the device that implements the functional safety and directly talks to the car over CAN. See the [panda repo](https://github.com/commaai/panda). * **comma 3X**: the latest hardware by comma.ai for running openpilot. more info at [comma.ai/shop](https://comma.ai/shop). diff --git a/docs/concepts/logs.md b/docs/concepts/logs.md index 46ab2897d..8b0b5f077 100644 --- a/docs/concepts/logs.md +++ b/docs/concepts/logs.md @@ -23,7 +23,7 @@ Each camera stream is H.265 encoded and written to its respective file. qlogs are a decimated subset of the rlogs. Check out [cereal/services.py](https://github.com/commaai/cereal/blob/master/services.py) for the decimation. -qcameras are H.264 encoded, lower res versions of the fcamera.hevc. The video shown in [comma connect](https://connect.comma.ai/) is from the qcameras. +qcameras are H.264 encoded, lower res versions of the fcamera.hevc. The video shown in [comma connect](https://stable.konik.ai/) is from the qcameras. qlogs and qcameras are designed to be small enough to upload instantly on slow internet and store forever, yet useful enough for most analysis and debugging. diff --git a/selfdrive/ui/layouts/settings/device.py b/selfdrive/ui/layouts/settings/device.py index df8bba030..5d9d0e0e9 100644 --- a/selfdrive/ui/layouts/settings/device.py +++ b/selfdrive/ui/layouts/settings/device.py @@ -17,7 +17,7 @@ from openpilot.system.ui.widgets.scroller import Scroller # Description constants DESCRIPTIONS = { - 'pair_device': "Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer.", + 'pair_device': "Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer.", 'driver_camera': "Preview the driver facing camera to ensure that driver monitoring has good visibility. (vehicle must be off)", 'reset_calibration': ( "openpilot requires the device to be mounted within 4° left or right and within 5° " + diff --git a/selfdrive/ui/qt/api.h b/selfdrive/ui/qt/api.h index ad64d7e72..e34a05589 100644 --- a/selfdrive/ui/qt/api.h +++ b/selfdrive/ui/qt/api.h @@ -9,7 +9,7 @@ namespace CommaApi { -const QString BASE_URL = util::getenv("API_HOST", "https://api.commadotai.com").c_str(); +const QString BASE_URL = util::getenv("API_HOST", "https://api.konik.ai").c_str(); QByteArray rsa_sign(const QByteArray &data); QString create_jwt(const QJsonObject &payloads = {}, int expiry = 3600); diff --git a/selfdrive/ui/qt/offroad/settings.cc b/selfdrive/ui/qt/offroad/settings.cc index d31f868a0..c53423acb 100644 --- a/selfdrive/ui/qt/offroad/settings.cc +++ b/selfdrive/ui/qt/offroad/settings.cc @@ -252,7 +252,7 @@ DevicePanel::DevicePanel(SettingsWindow *parent) : ListWidget(parent) { addItem(new LabelControl(tr("Serial"), params.get("HardwareSerial").c_str())); pair_device = new ButtonControl(tr("Pair Device"), tr("PAIR"), - tr("Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer.")); + tr("Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer.")); connect(pair_device, &ButtonControl::clicked, [=]() { PairingPopup popup(this); popup.exec(); diff --git a/selfdrive/ui/qt/widgets/prime.cc b/selfdrive/ui/qt/widgets/prime.cc index ee820c46a..a737c2d26 100644 --- a/selfdrive/ui/qt/widgets/prime.cc +++ b/selfdrive/ui/qt/widgets/prime.cc @@ -36,7 +36,7 @@ void PairingQRWidget::hideEvent(QHideEvent *event) { void PairingQRWidget::refresh() { QString pairToken = CommaApi::create_jwt({{"pair", true}}); - QString qrString = "https://connect.comma.ai/?pair=" + pairToken; + QString qrString = "https://stable.konik.ai/?pair=" + pairToken; this->updateQrCode(qrString); update(); } @@ -100,9 +100,9 @@ PairingPopup::PairingPopup(QWidget *parent) : DialogBase(parent) {
  • %2
  • %3
  • - )").arg(tr("Go to https://connect.comma.ai on your phone")) + )").arg(tr("Go to https://stable.konik.ai on your phone")) .arg(tr("Click \"add new device\" and scan the QR code on the right")) - .arg(tr("Bookmark connect.comma.ai to your home screen to use it like an app")), this); + .arg(tr("Bookmark stable.konik.ai to your home screen to use it like an app")), this); instructions->setStyleSheet("font-size: 47px; font-weight: bold; color: black;"); instructions->setWordWrap(true); @@ -151,7 +151,7 @@ PrimeAdWidget::PrimeAdWidget(QWidget* parent) : QFrame(parent) { main_layout->addWidget(upgrade, 0, Qt::AlignTop); main_layout->addSpacing(50); - QLabel *description = new QLabel(tr("Become a comma prime member at connect.comma.ai")); + QLabel *description = new QLabel(tr("Become a comma prime member at stable.konik.ai")); description->setStyleSheet("font-size: 56px; font-weight: light; color: white;"); description->setWordWrap(true); main_layout->addWidget(description, 0, Qt::AlignTop); @@ -196,7 +196,7 @@ SetupWidget::SetupWidget(QWidget* parent) : QFrame(parent) { registrationTitle->setStyleSheet("font-size: 75px; font-weight: bold;"); finishRegistrationLayout->addWidget(registrationTitle); - QLabel* registrationDescription = new QLabel(tr("Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer.")); + QLabel* registrationDescription = new QLabel(tr("Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer.")); registrationDescription->setWordWrap(true); registrationDescription->setStyleSheet("font-size: 50px; font-weight: light;"); finishRegistrationLayout->addWidget(registrationDescription); diff --git a/selfdrive/ui/translations/main_ar.ts b/selfdrive/ui/translations/main_ar.ts index ff2e7ab05..353f477cd 100644 --- a/selfdrive/ui/translations/main_ar.ts +++ b/selfdrive/ui/translations/main_ar.ts @@ -287,8 +287,8 @@ مراجعة - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - اقرن جهازك بجهاز (connect.comma.ai) واحصل على عرضك من comma prime. + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + اقرن جهازك بجهاز (stable.konik.ai) واحصل على عرضك من comma prime. Pair Device @@ -556,16 +556,16 @@ Firehose Mode allows you to maximize your training data uploads to improve openp اقرن جهازك مع حسابك على comma - Go to https://connect.comma.ai on your phone - انتقل إلى https://connect.comma.ai على جوالك + Go to https://stable.konik.ai on your phone + انتقل إلى https://stable.konik.ai على جوالك Click "add new device" and scan the QR code on the right انقر "،إضافة جهاز جديد"، وامسح رمز الاستجابة السريعة (QR) على اليمين - Bookmark connect.comma.ai to your home screen to use it like an app - اجعل لـconnect.comma.ai إشارة مرجعية على شاشتك الرئيسية من أجل استخدامه مثل أي تطبيق + Bookmark stable.konik.ai to your home screen to use it like an app + اجعل لـstable.konik.ai إشارة مرجعية على شاشتك الرئيسية من أجل استخدامه مثل أي تطبيق Please connect to Wi-Fi to complete initial pairing @@ -590,8 +590,8 @@ Firehose Mode allows you to maximize your training data uploads to improve openp الترقية الآن - Become a comma prime member at connect.comma.ai - كن عضوًا في comma prime على connect.comma.ai + Become a comma prime member at stable.konik.ai + كن عضوًا في comma prime على stable.konik.ai PRIME FEATURES: @@ -707,8 +707,8 @@ Firehose Mode allows you to maximize your training data uploads to improve openp إنهاء الإعداد - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - اقرن جهازك بجهاز (connect.comma.ai) واحصل على عرضك من comma prime. + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + اقرن جهازك بجهاز (stable.konik.ai) واحصل على عرضك من comma prime. Pair device diff --git a/selfdrive/ui/translations/main_de.ts b/selfdrive/ui/translations/main_de.ts index 52fe55720..a143fcf39 100644 --- a/selfdrive/ui/translations/main_de.ts +++ b/selfdrive/ui/translations/main_de.ts @@ -287,8 +287,8 @@ Überprüfen - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - Koppele dein Gerät mit Comma Connect (connect.comma.ai) und sichere dir dein Comma Prime Angebot. + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + Koppele dein Gerät mit Comma Connect (stable.konik.ai) und sichere dir dein Comma Prime Angebot. Pair Device @@ -548,16 +548,16 @@ Der Firehose-Modus ermöglicht es dir, deine Trainingsdaten-Uploads zu maximiere Verbinde dein Gerät mit deinem comma Konto - Go to https://connect.comma.ai on your phone - Gehe zu https://connect.comma.ai auf deinem Handy + Go to https://stable.konik.ai on your phone + Gehe zu https://stable.konik.ai auf deinem Handy Click "add new device" and scan the QR code on the right Klicke auf "neues Gerät hinzufügen" und scanne den QR code rechts - Bookmark connect.comma.ai to your home screen to use it like an app - Füge connect.comma.ai als Lesezeichen auf deinem Homescreen hinzu um es wie eine App zu verwenden + Bookmark stable.konik.ai to your home screen to use it like an app + Füge stable.konik.ai als Lesezeichen auf deinem Homescreen hinzu um es wie eine App zu verwenden Please connect to Wi-Fi to complete initial pairing @@ -582,8 +582,8 @@ Der Firehose-Modus ermöglicht es dir, deine Trainingsdaten-Uploads zu maximiere Jetzt abonieren - Become a comma prime member at connect.comma.ai - Werde Comma Prime Mitglied auf connect.comma.ai + Become a comma prime member at stable.konik.ai + Werde Comma Prime Mitglied auf stable.konik.ai PRIME FEATURES: @@ -687,8 +687,8 @@ Der Firehose-Modus ermöglicht es dir, deine Trainingsdaten-Uploads zu maximiere Einrichtung beenden - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - Koppele dein Gerät mit Comma Connect (connect.comma.ai) und sichere dir dein Comma Prime Angebot. + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + Koppele dein Gerät mit Comma Connect (stable.konik.ai) und sichere dir dein Comma Prime Angebot. Pair device diff --git a/selfdrive/ui/translations/main_es.ts b/selfdrive/ui/translations/main_es.ts index 145eb7ae6..d8d2238a1 100644 --- a/selfdrive/ui/translations/main_es.ts +++ b/selfdrive/ui/translations/main_es.ts @@ -183,8 +183,8 @@ EMPAREJAR - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - Empareja tu dispositivo con comma connect (connect.comma.ai) y reclama tu oferta de comma prime. + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + Empareja tu dispositivo con comma connect (stable.konik.ai) y reclama tu oferta de comma prime. Driver Camera @@ -552,16 +552,16 @@ El Modo Firehose te permite maximizar las subidas de datos de entrenamiento para Empareje su dispositivo con su cuenta de comma - Go to https://connect.comma.ai on your phone - Vaya a https://connect.comma.ai en su teléfono + Go to https://stable.konik.ai on your phone + Vaya a https://stable.konik.ai en su teléfono Click "add new device" and scan the QR code on the right Seleccione "agregar nuevo dispositivo" y escanee el código QR a la derecha - Bookmark connect.comma.ai to your home screen to use it like an app - Añada connect.comma.ai a su pantalla de inicio para usarlo como una aplicación + Bookmark stable.konik.ai to your home screen to use it like an app + Añada stable.konik.ai a su pantalla de inicio para usarlo como una aplicación Please connect to Wi-Fi to complete initial pairing @@ -586,8 +586,8 @@ El Modo Firehose te permite maximizar las subidas de datos de entrenamiento para Actualizar Ahora - Become a comma prime member at connect.comma.ai - Hazte miembro de comma prime en connect.comma.ai + Become a comma prime member at stable.konik.ai + Hazte miembro de comma prime en stable.konik.ai PRIME FEATURES: @@ -691,8 +691,8 @@ El Modo Firehose te permite maximizar las subidas de datos de entrenamiento para Terminar configuración - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - Empareje su dispositivo con comma connect (connect.comma.ai) y reclame su oferta de comma prime. + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + Empareje su dispositivo con comma connect (stable.konik.ai) y reclame su oferta de comma prime. Pair device diff --git a/selfdrive/ui/translations/main_fr.ts b/selfdrive/ui/translations/main_fr.ts index 297d93613..c8e108b74 100644 --- a/selfdrive/ui/translations/main_fr.ts +++ b/selfdrive/ui/translations/main_fr.ts @@ -287,8 +287,8 @@ Désengager pour éteindre - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - Associez votre appareil avec comma connect (connect.comma.ai) et profitez de l'offre comma prime. + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + Associez votre appareil avec comma connect (stable.konik.ai) et profitez de l'offre comma prime. Pair Device @@ -546,16 +546,16 @@ Firehose Mode allows you to maximize your training data uploads to improve openp Associez votre appareil à votre compte comma - Go to https://connect.comma.ai on your phone - Allez sur https://connect.comma.ai sur votre téléphone + Go to https://stable.konik.ai on your phone + Allez sur https://stable.konik.ai sur votre téléphone Click "add new device" and scan the QR code on the right Cliquez sur "ajouter un nouvel appareil" et scannez le code QR à droite - Bookmark connect.comma.ai to your home screen to use it like an app - Ajoutez connect.comma.ai à votre écran d'accueil pour l'utiliser comme une application + Bookmark stable.konik.ai to your home screen to use it like an app + Ajoutez stable.konik.ai à votre écran d'accueil pour l'utiliser comme une application Please connect to Wi-Fi to complete initial pairing @@ -580,8 +580,8 @@ Firehose Mode allows you to maximize your training data uploads to improve openp Mettre à niveau - Become a comma prime member at connect.comma.ai - Devenez membre comma prime sur connect.comma.ai + Become a comma prime member at stable.konik.ai + Devenez membre comma prime sur stable.konik.ai PRIME FEATURES: @@ -685,8 +685,8 @@ Firehose Mode allows you to maximize your training data uploads to improve openp Terminer l'installation - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - Associez votre appareil avec comma connect (connect.comma.ai) et profitez de l'offre comma prime. + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + Associez votre appareil avec comma connect (stable.konik.ai) et profitez de l'offre comma prime. Pair device diff --git a/selfdrive/ui/translations/main_ja.ts b/selfdrive/ui/translations/main_ja.ts index 7bb5c5364..e39551faf 100644 --- a/selfdrive/ui/translations/main_ja.ts +++ b/selfdrive/ui/translations/main_ja.ts @@ -287,8 +287,8 @@ 見る - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - デバイスをcommaコネクト(connect.comma.ai)でペアリングしてcommaプライムの特典を受け取ってください。 + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + デバイスをcommaコネクト(stable.konik.ai)でペアリングしてcommaプライムの特典を受け取ってください。 Pair Device @@ -550,16 +550,16 @@ Firehoseモードを有効にすると学習データを最大限アップロー デバイスとcommaアカウントを連携して下さい - Go to https://connect.comma.ai on your phone - スマートフォンで https://connect.comma.ai にアクセスしてください + Go to https://stable.konik.ai on your phone + スマートフォンで https://stable.konik.ai にアクセスしてください Click "add new device" and scan the QR code on the right 「add new device」を押して右側のQRコードをスキャンしてください - Bookmark connect.comma.ai to your home screen to use it like an app - connect.comma.aiのサイトをホーム画面に追加して、アプリのように使うことができます。 + Bookmark stable.konik.ai to your home screen to use it like an app + stable.konik.aiのサイトをホーム画面に追加して、アプリのように使うことができます。 Please connect to Wi-Fi to complete initial pairing @@ -584,8 +584,8 @@ Firehoseモードを有効にすると学習データを最大限アップロー 今すぐアップグレード - Become a comma prime member at connect.comma.ai - connect.comma.ai からプライム会員に登録できます + Become a comma prime member at stable.konik.ai + stable.konik.ai からプライム会員に登録できます PRIME FEATURES: @@ -686,8 +686,8 @@ Firehoseモードを有効にすると学習データを最大限アップロー セットアップの完了 - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - デバイスをcommaコネクト(connect.comma.ai)でペアリングしてcommaプライムの特典を受け取ってください。 + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + デバイスをcommaコネクト(stable.konik.ai)でペアリングしてcommaプライムの特典を受け取ってください。 Pair device diff --git a/selfdrive/ui/translations/main_ko.ts b/selfdrive/ui/translations/main_ko.ts index 807996f18..ee7c0ecb5 100644 --- a/selfdrive/ui/translations/main_ko.ts +++ b/selfdrive/ui/translations/main_ko.ts @@ -287,8 +287,8 @@ 다시보기 - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - 장치를 comma connect (connect.comma.ai)에서 동기화하고 comma prime 무료 이용권을 사용하세요. + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + 장치를 comma connect (stable.konik.ai)에서 동기화하고 comma prime 무료 이용권을 사용하세요. Pair Device @@ -550,16 +550,16 @@ Firehose Mode allows you to maximize your training data uploads to improve openp 장치를 comma 계정에 동기화합니다 - Go to https://connect.comma.ai on your phone - https://connect.comma.ai에 접속하세요 + Go to https://stable.konik.ai on your phone + https://stable.konik.ai에 접속하세요 Click "add new device" and scan the QR code on the right "새 장치 추가"를 클릭하고 오른쪽 QR 코드를 스캔하세요 - Bookmark connect.comma.ai to your home screen to use it like an app - connect.comma.ai를 앱처럼 사용하려면 홈 화면에 바로가기를 만드세요 + Bookmark stable.konik.ai to your home screen to use it like an app + stable.konik.ai를 앱처럼 사용하려면 홈 화면에 바로가기를 만드세요 Please connect to Wi-Fi to complete initial pairing @@ -584,8 +584,8 @@ Firehose Mode allows you to maximize your training data uploads to improve openp 지금 업그레이드하세요 - Become a comma prime member at connect.comma.ai - connect.comma.ai에서 comma prime 사용자로 등록하세요 + Become a comma prime member at stable.konik.ai + stable.konik.ai에서 comma prime 사용자로 등록하세요 PRIME FEATURES: @@ -686,8 +686,8 @@ Firehose Mode allows you to maximize your training data uploads to improve openp 설정 완료 - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - 장치를 comma connect (connect.comma.ai)에서 동기화하고 comma prime 무료 이용권을 사용하세요. + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + 장치를 comma connect (stable.konik.ai)에서 동기화하고 comma prime 무료 이용권을 사용하세요. Pair device diff --git a/selfdrive/ui/translations/main_nl.ts b/selfdrive/ui/translations/main_nl.ts index 10651a416..f32a431d2 100644 --- a/selfdrive/ui/translations/main_nl.ts +++ b/selfdrive/ui/translations/main_nl.ts @@ -368,9 +368,9 @@ Get turn-by-turn directions displayed and more with a comma -prime subscription. Sign up now: https://connect.comma.ai +prime subscription. Sign up now: https://stable.konik.ai Krijg stapsgewijze routebeschrijving en meer met een comma -prime abonnement. Meld u nu aan: https://connect.comma.ai +prime abonnement. Meld u nu aan: https://stable.konik.ai No home @@ -452,16 +452,16 @@ ingesteld Koppel uw apparaat aan uw comma-account - Go to https://connect.comma.ai on your phone - Ga naar https://connect.comma.ai op uw telefoon + Go to https://stable.konik.ai on your phone + Ga naar https://stable.konik.ai op uw telefoon Click "add new device" and scan the QR code on the right Klik op "add new device" en scan de QR-code aan de rechterkant - Bookmark connect.comma.ai to your home screen to use it like an app - Voeg connect.comma.ai toe op uw startscherm om het als een app te gebruiken + Bookmark stable.konik.ai to your home screen to use it like an app + Voeg stable.konik.ai toe op uw startscherm om het als een app te gebruiken @@ -471,8 +471,8 @@ ingesteld Upgrade nu - Become a comma prime member at connect.comma.ai - Word een comma prime lid op connect.comma.ai + Become a comma prime member at stable.konik.ai + Word een comma prime lid op stable.konik.ai PRIME FEATURES: @@ -502,8 +502,8 @@ ingesteld comma prime - CONNECT.COMMA.AI - CONNECT.COMMA.AI + stable.konik.ai + stable.konik.ai COMMA POINTS @@ -713,8 +713,8 @@ ingesteld Installatie voltooien - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - Koppel uw apparaat met comma connect (connect.comma.ai) en claim uw comma prime-aanbieding. + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + Koppel uw apparaat met comma connect (stable.konik.ai) en claim uw comma prime-aanbieding. Pair device diff --git a/selfdrive/ui/translations/main_pl.ts b/selfdrive/ui/translations/main_pl.ts index 4f8b03ef5..9ec0210d7 100644 --- a/selfdrive/ui/translations/main_pl.ts +++ b/selfdrive/ui/translations/main_pl.ts @@ -369,9 +369,9 @@ Get turn-by-turn directions displayed and more with a comma -prime subscription. Sign up now: https://connect.comma.ai +prime subscription. Sign up now: https://stable.konik.ai Odblokuj nawigację zakręt po zakęcie i wiele więcej subskrybując -comma prime. Zarejestruj się teraz: https://connect.comma.ai +comma prime. Zarejestruj się teraz: https://stable.konik.ai No home @@ -453,16 +453,16 @@ nie zostało ustawione Sparuj swoje urzadzenie ze swoim kontem comma - Go to https://connect.comma.ai on your phone - Wejdź na stronę https://connect.comma.ai na swoim telefonie + Go to https://stable.konik.ai on your phone + Wejdź na stronę https://stable.konik.ai na swoim telefonie Click "add new device" and scan the QR code on the right Kliknij "add new device" i zeskanuj kod QR znajdujący się po prawej stronie - Bookmark connect.comma.ai to your home screen to use it like an app - Dodaj connect.comma.ai do zakładek na swoim ekranie początkowym, aby korzystać z niej jak z aplikacji + Bookmark stable.konik.ai to your home screen to use it like an app + Dodaj stable.konik.ai do zakładek na swoim ekranie początkowym, aby korzystać z niej jak z aplikacji @@ -472,8 +472,8 @@ nie zostało ustawione Uaktualnij teraz - Become a comma prime member at connect.comma.ai - Zostań członkiem comma prime na connect.comma.ai + Become a comma prime member at stable.konik.ai + Zostań członkiem comma prime na stable.konik.ai PRIME FEATURES: @@ -503,8 +503,8 @@ nie zostało ustawione comma prime - CONNECT.COMMA.AI - CONNECT.COMMA.AI + stable.konik.ai + stable.konik.ai COMMA POINTS @@ -717,8 +717,8 @@ nie zostało ustawione Zakończ konfigurację - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - Sparuj swoje urządzenie z comma connect (connect.comma.ai) i wybierz swoją ofertę comma prime. + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + Sparuj swoje urządzenie z comma connect (stable.konik.ai) i wybierz swoją ofertę comma prime. Pair device diff --git a/selfdrive/ui/translations/main_pt-BR.ts b/selfdrive/ui/translations/main_pt-BR.ts index 7f41588e8..a0a79c35d 100644 --- a/selfdrive/ui/translations/main_pt-BR.ts +++ b/selfdrive/ui/translations/main_pt-BR.ts @@ -287,8 +287,8 @@ Revisar - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - Pareie seu dispositivo com comma connect (connect.comma.ai) e reivindique sua oferta de comma prime. + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + Pareie seu dispositivo com comma connect (stable.konik.ai) e reivindique sua oferta de comma prime. Pair Device @@ -552,16 +552,16 @@ O Modo Firehose permite maximizar o envio de dados de treinamento para melhorar Pareie seu dispositivo à sua conta comma - Go to https://connect.comma.ai on your phone - navegue até https://connect.comma.ai no seu telefone + Go to https://stable.konik.ai on your phone + navegue até https://stable.konik.ai no seu telefone Click "add new device" and scan the QR code on the right Clique "add new device" e escaneie o QR code a seguir - Bookmark connect.comma.ai to your home screen to use it like an app - Salve connect.comma.ai como sua página inicial para utilizar como um app + Bookmark stable.konik.ai to your home screen to use it like an app + Salve stable.konik.ai como sua página inicial para utilizar como um app Please connect to Wi-Fi to complete initial pairing @@ -586,8 +586,8 @@ O Modo Firehose permite maximizar o envio de dados de treinamento para melhorar Atualizar Agora - Become a comma prime member at connect.comma.ai - Seja um membro comma prime em connect.comma.ai + Become a comma prime member at stable.konik.ai + Seja um membro comma prime em stable.konik.ai PRIME FEATURES: @@ -691,8 +691,8 @@ O Modo Firehose permite maximizar o envio de dados de treinamento para melhorar Concluir - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - Pareie seu dispositivo com comma connect (connect.comma.ai) e reivindique sua oferta de comma prime. + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + Pareie seu dispositivo com comma connect (stable.konik.ai) e reivindique sua oferta de comma prime. Pair device diff --git a/selfdrive/ui/translations/main_th.ts b/selfdrive/ui/translations/main_th.ts index 34824c268..2988b730b 100644 --- a/selfdrive/ui/translations/main_th.ts +++ b/selfdrive/ui/translations/main_th.ts @@ -287,8 +287,8 @@ ทบทวน - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - จับคู่อุปกรณ์ของคุณกับ comma connect (connect.comma.ai) และรับข้อเสนอ comma prime ของคุณ + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + จับคู่อุปกรณ์ของคุณกับ comma connect (stable.konik.ai) และรับข้อเสนอ comma prime ของคุณ Pair Device @@ -546,16 +546,16 @@ Firehose Mode allows you to maximize your training data uploads to improve openp จับคู่อุปกรณ์ของคุณกับบัญชี comma ของคุณ - Go to https://connect.comma.ai on your phone - ไปที่ https://connect.comma.ai ด้วยโทรศัพท์ของคุณ + Go to https://stable.konik.ai on your phone + ไปที่ https://stable.konik.ai ด้วยโทรศัพท์ของคุณ Click "add new device" and scan the QR code on the right กดที่ "add new device" และสแกนคิวอาร์โค้ดทางด้านขวา - Bookmark connect.comma.ai to your home screen to use it like an app - จดจำ connect.comma.ai โดยการเพิ่มไปยังหน้าจอโฮม เพื่อใช้งานเหมือนเป็นแอปพลิเคชัน + Bookmark stable.konik.ai to your home screen to use it like an app + จดจำ stable.konik.ai โดยการเพิ่มไปยังหน้าจอโฮม เพื่อใช้งานเหมือนเป็นแอปพลิเคชัน Please connect to Wi-Fi to complete initial pairing @@ -580,8 +580,8 @@ Firehose Mode allows you to maximize your training data uploads to improve openp อัพเกรดเดี๋ยวนี้ - Become a comma prime member at connect.comma.ai - สมัครสมาชิก comma prime ได้ที่ connect.comma.ai + Become a comma prime member at stable.konik.ai + สมัครสมาชิก comma prime ได้ที่ stable.konik.ai PRIME FEATURES: @@ -682,8 +682,8 @@ Firehose Mode allows you to maximize your training data uploads to improve openp ตั้งค่าเสร็จสิ้น - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - จับคู่อุปกรณ์ของคุณกับ comma connect (connect.comma.ai) และรับข้อเสนอ comma prime ของคุณ + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + จับคู่อุปกรณ์ของคุณกับ comma connect (stable.konik.ai) และรับข้อเสนอ comma prime ของคุณ Pair device diff --git a/selfdrive/ui/translations/main_tr.ts b/selfdrive/ui/translations/main_tr.ts index db6c4283a..6d233322b 100644 --- a/selfdrive/ui/translations/main_tr.ts +++ b/selfdrive/ui/translations/main_tr.ts @@ -287,8 +287,8 @@ - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - Cihazınızı comma connect (connect.comma.ai) ile eşleştirin ve comma prime aboneliğine göz atın. + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + Cihazınızı comma connect (stable.konik.ai) ile eşleştirin ve comma prime aboneliğine göz atın. Pair Device @@ -543,16 +543,16 @@ Firehose Mode allows you to maximize your training data uploads to improve openp comma.ai hesabınız ile cihazı eşleştirin - Go to https://connect.comma.ai on your phone - Telefonuzdan https://connect.comma.ai sitesine gidin + Go to https://stable.konik.ai on your phone + Telefonuzdan https://stable.konik.ai sitesine gidin Click "add new device" and scan the QR code on the right Yeni cihaz eklemek için sağdaki QR kodunu okutun - Bookmark connect.comma.ai to your home screen to use it like an app - Uygulama gibi kullanmak için connect.comma.ai sitesini yer işaretlerine ekleyin. + Bookmark stable.konik.ai to your home screen to use it like an app + Uygulama gibi kullanmak için stable.konik.ai sitesini yer işaretlerine ekleyin. Please connect to Wi-Fi to complete initial pairing @@ -577,8 +577,8 @@ Firehose Mode allows you to maximize your training data uploads to improve openp Hemen yükselt - Become a comma prime member at connect.comma.ai - connect.comma.ai üzerinden comma prime üyesi olun + Become a comma prime member at stable.konik.ai + stable.konik.ai üzerinden comma prime üyesi olun PRIME FEATURES: @@ -679,8 +679,8 @@ Firehose Mode allows you to maximize your training data uploads to improve openp Kurulumu bitir - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - Cihazınızı comma connect (connect.comma.ai) ile eşleştirin ve comma prime aboneliğine göz atın. + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + Cihazınızı comma connect (stable.konik.ai) ile eşleştirin ve comma prime aboneliğine göz atın. Pair device diff --git a/selfdrive/ui/translations/main_zh-CHS.ts b/selfdrive/ui/translations/main_zh-CHS.ts index 667d81ddd..79d9517f5 100644 --- a/selfdrive/ui/translations/main_zh-CHS.ts +++ b/selfdrive/ui/translations/main_zh-CHS.ts @@ -287,8 +287,8 @@ 预览 - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - 将您的设备与comma connect (connect.comma.ai)配对并领取您的comma prime优惠。 + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + 将您的设备与comma connect (stable.konik.ai)配对并领取您的comma prime优惠。 Pair Device @@ -550,16 +550,16 @@ Firehose Mode allows you to maximize your training data uploads to improve openp 将您的设备与comma账号配对 - Go to https://connect.comma.ai on your phone - 在手机上访问 https://connect.comma.ai + Go to https://stable.konik.ai on your phone + 在手机上访问 https://stable.konik.ai Click "add new device" and scan the QR code on the right 点击“添加新设备”,扫描右侧二维码 - Bookmark connect.comma.ai to your home screen to use it like an app - 将 connect.comma.ai 收藏到您的主屏幕,以便像应用程序一样使用它 + Bookmark stable.konik.ai to your home screen to use it like an app + 将 stable.konik.ai 收藏到您的主屏幕,以便像应用程序一样使用它 Please connect to Wi-Fi to complete initial pairing @@ -584,8 +584,8 @@ Firehose Mode allows you to maximize your training data uploads to improve openp 现在升级 - Become a comma prime member at connect.comma.ai - 打开connect.comma.ai以注册comma prime会员 + Become a comma prime member at stable.konik.ai + 打开stable.konik.ai以注册comma prime会员 PRIME FEATURES: @@ -686,8 +686,8 @@ Firehose Mode allows you to maximize your training data uploads to improve openp 完成设置 - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - 将您的设备与comma connect (connect.comma.ai)配对并领取您的comma prime优惠。 + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + 将您的设备与comma connect (stable.konik.ai)配对并领取您的comma prime优惠。 Pair device diff --git a/selfdrive/ui/translations/main_zh-CHT.ts b/selfdrive/ui/translations/main_zh-CHT.ts index a0f1997a0..39ff0cf25 100644 --- a/selfdrive/ui/translations/main_zh-CHT.ts +++ b/selfdrive/ui/translations/main_zh-CHT.ts @@ -287,8 +287,8 @@ 回顧 - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - 將您的裝置與 comma connect (connect.comma.ai) 配對並領取您的 comma 高級會員優惠。 + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + 將您的裝置與 comma connect (stable.konik.ai) 配對並領取您的 comma 高級會員優惠。 Pair Device @@ -550,16 +550,16 @@ Firehose Mode allows you to maximize your training data uploads to improve openp 將裝置與您的 comma 帳號配對 - Go to https://connect.comma.ai on your phone - 用手機連至 https://connect.comma.ai + Go to https://stable.konik.ai on your phone + 用手機連至 https://stable.konik.ai Click "add new device" and scan the QR code on the right 點選 "add new device" 後掃描右邊的二維碼 - Bookmark connect.comma.ai to your home screen to use it like an app - 將 connect.comma.ai 加入您的主螢幕,以便像手機 App 一樣使用它 + Bookmark stable.konik.ai to your home screen to use it like an app + 將 stable.konik.ai 加入您的主螢幕,以便像手機 App 一樣使用它 Please connect to Wi-Fi to complete initial pairing @@ -584,8 +584,8 @@ Firehose Mode allows you to maximize your training data uploads to improve openp 馬上升級 - Become a comma prime member at connect.comma.ai - 成為 connect.comma.ai 的高級會員 + Become a comma prime member at stable.konik.ai + 成為 stable.konik.ai 的高級會員 PRIME FEATURES: @@ -686,8 +686,8 @@ Firehose Mode allows you to maximize your training data uploads to improve openp 完成設置 - Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer. - 將您的裝置與 comma connect (connect.comma.ai) 配對並領取您的 comma 高級會員優惠。 + Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer. + 將您的裝置與 comma connect (stable.konik.ai) 配對並領取您的 comma 高級會員優惠。 Pair device diff --git a/selfdrive/ui/widgets/pairing_dialog.py b/selfdrive/ui/widgets/pairing_dialog.py index 63298914e..c9b81cf71 100644 --- a/selfdrive/ui/widgets/pairing_dialog.py +++ b/selfdrive/ui/widgets/pairing_dialog.py @@ -28,7 +28,7 @@ class PairingDialog: except Exception as e: cloudlog.warning(f"Failed to get pairing token: {e}") token = "" - return f"https://connect.comma.ai/setup?token={token}" + return f"https://stable.konik.ai/setup?token={token}" def _generate_qr_code(self) -> None: try: @@ -113,9 +113,9 @@ class PairingDialog: def _render_instructions(self, rect: rl.Rectangle) -> None: instructions = [ - "Go to https://connect.comma.ai on your phone", + "Go to https://stable.konik.ai on your phone", "Click \"add new device\" and scan the QR code on the right", - "Bookmark connect.comma.ai to your home screen to use it like an app", + "Bookmark stable.konik.ai to your home screen to use it like an app", ] font = gui_app.font(FontWeight.BOLD) diff --git a/selfdrive/ui/widgets/prime.py b/selfdrive/ui/widgets/prime.py index 6b601f6df..deba3a977 100644 --- a/selfdrive/ui/widgets/prime.py +++ b/selfdrive/ui/widgets/prime.py @@ -34,7 +34,7 @@ class PrimeWidget(Widget): # Description with wrapping desc_y = y + 140 font = gui_app.font(FontWeight.LIGHT) - wrapped_text = "\n".join(wrap_text(font, "Become a comma prime member at connect.comma.ai", 56, int(w))) + wrapped_text = "\n".join(wrap_text(font, "Become a comma prime member at stable.konik.ai", 56, int(w))) text_size = measure_text_cached(font, wrapped_text, 56) rl.draw_text_ex(font, wrapped_text, rl.Vector2(x, desc_y), 56, 0, rl.WHITE) diff --git a/selfdrive/ui/widgets/setup.py b/selfdrive/ui/widgets/setup.py index 35a7c4101..4572f2b1d 100644 --- a/selfdrive/ui/widgets/setup.py +++ b/selfdrive/ui/widgets/setup.py @@ -38,7 +38,7 @@ class SetupWidget(Widget): y += 113 # 75 + 38 spacing # Description - desc = "Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer." + desc = "Pair your device with comma connect (stable.konik.ai) and claim your comma prime offer." light_font = gui_app.font(FontWeight.LIGHT) wrapped = wrap_text(light_font, desc, 50, int(w)) for line in wrapped: diff --git a/system/athena/athenad.py b/system/athena/athenad.py index 6ed53b759..dbb7d4f42 100755 --- a/system/athena/athenad.py +++ b/system/athena/athenad.py @@ -41,7 +41,7 @@ from openpilot.system.version import get_build_metadata from openpilot.system.hardware.hw import Paths -ATHENA_HOST = os.getenv('ATHENA_HOST', 'wss://athena.comma.ai') +ATHENA_HOST = os.getenv('ATHENA_HOST', 'wss://athena.konik.ai') HANDLER_THREADS = int(os.getenv('HANDLER_THREADS', "4")) LOCAL_PORT_WHITELIST = {22, } # SSH diff --git a/tools/cabana/README.md b/tools/cabana/README.md index 7933098e3..ec1a786d3 100644 --- a/tools/cabana/README.md +++ b/tools/cabana/README.md @@ -1,6 +1,6 @@ # Cabana -Cabana is a tool developed to view raw CAN data. One use for this is creating and editing [CAN Dictionaries](http://socialledge.com/sjsu/index.php/DBC_Format) (DBC files), and the tool provides direct integration with [commaai/opendbc](https://github.com/commaai/opendbc) (a collection of DBC files), allowing you to load the DBC files direct from source, and save to your fork. In addition, you can load routes from [comma connect](https://connect.comma.ai). +Cabana is a tool developed to view raw CAN data. One use for this is creating and editing [CAN Dictionaries](http://socialledge.com/sjsu/index.php/DBC_Format) (DBC files), and the tool provides direct integration with [commaai/opendbc](https://github.com/commaai/opendbc) (a collection of DBC files), allowing you to load the DBC files direct from source, and save to your fork. In addition, you can load routes from [comma connect](https://stable.konik.ai). ## Usage Instructions @@ -28,7 +28,7 @@ Options: Arguments: route the drive to replay. find your drives at - connect.comma.ai + stable.konik.ai ``` ## Examples diff --git a/tools/cabana/cabana.cc b/tools/cabana/cabana.cc index 97f178b1f..648d4d1d9 100644 --- a/tools/cabana/cabana.cc +++ b/tools/cabana/cabana.cc @@ -21,7 +21,7 @@ int main(int argc, char *argv[]) { QCommandLineParser cmd_parser; cmd_parser.addHelpOption(); - cmd_parser.addPositionalArgument("route", "the drive to replay. find your drives at connect.comma.ai"); + cmd_parser.addPositionalArgument("route", "the drive to replay. find your drives at stable.konik.ai"); cmd_parser.addOption({"demo", "use a demo route instead of providing your own"}); cmd_parser.addOption({"auto", "Auto load the route from the best available source (no video): internal, openpilotci, comma_api, car_segments, testing_closet"}); cmd_parser.addOption({"qcam", "load qcamera"}); diff --git a/tools/lib/api.py b/tools/lib/api.py index c6e2d9891..160a9f566 100644 --- a/tools/lib/api.py +++ b/tools/lib/api.py @@ -1,6 +1,6 @@ import os import requests -API_HOST = os.getenv('API_HOST', 'https://api.commadotai.com') +API_HOST = os.getenv('API_HOST', 'https://api.konik.ai') # TODO: this should be merged into common.api diff --git a/tools/lib/auth.py b/tools/lib/auth.py index 5988397d0..8d36aaf22 100755 --- a/tools/lib/auth.py +++ b/tools/lib/auth.py @@ -60,39 +60,20 @@ class ClientRedirectHandler(BaseHTTPRequestHandler): def auth_redirect_link(method): provider_id = { - 'google': 'g', - 'apple': 'a', 'github': 'h', }[method] params = { - 'redirect_uri': f"https://api.comma.ai/v2/auth/{provider_id}/redirect/", + 'redirect_uri': f"https://api.konik.ai/v2/auth/{provider_id}/redirect/", 'state': f'service,localhost:{PORT}', } - if method == 'google': + if method == 'github': params.update({ - 'type': 'web_server', - 'client_id': '45471411055-ornt4svd2miog6dnopve7qtmh5mnu6id.apps.googleusercontent.com', - 'response_type': 'code', - 'scope': 'https://www.googleapis.com/auth/userinfo.email', - 'prompt': 'select_account', - }) - return 'https://accounts.google.com/o/oauth2/auth?' + urlencode(params) - elif method == 'github': - params.update({ - 'client_id': '28c4ecb54bb7272cb5a4', + 'client_id': 'Ov23liy0AI1YCd15pypf', 'scope': 'read:user', }) return 'https://github.com/login/oauth/authorize?' + urlencode(params) - elif method == 'apple': - params.update({ - 'client_id': 'ai.comma.login', - 'response_type': 'code', - 'response_mode': 'form_post', - 'scope': 'name email', - }) - return 'https://appleid.apple.com/auth/authorize?' + urlencode(params) else: raise NotImplementedError(f"no redirect implemented for method {method}") diff --git a/tools/lib/logreader.py b/tools/lib/logreader.py index 8d84cdbd5..22775006c 100755 --- a/tools/lib/logreader.py +++ b/tools/lib/logreader.py @@ -203,7 +203,7 @@ def parse_indirect(identifier: str) -> str: if "useradmin.comma.ai" in identifier: query = parse_qs(urlparse(identifier).query) identifier = query["onebox"][0] - elif "connect.comma.ai" in identifier: + elif "stable.konik.ai" in identifier: path = urlparse(identifier).path.strip("/").split("/") path = ['/'.join(path[:2]), *path[2:]] # recombine log id diff --git a/tools/longitudinal_maneuvers/README.md b/tools/longitudinal_maneuvers/README.md index 643af7fd8..e9b522a6c 100644 --- a/tools/longitudinal_maneuvers/README.md +++ b/tools/longitudinal_maneuvers/README.md @@ -18,7 +18,7 @@ Test your vehicle's longitudinal control tuning with this tool. The tool will te ![videoframe_6652](https://github.com/user-attachments/assets/e9d4c95a-cd76-4ab7-933e-19937792fa0f) -5. Ensure the road ahead is clear, as openpilot will not brake for any obstructions in this mode. Once you are ready, press "Set" on your steering wheel to start the tests. The tests will run for about 4 minutes. If you need to pause the tests, press "Cancel" on your steering wheel. You can resume the tests by pressing "Resume" on your steering wheel. +5. Ensure the road ahead is clear, as openpilot will not brake for any obstructions in this mode. Once you are ready, press "Set" on your steering wheel to start the tests. The tests will run for about 4 minutes. If you need to pause the tests, press "Cancel" on your steering wheel. You can resume the tests by pressing "Resume" on your steering wheel. **Note:** For GM cars, it is recommended to hold down the resume button for all low-speed tests (starting, stopping and creep) to avoid the car entering standstill. @@ -28,7 +28,7 @@ Test your vehicle's longitudinal control tuning with this tool. The tool will te ![fin2](https://github.com/user-attachments/assets/c06960ae-7cfb-44af-beaa-4dc28848e49d) -7. Visit https://connect.comma.ai and locate the route(s). They will stand out with lots of orange intervals in their timeline. Ensure "All logs" show as "uploaded." +7. Visit https://stable.konik.ai and locate the route(s). They will stand out with lots of orange intervals in their timeline. Ensure "All logs" show as "uploaded." ![image](https://github.com/user-attachments/assets/cfe4c6d9-752f-4b24-b421-4b90a01933dc) diff --git a/tools/replay/README.md b/tools/replay/README.md index 72216e2cc..ccc666c1b 100644 --- a/tools/replay/README.md +++ b/tools/replay/README.md @@ -80,7 +80,7 @@ Options: Arguments: route the drive to replay. find your drives at - connect.comma.ai + stable.konik.ai ``` ## Visualize the Replay in the openpilot UI diff --git a/tools/replay/api.h b/tools/replay/api.h index dff59c065..1a1fd62be 100644 --- a/tools/replay/api.h +++ b/tools/replay/api.h @@ -8,7 +8,7 @@ namespace CommaApi2 { -const std::string BASE_URL = util::getenv("API_HOST", "https://api.commadotai.com").c_str(); +const std::string BASE_URL = util::getenv("API_HOST", "https://api.konik.ai").c_str(); std::string create_token(bool use_jwt, const json11::Json& payloads = {}, int expiry = 3600); std::string httpGet(const std::string &url, long *response_code = nullptr); diff --git a/tools/scripts/fetch_image_from_route.py b/tools/scripts/fetch_image_from_route.py index 77bf48f94..1e17d4e46 100755 --- a/tools/scripts/fetch_image_from_route.py +++ b/tools/scripts/fetch_image_from_route.py @@ -24,7 +24,7 @@ segment = int(sys.argv[2]) frame = int(sys.argv[3]) camera = cameras[sys.argv[4]] if len(sys.argv) > 4 and sys.argv[4] in cameras else "cameras" -url = f'https://api.commadotai.com/v1/route/{route}/files' +url = f'https://api.konik.ai/v1/route/{route}/files' r = requests.get(url, headers={"Authorization": f"JWT {jwt}"}, timeout=10) assert r.status_code == 200 print("got api response")