* [AI Chat] Add chart creation ability to code execution tool * Move chart display to separate web ui * Address PR feedback * Add story for chart display * Address PR feedback * Disable chart generation by default * Fix broken browser test * Add data size limits to chart artifact
18 lines
753 B
C
18 lines
753 B
C
/* Copyright (c) 2025 The Brave Authors. All rights reserved.
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef BRAVE_COMMON_WEBUI_URL_CONSTANTS_H_
|
|
#define BRAVE_COMMON_WEBUI_URL_CONSTANTS_H_
|
|
|
|
inline constexpr char kAIChatCodeSandboxUIURL[] =
|
|
"chrome-untrusted://aichat-code-sandbox/";
|
|
inline constexpr char kAIChatCodeSandboxUIHost[] = "aichat-code-sandbox";
|
|
|
|
inline constexpr char kAIChatChartDisplayUIURL[] =
|
|
"chrome-untrusted://aichat-chart-display/";
|
|
inline constexpr char kAIChatChartDisplayUIHost[] = "aichat-chart-display";
|
|
|
|
#endif // BRAVE_COMMON_WEBUI_URL_CONSTANTS_H_
|