feat(all): deployed chatbot widget

This commit is contained in:
Zhang Xiao Yan
2025-04-10 14:02:32 +08:00
committed by Krzysztof Budzynski
parent 6b4f08c1dc
commit b5f8020ad5
6 changed files with 81 additions and 4 deletions

View File

@@ -11,6 +11,7 @@ try:
except ImportError:
import os
import sys
sys.path.insert(0, os.path.abspath('../'))
from conf_common import * # noqa: F403,F401
@@ -19,11 +20,13 @@ import datetime
current_year = datetime.datetime.now().year
# General information about the project.
project = u'ESP-IDF Programming Guide'
copyright = u'2016 - {}, Espressif Systems (Shanghai) Co., Ltd'.format(current_year)
project = 'ESP-IDF Programming Guide'
copyright = '2016 - {}, Espressif Systems (Shanghai) Co., Ltd'.format(current_year) # noqa: A001
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
language = 'en'
html_zip = f'esp-idf-{language}-{release}' # noqa: F405
html_js_files = ['js/chatbot_widget_en.js']