diff --git a/chatgpt/ChatService.py b/chatgpt/ChatService.py
index 328eabb..7260de0 100644
--- a/chatgpt/ChatService.py
+++ b/chatgpt/ChatService.py
@@ -183,7 +183,7 @@ async def get_chat_requirements(self):
url = f'{self.base_url}/sentinel/chat-requirements'
headers = self.base_headers.copy()
try:
- config = get_config(self.user_agent)
+ config = get_config(self.user_agent, self.req_token)
p = get_requirements_token(config)
data = {'p': p}
r = await self.ss.post(url, headers=headers, json=data, timeout=5)
@@ -211,7 +211,7 @@ async def get_chat_requirements(self):
try:
if turnstile_solver_url:
res = await self.s.post(
- turnstile_solver_url, json={"url": "https://chatgpt.com", "p": p, "dx": turnstile_dx}
+ turnstile_solver_url, json={"url": "https://chatgpt.com", "p": p, "dx": turnstile_dx, "ua": self.user_agent}
)
self.turnstile_token = res.json().get("t")
except Exception as e:
@@ -410,6 +410,20 @@ async def get_download_url(self, file_id):
logger.error(f"Failed to get download url: {e}")
return ""
+ async def get_attachment_url(self, file_id, conversation_id):
+ url = f"{self.base_url}/conversation/{conversation_id}/attachment/{file_id}/download"
+ headers = self.base_headers.copy()
+ try:
+ r = await self.s.get(url, headers=headers, timeout=10)
+ if r.status_code == 200:
+ download_url = r.json().get('download_url')
+ return download_url
+ else:
+ raise HTTPException(status_code=r.status_code, detail=r.text)
+ except Exception as e:
+ logger.error(f"Failed to get download url: {e}")
+ return ""
+
async def get_download_url_from_upload(self, file_id):
url = f"{self.base_url}/files/{file_id}/uploaded"
headers = self.base_headers.copy()
diff --git a/chatgpt/chatFormat.py b/chatgpt/chatFormat.py
index 8f2a3bc..ae15459 100644
--- a/chatgpt/chatFormat.py
+++ b/chatgpt/chatFormat.py
@@ -137,6 +137,7 @@ async def stream_response(service, response, model, max_tokens):
last_message_id = None
last_role = None
last_content_type = None
+ last_status = None
model_slug = None
end = False
@@ -160,6 +161,8 @@ async def stream_response(service, response, model, max_tokens):
async for chunk in response:
chunk = chunk.decode("utf-8")
+ print(chunk)
+ print("=====================================")
if end:
logger.info(f"Response Model: {model_slug}")
yield "data: [DONE]\n\n"
@@ -214,6 +217,8 @@ async def stream_response(service, response, model, max_tokens):
if role == 'assistant' and last_role != 'assistant':
if recipient == 'dalle.text2im':
new_text = f"\n```{recipient}\n{part[len_last_content:]}"
+ elif recipient == 't2uay3k.sj1i4kz':
+ new_text = f"\n```image_creator\n{part[len_last_content:]}"
elif last_role == None:
new_text = part[len_last_content:]
else:
@@ -225,6 +230,21 @@ async def stream_response(service, response, model, max_tokens):
else:
new_text = part[len_last_content:]
len_last_content = len(part)
+ elif outer_content_type == "multimodal_text":
+ parts = content.get("parts", [])
+ new_text = ""
+ for part in parts:
+ file_id = part.get('asset_pointer').replace('sediment://', '')
+ full_height = part.get("height", 0)
+ current_height = part.get('metadata', {}).get("generation", {}).get("height", 0)
+ if full_height > current_height:
+ completed_rate = current_height / full_height
+ new_text = f"\n> {completed_rate:.2%}\n"
+ if last_role != role:
+ new_text = f"\n```{new_text}"
+ else:
+ image_download_url = await service.get_attachment_url(file_id, conversation_id)
+ new_text = f"\n```\n\n"
else:
text = content.get("text", "")
if outer_content_type == "code" and last_content_type != "code":
@@ -241,6 +261,8 @@ async def stream_response(service, response, model, max_tokens):
new_text = "\n```\n" + new_text
elif last_content_type == "execution_output" and outer_content_type != "execution_output":
new_text = "\n```\n" + new_text
+ elif last_content_type == "multimodal_text" and outer_content_type != "multimodal_text":
+ new_text = "\n```\n" + new_text
delta = {"content": new_text}
last_content_type = outer_content_type
@@ -248,6 +270,7 @@ async def stream_response(service, response, model, max_tokens):
delta = {}
finish_reason = "length"
end = True
+
elif status == "finished_successfully":
if content.get("content_type") == "multimodal_text":
parts = content.get("parts", [])
@@ -258,14 +281,19 @@ async def stream_response(service, response, model, max_tokens):
inner_content_type = part.get('content_type')
if inner_content_type == "image_asset_pointer":
last_content_type = "image_asset_pointer"
- file_id = part.get('asset_pointer').replace('file-service://', '')
- logger.debug(f"file_id: {file_id}")
- image_download_url = await service.get_download_url(file_id)
- logger.debug(f"image_download_url: {image_download_url}")
- if image_download_url:
- delta = {"content": f"\n```\n\n"}
+ if part.get('asset_pointer').startswith('file-service://'):
+ file_id = part.get('asset_pointer').replace('file-service://', '')
+ logger.debug(f"file_id: {file_id}")
+ image_download_url = await service.get_download_url(file_id)
+ logger.debug(f"image_download_url: {image_download_url}")
+ if image_download_url:
+ delta = {"content": f"\n```\n\n"}
+ else:
+ delta = {"content": f"\n```\nFailed to load the image.\n"}
else:
- delta = {"content": f"\n```\nFailed to load the image.\n"}
+ file_id = part.get('asset_pointer').replace('sediment://', '')
+ image_download_url = await service.get_attachment_url(file_id, conversation_id)
+ delta = {"content": f"\n\n"}
elif message.get("end_turn"):
part = content.get("parts", [])[0]
new_text = part[len_last_content:]
@@ -294,6 +322,7 @@ async def stream_response(service, response, model, max_tokens):
continue
last_message_id = message_id
last_role = role
+ last_status = status
if not end and not delta.get("content"):
delta = {"role": "assistant", "content": ""}
chunk_new_data["choices"][0]["delta"] = delta
diff --git a/chatgpt/chatFormat_v1.py b/chatgpt/chatFormat_v1.py
new file mode 100644
index 0000000..bc42746
--- /dev/null
+++ b/chatgpt/chatFormat_v1.py
@@ -0,0 +1,234 @@
+import asyncio
+import json
+import random
+import re
+import string
+import time
+import uuid
+
+import pybase64
+import websockets
+from fastapi import HTTPException
+
+from api.files import get_file_content
+from api.models import model_system_fingerprint
+from api.tokens import split_tokens_from_content, calculate_image_tokens, num_tokens_from_messages
+from utils.Logger import logger
+
+moderation_message = "I'm sorry, I cannot provide or engage in any content related to pornography, violence, or any unethical material. If you have any other questions or need assistance, please feel free to let me know. I'll do my best to provide support and assistance."
+
+
+async def format_not_stream_response(response, prompt_tokens, max_tokens, model):
+ chat_id = f"chatcmpl-{''.join(random.choice(string.ascii_letters + string.digits) for _ in range(29))}"
+ system_fingerprint_list = model_system_fingerprint.get(model, None)
+ system_fingerprint = random.choice(system_fingerprint_list) if system_fingerprint_list else None
+ created_time = int(time.time())
+ all_text = ""
+ async for chunk in response:
+ try:
+ if chunk.startswith("data: [DONE]"):
+ break
+ elif not chunk.startswith("data: "):
+ continue
+ else:
+ chunk = json.loads(chunk[6:])
+ if not chunk["choices"][0].get("delta"):
+ continue
+ all_text += chunk["choices"][0]["delta"]["content"]
+ except Exception as e:
+ logger.error(f"Error: {chunk}, error: {str(e)}")
+ continue
+ content, completion_tokens, finish_reason = await split_tokens_from_content(all_text, max_tokens, model)
+ message = {
+ "role": "assistant",
+ "content": content,
+ }
+ usage = {
+ "prompt_tokens": prompt_tokens,
+ "completion_tokens": completion_tokens,
+ "total_tokens": prompt_tokens + completion_tokens
+ }
+ if not message.get("content"):
+ raise HTTPException(status_code=403, detail="No content in the message.")
+
+ data = {
+ "id": chat_id,
+ "object": "chat.completion",
+ "created": created_time,
+ "model": model,
+ "choices": [
+ {
+ "index": 0,
+ "message": message,
+ "logprobs": None,
+ "finish_reason": finish_reason
+ }
+ ],
+ "usage": usage
+ }
+ if system_fingerprint:
+ data["system_fingerprint"] = system_fingerprint
+ return data
+
+
+async def head_process_response(response):
+ async for chunk in response:
+ chunk = chunk.decode("utf-8")
+ if chunk.startswith("data: {"):
+ chunk_old_data = json.loads(chunk[6:])
+ message = chunk_old_data.get("message", {})
+ if not message and "error" in chunk_old_data:
+ return response, False
+ role = message.get('author', {}).get('role')
+ if role == 'user' or role == 'system':
+ continue
+
+ status = message.get("status")
+ if status == "in_progress":
+ return response, True
+ return response, False
+
+
+async def stream_response(service, response, model, max_tokens):
+ chat_id = f"chatcmpl-{''.join(random.choice(string.ascii_letters + string.digits) for _ in range(29))}"
+ created_time = int(time.time())
+
+ chunk_new_data = {
+ "id": chat_id,
+ "object": "chat.completion.chunk",
+ "created": created_time,
+ "model": model,
+ "choices": [
+ {
+ "index": 0,
+ "delta": {"role": "assistant", "content": ""},
+ "logprobs": None,
+ "finish_reason": None
+ }
+ ]
+ }
+ yield f"data: {json.dumps(chunk_new_data)}\n\n"
+
+ async for chunk in response:
+ chunk = chunk.decode("utf-8")
+ try:
+ if chunk.startswith("data: {"):
+ chunk_old_data = json.loads(chunk[6:].strip())
+ except Exception as e:
+ logger.error(f"Error: {chunk}, error: {str(e)}")
+ continue
+
+
+def get_url_from_content(content):
+ if isinstance(content, str) and content.startswith('http'):
+ try:
+ url = re.match(
+ r'(?i)\b((?:[a-z][\w-]+:(?:/{1,3}|[a-z0-9%])|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}/)(?:[^\s()<>]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:\'".,<>?«»“”‘’]))',
+ content.split(' ')[0])[0]
+ content = content.replace(url, '').strip()
+ return url, content
+ except Exception:
+ return None, content
+ return None, content
+
+
+def format_messages_with_url(content):
+ url_list = []
+ while True:
+ url, content = get_url_from_content(content)
+ if url:
+ url_list.append(url)
+ logger.info(f"Found a file_url from messages: {url}")
+ else:
+ break
+ if not url_list:
+ return content
+ new_content = [
+ {
+ "type": "text",
+ "text": content
+ }
+ ]
+ for url in url_list:
+ new_content.append({
+ "type": "image_url",
+ "image_url": {
+ "url": url
+ }
+ })
+ return new_content
+
+
+async def api_messages_to_chat(service, api_messages, upload_by_url=False):
+ file_tokens = 0
+ chat_messages = []
+ for api_message in api_messages:
+ role = api_message.get('role')
+ content = api_message.get('content')
+ if upload_by_url:
+ if isinstance(content, str):
+ content = format_messages_with_url(content)
+ if isinstance(content, list):
+ parts = []
+ attachments = []
+ content_type = "multimodal_text"
+ for i in content:
+ if i.get("type") == "text":
+ parts.append(i.get("text"))
+ elif i.get("type") == "image_url":
+ image_url = i.get("image_url")
+ url = image_url.get("url")
+ detail = image_url.get("detail", "auto")
+ file_content, mime_type = await get_file_content(url)
+ file_meta = await service.upload_file(file_content, mime_type)
+ if file_meta:
+ file_id = file_meta["file_id"]
+ file_size = file_meta["size_bytes"]
+ file_name = file_meta["file_name"]
+ mime_type = file_meta["mime_type"]
+ use_case = file_meta["use_case"]
+ if mime_type.startswith("image/"):
+ width, height = file_meta["width"], file_meta["height"]
+ file_tokens += await calculate_image_tokens(width, height, detail)
+ parts.append({
+ "content_type": "image_asset_pointer",
+ "asset_pointer": f"file-service://{file_id}",
+ "size_bytes": file_size,
+ "width": width,
+ "height": height
+ })
+ attachments.append({
+ "id": file_id,
+ "size": file_size,
+ "name": file_name,
+ "mime_type": mime_type,
+ "width": width,
+ "height": height
+ })
+ else:
+ if not use_case == "ace_upload":
+ await service.check_upload(file_id)
+ file_tokens += file_size // 1000
+ attachments.append({
+ "id": file_id,
+ "size": file_size,
+ "name": file_name,
+ "mime_type": mime_type,
+ })
+ metadata = {
+ "attachments": attachments
+ }
+ else:
+ content_type = "text"
+ parts = [content]
+ metadata = {}
+ chat_message = {
+ "id": f"{uuid.uuid4()}",
+ "author": {"role": role},
+ "content": {"content_type": content_type, "parts": parts},
+ "metadata": metadata
+ }
+ chat_messages.append(chat_message)
+ text_tokens = await num_tokens_from_messages(api_messages, service.resp_model)
+ prompt_tokens = text_tokens + file_tokens
+ return chat_messages, prompt_tokens
diff --git a/chatgpt/proofofWork.py b/chatgpt/proofofWork.py
index b5bee37..d6aa866 100644
--- a/chatgpt/proofofWork.py
+++ b/chatgpt/proofofWork.py
@@ -8,6 +8,7 @@
from html.parser import HTMLParser
import pybase64
+import diskcache as dc
from utils.Logger import logger
from utils.configs import conversation_only
@@ -15,6 +16,7 @@
cores = [8, 16, 24, 32]
timeLayout = "%a %b %d %Y %H:%M:%S"
+cache = dc.Cache('./data/pow_config_cache')
cached_scripts = []
cached_dpl = ""
cached_time = 0
@@ -430,9 +432,10 @@ def get_parse_time():
return now.strftime(timeLayout) + " GMT-0500 (Eastern Standard Time)"
-def get_config(user_agent):
+@cache.memoize(expire=3600 * 24 * 7)
+def get_config(user_agent, req_token=None):
config = [
- random.randint(1080, 1440+1080),
+ random.choice([1920 + 1080, 2560 + 1440, 1920 + 1200, 2560 + 1600]),
get_parse_time(),
4294705152,
0,
diff --git a/gateway/backend.py b/gateway/backend.py
index 635b7a1..ee9e5fa 100644
--- a/gateway/backend.py
+++ b/gateway/backend.py
@@ -117,7 +117,7 @@ async def get_gizmos_snorlax_upsert(request: Request):
async def post_subscriptions(request: Request):
return {
"id": str(uuid.uuid4()),
- "plan_type": "pro",
+ "plan_type": "free",
"seats_in_use": 1,
"seats_entitled": 1,
"active_until": "2050-01-01T00:00:00Z",
@@ -262,6 +262,176 @@ async def get_me(request: Request):
return Response(content=json.dumps(me, indent=4), media_type="application/json")
+@app.get("/backend-api/tasks")
+async def get_me(request: Request):
+ token = request.headers.get("Authorization", "").replace("Bearer ", "")
+ if len(token) == 45 or token.startswith("eyJhbGciOi"):
+ return await chatgpt_reverse_proxy(request, "backend-api/tasks")
+ else:
+ tasks = {
+ "tasks": [],
+ "cursor": None
+ }
+ return Response(content=json.dumps(tasks, indent=4), media_type="application/json")
+
+
+@app.get("/backend-api/user_system_messages")
+async def get_me(request: Request):
+ token = request.headers.get("Authorization", "").replace("Bearer ", "")
+ if len(token) == 45 or token.startswith("eyJhbGciOi"):
+ return await chatgpt_reverse_proxy(request, "backend-api/user_system_messages")
+ else:
+ user_system_messages = {
+ "object": "user_system_message_detail",
+ "enabled": True,
+ "about_user_message": "",
+ "about_model_message": "",
+ "name_user_message": "",
+ "role_user_message": "",
+ "traits_model_message": "",
+ "other_user_message": "",
+ "disabled_tools": []
+ }
+ return Response(content=json.dumps(user_system_messages, indent=4), media_type="application/json")
+
+
+@app.get("/backend-api/memories")
+async def get_me(request: Request):
+ token = request.headers.get("Authorization", "").replace("Bearer ", "")
+ if len(token) == 45 or token.startswith("eyJhbGciOi"):
+ return await chatgpt_reverse_proxy(request, "backend-api/memories")
+ else:
+ memories = {"memories":[],"memory_max_tokens":10000,"memory_num_tokens":0}
+ return Response(content=json.dumps(memories, indent=4), media_type="application/json")
+
+
+# @app.get("/backend-api/system_hints")
+# async def get_me(request: Request):
+# token = request.headers.get("Authorization", "").replace("Bearer ", "")
+# if len(token) == 45 or token.startswith("eyJhbGciOi"):
+# return await chatgpt_reverse_proxy(request, "backend-api/system_hints")
+# else:
+# system_hints = {
+# "system_hints": [
+# {
+# "system_hint": "picture_v2",
+# "name": "创建图片",
+# "description": "Visualize ideas and concepts",
+# "logo": "",
+# "required_features": [
+# "image_gen_tool_enabled"
+# ],
+# "required_models": [],
+# "required_conversation_modes": [],
+# "allow_in_temporary_chat": True,
+# "composer_bar_button_info": None,
+# "suggested_prompt": {
+# "theme": "#512AEB",
+# "title": "创建图片",
+# "subtitle": "Visualize ideas and concepts",
+# "sort_order": 2,
+# "badge": None
+# },
+# "regex_matches": [
+# "image"
+# ]
+# },
+# {
+# "system_hint": "search",
+# "name": "搜索",
+# "description": "在网上查找",
+# "logo": "",
+# "required_features": [
+# "search"
+# ],
+# "required_models": [],
+# "required_conversation_modes": [
+# "primary_assistant"
+# ],
+# "allow_in_temporary_chat": True,
+# "composer_bar_button_info": None,
+# "suggested_prompt": None,
+# "regex_matches": None
+# },
+# {
+# "system_hint": "reason",
+# "name": "推理",
+# "description": "使用 o3-mini",
+# "logo": "",
+# "required_features": [],
+# "required_models": [
+# "o1",
+# "o3-mini"
+# ],
+# "required_conversation_modes": [
+# "primary_assistant"
+# ],
+# "allow_in_temporary_chat": True,
+# "composer_bar_button_info": {
+# "disabled_text": "推理不可用",
+# "tooltip_text": "思考后再回复",
+# "announcement_key": "",
+# "nux_title": "",
+# "nux_description": "ChatGPT 可以先思考更长时间再回复,以便更好地回答您的重大问题。",
+# "rate_limit_reached_text": None
+# },
+# "suggested_prompt": None,
+# "regex_matches": None
+# },
+# {
+# "system_hint": "canvas",
+# "name": "画布",
+# "description": "在写作和代码方面开展协作",
+# "logo": "",
+# "required_features": [
+# "canvas"
+# ],
+# "required_models": [],
+# "required_conversation_modes": [],
+# "allow_in_temporary_chat": False,
+# "composer_bar_button_info": None,
+# "suggested_prompt": {
+# "theme": "#AF52DE",
+# "title": "画布",
+# "subtitle": "写作和编程",
+# "sort_order": 3,
+# "badge": None
+# },
+# "regex_matches": None
+# },
+# {
+# "system_hint": "research",
+# "name": "深入研究",
+# "description": "对任何主题都有详细的见解",
+# "logo": "",
+# "required_features": [],
+# "required_models": [],
+# "required_conversation_modes": [
+# "primary_assistant"
+# ],
+# "allow_in_temporary_chat": False,
+# "composer_bar_button_info": {
+# "disabled_text": "深入研究不可用",
+# "tooltip_text": "对任何主题都有详细的见解",
+# "announcement_key": "oai/apps/hasSeenComposerCaterpillarButtonTooltip",
+# "nux_title": "您的个人研究员",
+# "nux_description": "使用 ChatGPT 来研究购物、大概念、科学问题等内容。[了解更多](https://openai.com/index/introducing-deep-research/)",
+# "rate_limit_reached_text": "本月限额已用完"
+# },
+# "suggested_prompt": {
+# "theme": "#0088FF",
+# "title": "深入研究",
+# "subtitle": "探索宏大主题",
+# "sort_order": 1,
+# "badge": "新"
+# },
+# "regex_matches": None
+# }
+# ]
+# }
+# return Response(content=json.dumps(system_hints, indent=4), media_type="application/json")
+
+
@app.post("/backend-api/edge")
async def edge():
return Response(status_code=204)
@@ -269,6 +439,7 @@ async def edge():
if no_sentinel:
openai_sentinel_tokens_cache = {}
+ openai_sentinel_cookies_cache = {}
@app.post("/backend-api/sentinel/chat-requirements")
async def sentinel_chat_conversations(request: Request):
@@ -306,11 +477,15 @@ async def sentinel_chat_conversations(request: Request):
clients = client
try:
- config = get_config(user_agent)
+ config = get_config(user_agent, session_id)
p = get_requirements_token(config)
data = {'p': p}
- r = await clients.post(f'{host_url}/backend-api/sentinel/chat-requirements', headers=headers, json=data,
- timeout=10)
+ for cookie in openai_sentinel_cookies_cache.get(req_token, []):
+ clients.session.cookies.set(**cookie)
+ r = await clients.post(f'{host_url}/backend-api/sentinel/chat-requirements', headers=headers, json=data, timeout=10)
+ oai_sc = r.cookies.get("oai-sc")
+ if oai_sc:
+ openai_sentinel_cookies_cache[req_token] = [{"name": "oai-sc", "value": oai_sc}]
if r.status_code != 200:
raise HTTPException(status_code=r.status_code, detail="Failed to get chat requirements")
resp = r.json()
@@ -321,7 +496,7 @@ async def sentinel_chat_conversations(request: Request):
try:
if turnstile_solver_url:
res = await client.post(turnstile_solver_url,
- json={"url": "https://chatgpt.com", "p": p, "dx": turnstile_dx})
+ json={"url": "https://chatgpt.com", "p": p, "dx": turnstile_dx, "ua": user_agent})
turnstile_token = res.json().get("t")
except Exception as e:
logger.info(f"Turnstile ignored: {e}")
@@ -406,7 +581,7 @@ async def chat_conversations(request: Request):
sentinel_tokens = openai_sentinel_tokens_cache.get(req_token, {})
openai_sentinel_tokens_cache.pop(req_token, None)
if not sentinel_tokens:
- config = get_config(user_agent)
+ config = get_config(user_agent, session_id)
p = get_requirements_token(config)
data = {'p': p}
r = await clients.post(f'{host_url}/backend-api/sentinel/chat-requirements', headers=headers, json=data,
@@ -419,7 +594,7 @@ async def chat_conversations(request: Request):
try:
if turnstile_solver_url:
res = await client.post(turnstile_solver_url,
- json={"url": "https://chatgpt.com", "p": p, "dx": turnstile_dx})
+ json={"url": "https://chatgpt.com", "p": p, "dx": turnstile_dx, "ua": user_agent})
turnstile_token = res.json().get("t")
except Exception as e:
logger.info(f"Turnstile ignored: {e}")
diff --git a/gateway/v1.py b/gateway/v1.py
index 4b17398..94a63d6 100644
--- a/gateway/v1.py
+++ b/gateway/v1.py
@@ -38,3 +38,8 @@ async def ces_v1_projects_oai_settings():
@app.post("/ces/v1/{path:path}")
async def ces_v1():
return Response(status_code=202, content=json.dumps({"success": True}, indent=4), media_type="application/json")
+
+
+@app.post("/ces/statsc/flush")
+async def ces_v1():
+ return Response(status_code=200, content=json.dumps({"success": True}, indent=4), media_type="application/json")
diff --git a/requirements.txt b/requirements.txt
index dba48a1..085b8c5 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -10,4 +10,5 @@ pybase64
jinja2
APScheduler
ua-generator
-pyjwt
\ No newline at end of file
+pyjwt
+diskcache
\ No newline at end of file
diff --git a/templates/chatgpt.html b/templates/chatgpt.html
index 30d6e60..2c99f0a 100644
--- a/templates/chatgpt.html
+++ b/templates/chatgpt.html
@@ -1,13 +1,16 @@
-
+
+
+
+
{% raw %}
@@ -20,40 +23,40 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
ChatGPT can make mistakes. Check important info.
-
+
+
-
-
-
-
+
+
+
ChatGPT can make mistakes. Check important info.
+
@@ -277,7 +439,7 @@ What can I hel
-
-
-
-
-
-
-
+
+
+
-
+
+
+
+
diff --git a/templates/chatgpt_context_1.json b/templates/chatgpt_context_1.json
index 7d8045a..549251c 100644
--- a/templates/chatgpt_context_1.json
+++ b/templates/chatgpt_context_1.json
@@ -1,61 +1,83 @@
[
{
"_1": 2,
- "_1458": -5,
- "_1459": -5
+ "_1868": -5,
+ "_1869": -5
},
"loaderData",
{
"_3": 4,
- "_1453": 1454,
- "_1457": -5
+ "_1862": 1863,
+ "_1867": -5
},
"root",
{
"_5": 6,
- "_52": 53,
- "_54": 55,
- "_1447": 24,
- "_1448": 24,
- "_1449": 24,
- "_1450": -7,
- "_1451": 1452
- },
- "rq:[\"session\"]",
- {
"_7": 8,
- "_36": 37,
- "_38": 39,
- "_40": -5,
- "_41": 42,
- "_43": 42,
- "_44": 42,
- "_45": -5,
- "_46": -5,
- "_47": 24,
- "_48": 49,
- "_50": 51
+ "_13": 14,
+ "_1856": 34,
+ "_1857": 34,
+ "_1858": 34,
+ "_1859": -7,
+ "_1860": 1861
},
- "data",
+ "rq:[\"account-status\"]",
+ [
+ "P",
+ 6
+ ],
+ "dd",
{
"_9": 10,
- "_29": 30,
- "_31": -7,
- "_32": 33,
- "_34": 35
+ "_11": 12
},
- "user",
+ "traceId",
+ "14093928210743749173",
+ "traceTime",
+ 1742986866029,
+ "clientBootstrap",
+ {
+ "_15": 16,
+ "_17": 18,
+ "_19": 20,
+ "_58": 59,
+ "_60": 61,
+ "_62": 63,
+ "_1842": 71,
+ "_1843": -5,
+ "_1844": 865,
+ "_1845": 1839,
+ "_1846": 1847,
+ "_1848": 1849,
+ "_1850": 1851,
+ "_1852": 34,
+ "_1853": 34,
+ "_1854": 34,
+ "_1855": 34
+ },
+ "authStatus",
+ "logged_in",
+ "session",
{
- "_11": 12,
- "_13": 14,
- "_15": 14,
- "_16": 17,
- "_18": 17,
"_19": 20,
+ "_39": 40,
+ "_41": 42,
+ "_48": 49,
+ "_50": 51,
+ "_52": 53
+ },
+ "user",
+ {
"_21": 22,
"_23": 24,
- "_25": 26,
- "_27": 28
+ "_25": 24,
+ "_26": 27,
+ "_28": 27,
+ "_29": 30,
+ "_31": 32,
+ "_33": 34,
+ "_35": 36,
+ "_37": 38
},
"id",
"user-chatgpt",
@@ -63,230 +85,152 @@
"chatgpt",
"email",
"chatgpt@openai.com",
- "https://s.gravatar.com/avatar/fe53cd045e943e12dd6c6a3622e33db8?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fkp.png",
+ "https://s.gravatar.com/avatar/5edae94250bff28c50456d715798421e?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fli.png",
"picture",
"idp",
"auth0",
"iat",
- 1741143750,
+ 1742986864,
"mfa",
false,
"groups",
[],
"intercom_hash",
- "f669fec9d64b8d619cf8b47637a3db1d34b392c75ed6a2dcd089425db3e9f9f2",
+ "2bfe17418ed9bd0db1924962d30f2ed4adcede4bc9a81ac41ce9d623ab3b4de5",
"expires",
- "2025-06-03T03:02:37.899Z",
+ "2025-06-24T11:01:06.009Z",
"account",
+ {
+ "_21": 43,
+ "_44": 45,
+ "_46": 47
+ },
+ "17904ad0-df88-4a0f-917b-501d958eceda",
+ "planType",
+ "pro",
+ "structure",
+ "personal",
"accessToken",
"",
"authProvider",
"openai",
- "dataUpdateCount",
- 1,
- "dataUpdatedAt",
- 1741143757927,
- "error",
- "errorUpdateCount",
- 0,
- "errorUpdatedAt",
- "fetchFailureCount",
- "fetchFailureReason",
- "fetchMeta",
- "isInvalidated",
- "status",
- "success",
- "fetchStatus",
- "idle",
- "rq:[\"account-status\"]",
- [
- "P",
- 53
- ],
- "clientBootstrap",
+ "rumViewTags",
{
- "_56": 8,
- "_9": 10,
- "_57": 58,
- "_59": 60,
- "_61": 62,
- "_63": 64,
- "_1434": 1426,
- "_1435": 1436,
- "_1437": 1428,
- "_1438": 1439,
- "_1440": 1441,
- "_1442": -5,
- "_1443": 72,
- "_1444": 24,
- "_1445": 72,
- "_1446": 72
+ "_54": 55
},
- "session",
+ "light_account",
+ {
+ "_56": 34,
+ "_57": -7
+ },
+ "fetched",
+ "reason",
"cluster",
- "unified-7",
- "userCountry",
- "US",
+ "unified-9",
"locale",
- "",
+ "zh-CN",
"statsig",
{
- "_65": 66
+ "_64": 65,
+ "_875": 876
},
- "payload",
+ "classic",
{
- "_67": 68,
- "_526": 527,
- "_705": 706,
- "_1392": 1393,
- "_1394": 72,
- "_1395": 1396,
- "_1397": 1398,
- "_1403": 1404,
- "_1405": 1406,
- "_1414": 1415,
- "_9": 1416
+ "_66": 67,
+ "_360": 361,
+ "_456": 457,
+ "_837": 838,
+ "_839": 71,
+ "_840": 841,
+ "_842": 843,
+ "_848": 849,
+ "_850": 851,
+ "_861": 862,
+ "_19": 863
},
"feature_gates",
{
- "_69": 70,
- "_77": 78,
- "_91": 92,
- "_97": 98,
- "_101": 102,
- "_108": 109,
- "_112": 113,
+ "_68": 69,
+ "_86": 87,
+ "_92": 93,
+ "_99": 100,
+ "_113": 114,
+ "_117": 118,
"_121": 122,
- "_133": 134,
- "_137": 138,
- "_141": 142,
+ "_125": 126,
+ "_128": 129,
+ "_132": 133,
+ "_142": 143,
"_146": 147,
- "_149": 150,
+ "_150": 151,
"_153": 154,
- "_159": 160,
- "_162": 163,
- "_165": 166,
+ "_157": 158,
+ "_161": 162,
+ "_164": 165,
+ "_168": 169,
"_172": 173,
- "_176": 177,
+ "_182": 183,
"_185": 186,
"_189": 190,
- "_193": 194,
- "_197": 198,
- "_207": 208,
- "_213": 214,
- "_217": 218,
- "_220": 221,
- "_224": 225,
- "_228": 229,
+ "_196": 197,
+ "_199": 200,
+ "_97": 204,
+ "_206": 207,
+ "_216": 217,
+ "_222": 223,
+ "_226": 227,
"_232": 233,
- "_236": 237,
- "_240": 241,
- "_244": 245,
- "_247": 248,
- "_251": 252,
+ "_237": 238,
+ "_194": 240,
+ "_242": 243,
+ "_245": 246,
+ "_249": 250,
"_255": 256,
- "_205": 258,
- "_261": 262,
- "_265": 266,
- "_269": 270,
- "_273": 274,
- "_276": 277,
- "_280": 281,
- "_284": 285,
- "_287": 288,
+ "_258": 259,
+ "_262": 263,
+ "_266": 267,
+ "_270": 271,
+ "_274": 275,
+ "_278": 279,
+ "_281": 282,
+ "_285": 286,
"_290": 291,
"_294": 295,
"_297": 298,
- "_302": 303,
- "_305": 306,
- "_308": 309,
- "_311": 312,
- "_106": 315,
- "_317": 318,
- "_320": 321,
- "_324": 325,
- "_327": 328,
- "_331": 332,
- "_335": 336,
- "_339": 340,
- "_343": 344,
- "_349": 350,
+ "_303": 304,
+ "_310": 311,
+ "_316": 317,
+ "_211": 319,
+ "_321": 322,
+ "_325": 326,
+ "_329": 330,
+ "_104": 332,
+ "_334": 335,
+ "_345": 346,
+ "_343": 349,
"_353": 354,
- "_301": 357,
- "_359": 360,
- "_362": 363,
- "_367": 368,
- "_371": 372,
- "_375": 376,
- "_378": 379,
- "_382": 383,
- "_385": 386,
- "_389": 390,
- "_395": 396,
- "_399": 400,
- "_404": 405,
- "_408": 409,
- "_415": 416,
- "_419": 420,
- "_423": 424,
- "_426": 427,
- "_429": 430,
- "_433": 434,
- "_436": 437,
- "_439": 440,
- "_443": 444,
- "_446": 447,
- "_450": 451,
- "_453": 454,
- "_457": 458,
- "_460": 461,
- "_463": 464,
- "_466": 467,
- "_470": 471,
- "_473": 474,
- "_477": 478,
- "_126": 481,
- "_483": 484,
- "_491": 492,
- "_495": 496,
- "_499": 500,
- "_502": 503,
- "_505": 506,
- "_509": 510,
- "_513": 514,
- "_516": 517,
- "_519": 520,
- "_523": 524
+ "_356": 357
},
- "14938527",
+ "61299031",
{
- "_13": 69,
- "_71": 72,
- "_73": 74,
- "_75": 76
+ "_23": 68,
+ "_70": 71,
+ "_72": 73,
+ "_74": 75
},
"value",
true,
"rule_id",
- "3QgLJ91lKIc7VAOjo5SDz7",
- "secondary_exposures",
- [],
- "61299031",
- {
- "_13": 77,
- "_71": 72,
- "_73": 79,
- "_75": 80
- },
"2wrvcqZBGOdzYtk4c8rQxP",
+ "secondary_exposures",
[
- 81,
- 88
+ 76,
+ 83
],
{
- "_82": 83,
- "_84": 85,
- "_86": 87
+ "_77": 78,
+ "_79": 80,
+ "_81": 82
},
"gate",
"44045625",
@@ -295,1283 +239,3165 @@
"ruleID",
"1vGfaAvyQ4VnZ5Y0UnCsbl:100.00:5",
{
- "_82": 89,
- "_84": 85,
- "_86": 90
+ "_77": 84,
+ "_79": 80,
+ "_81": 85
},
"1259585210",
"3cQqufsn9EF8iqIPZFNiE8:100.00:4",
"80186230",
{
- "_13": 91,
- "_71": 72,
- "_73": 93,
- "_75": 94
+ "_23": 86,
+ "_70": 71,
+ "_72": 88,
+ "_74": 89
},
"7thMqF7L1NKFaEvg1NsH7E",
[
- 95,
- 96
+ 90,
+ 91
],
{
- "_82": 83,
- "_84": 85,
- "_86": 87
- },
- {
- "_82": 89,
- "_84": 85,
- "_86": 90
+ "_77": 78,
+ "_79": 80,
+ "_81": 82
},
- "156153730",
{
- "_13": 97,
- "_71": 24,
- "_73": 99,
- "_75": 100
+ "_77": 84,
+ "_79": 80,
+ "_81": 85
},
- "default",
- [],
"174366048",
{
- "_13": 101,
- "_71": 72,
- "_73": 103,
- "_75": 104
+ "_23": 92,
+ "_70": 71,
+ "_72": 94,
+ "_74": 95
},
"bhPM7FsN2H1vnBUrxrg6v:100.00:3",
[
- 105
+ 96
],
{
- "_82": 106,
- "_84": 85,
- "_86": 107
+ "_77": 97,
+ "_79": 80,
+ "_81": 98
},
"1923022511",
"6VUF6Z1JaUKZF7RS6uSjUu:100.00:6",
- "222560275",
- {
- "_13": 108,
- "_71": 24,
- "_73": 110,
- "_75": 111
- },
- "5pv2QpbgXNDB0QnBo3LTti:10.00:1",
- [],
- "223382091",
+ "232791851",
{
- "_13": 112,
- "_71": 24,
- "_73": 114,
- "_75": 115
+ "_23": 99,
+ "_70": 34,
+ "_72": 101,
+ "_74": 102
},
- "1fKkxDiVebEKfTj8nDAjHe",
+ "default",
[
- 116,
- 119
+ 103,
+ 106,
+ 109
],
{
- "_82": 117,
- "_84": 118,
- "_86": 99
+ "_77": 104,
+ "_79": 80,
+ "_81": 105
},
- "4180060165",
- "false",
+ "3922476776",
+ "1DS1QvDa6IFq9C1oJfgtU9",
{
- "_82": 120,
- "_84": 118,
- "_86": 99
+ "_77": 107,
+ "_79": 80,
+ "_81": 108
},
- "3765213438",
- "232791851",
+ "749124420",
+ "2MQYHJjfKwcTr14d1bOuVH:100.00:2",
{
- "_13": 121,
- "_71": 72,
- "_73": 123,
- "_75": 124
+ "_77": 110,
+ "_79": 111,
+ "_81": 112
},
- "rYvpa7v0ZvIBvAyteaqrp:100.00:2",
- [
- 125,
- 128,
- 130
- ],
+ "566128514",
+ "false",
+ "4P1FctCTa3aaKSskEnEeMt",
+ "374768818",
{
- "_82": 126,
- "_84": 85,
- "_86": 127
+ "_23": 113,
+ "_70": 71,
+ "_72": 115,
+ "_74": 116
},
- "3922476776",
- "1DS1QvDa6IFq9C1oJfgtU9",
+ "wA7D0MWpe3uCf9HA5KeEi",
+ [],
+ "491279851",
{
- "_82": 129,
- "_84": 118,
- "_86": 99
+ "_23": 117,
+ "_70": 71,
+ "_72": 119,
+ "_74": 120
},
- "749124420",
+ "4qtiGR7vlvMtZnfSlXM5RN:100.00:12",
+ [],
+ "507664831",
{
- "_82": 131,
- "_84": 85,
- "_86": 132
+ "_23": 121,
+ "_70": 34,
+ "_72": 123,
+ "_74": 124
},
- "566128514",
- "5hCRKi4Gs5QJkOanmdVvHU:100.00:4",
- "402391964",
+ "4SZ1s8XXvwaDrAV1l6wIro",
+ [],
+ "645560164",
{
- "_13": 133,
- "_71": 24,
- "_73": 135,
- "_75": 136
+ "_23": 125,
+ "_70": 34,
+ "_72": 101,
+ "_74": 127
},
- "14sAQaGJDosUKVV0DFZsAL",
[],
- "471233253",
+ "773249106",
{
- "_13": 137,
- "_71": 24,
- "_73": 139,
- "_75": 140
+ "_23": 128,
+ "_70": 34,
+ "_72": 130,
+ "_74": 131
},
- "3Yf9H7TxMC122pchwAkoLB",
+ "1kGO9xYmxaBS2V2H3LcQuG",
[],
- "491279851",
+ "989108178",
{
- "_13": 141,
- "_71": 24,
- "_73": 99,
- "_75": 143
+ "_23": 132,
+ "_70": 34,
+ "_72": 134,
+ "_74": 135
},
+ "4sTodKrNyByM4guZ68MORR",
[
- 144
+ 136,
+ 139
],
{
- "_82": 145,
- "_84": 118,
- "_86": 99
+ "_77": 137,
+ "_79": 111,
+ "_81": 138
},
- "2404506894",
- "573184874",
+ "1457171347",
+ "2EjTipm6C4kk4fuvcHMzZe",
{
- "_13": 146,
- "_71": 24,
- "_73": 99,
- "_75": 148
+ "_77": 140,
+ "_79": 80,
+ "_81": 141
},
- [],
- "582612297",
+ "1426009137",
+ "4C2vO0R7mvnCZvl1HDBExp:30.00:5",
+ "1028682714",
{
- "_13": 149,
- "_71": 72,
- "_73": 151,
- "_75": 152
+ "_23": 142,
+ "_70": 71,
+ "_72": 144,
+ "_74": 145
},
- "5censDsCfS2zQeYtTIui2s:100.00:2",
+ "735n03snBvba4AEhd2Qwqu:100.00:3",
[],
- "589604007",
+ "1072178956",
{
- "_13": 153,
- "_71": 24,
- "_73": 99,
- "_75": 155
+ "_23": 146,
+ "_70": 34,
+ "_72": 148,
+ "_74": 149
},
- [
- 156
- ],
+ "4m8JwKa5kCi9HNf1ScZepj",
+ [],
+ "1242184140",
{
- "_82": 157,
- "_84": 85,
- "_86": 158
+ "_23": 150,
+ "_70": 34,
+ "_72": 101,
+ "_74": 152
},
- "633009675",
- "3hRSthtIBD5acnNskGRJjV",
- "614413305",
+ [],
+ "1318146997",
{
- "_13": 159,
- "_71": 24,
- "_73": 99,
- "_75": 161
+ "_23": 153,
+ "_70": 71,
+ "_72": 155,
+ "_74": 156
},
+ "2AclmEgqaQBVFbxz37XKzy:100.00:5",
[],
- "645560164",
+ "1393076427",
{
- "_13": 162,
- "_71": 24,
- "_73": 99,
- "_75": 164
+ "_23": 157,
+ "_70": 71,
+ "_72": 159,
+ "_74": 160
},
+ "disabled",
[],
- "653593316",
+ "1508312659",
{
- "_13": 165,
- "_71": 72,
- "_73": 167,
- "_75": 168
+ "_23": 161,
+ "_70": 34,
+ "_72": 101,
+ "_74": 163
},
- "GJ8pvorFDIe3Z4WonIr2s",
- [
- 169
- ],
+ [],
+ "1578703058",
{
- "_82": 170,
- "_84": 85,
- "_86": 171
+ "_23": 164,
+ "_70": 71,
+ "_72": 166,
+ "_74": 167
},
- "3802510433",
- "6FLEMI2GBFmVWGEsEGyASD:100.00:5",
- "719574156",
+ "2l4nEVMUnPuXkgprUm5zzs:100.00:4",
+ [],
+ "1611573287",
{
- "_13": 172,
- "_71": 72,
- "_73": 174,
- "_75": 175
+ "_23": 168,
+ "_70": 71,
+ "_72": 170,
+ "_74": 171
},
- "52ssVXeI8kfXB7eOtvHcjo:100.00:4",
+ "159rwM3sBnviE9XWH24azn:100.00:2",
[],
- "756982148",
+ "1719651090",
{
- "_13": 176,
- "_71": 72,
- "_73": 178,
- "_75": 179
+ "_23": 172,
+ "_70": 71,
+ "_72": 174,
+ "_74": 175
},
- "3oAWYdzegKPwxhFJjJrGz3",
+ "60QaTyBFJYTakinhLvhAM9",
[
- 180,
- 182
+ 176,
+ 179
],
{
- "_82": 181,
- "_84": 118,
- "_86": 99
+ "_77": 177,
+ "_79": 80,
+ "_81": 178
},
- "1456438623",
+ "1616485584",
+ "2PP6pudW64Hn7katvazhAx:100.00:5",
{
- "_82": 183,
- "_84": 85,
- "_86": 184
+ "_77": 180,
+ "_79": 80,
+ "_81": 181
},
- "3805873235",
- "5KvGWgEpEmDspTafar95iC:100.00:9",
- "756982149",
+ "1034043359",
+ "4bd3o553p0ZCRkFmipROd8",
+ "1804926979",
{
- "_13": 185,
- "_71": 24,
- "_73": 187,
- "_75": 188
+ "_23": 182,
+ "_70": 34,
+ "_72": 101,
+ "_74": 184
},
- "1rXg44we6gmcRqYsiZzfL4:0.00:1",
[],
- "809056127",
+ "1825130190",
{
- "_13": 189,
- "_71": 72,
- "_73": 191,
- "_75": 192
+ "_23": 185,
+ "_70": 71,
+ "_72": 187,
+ "_74": 188
},
- "54ufwSF4KjxPi2AIrjbelh",
+ "Nef2uMceNUF9U3ZYwSbpD",
[],
- "925172880",
+ "1847911009",
+ {
+ "_23": 189,
+ "_70": 34,
+ "_72": 191,
+ "_74": 192
+ },
+ "5OIO2mI7iQiPRReG1jZ4c2:0.00:7",
+ [
+ 193
+ ],
+ {
+ "_77": 194,
+ "_79": 80,
+ "_81": 195
+ },
+ "2304807207",
+ "xhzqzk6zPqMb3Qs4GVvJu:100.00:5",
+ "1855896025",
{
- "_13": 193,
- "_71": 72,
- "_73": 195,
- "_75": 196
+ "_23": 196,
+ "_70": 34,
+ "_72": 101,
+ "_74": 198
},
- "1irABeRvknMrLpD4ae6ZHj:100.00:1",
[],
- "989108178",
+ "1902899872",
{
- "_13": 197,
- "_71": 24,
- "_73": 199,
- "_75": 200
+ "_23": 199,
+ "_70": 71,
+ "_72": 201,
+ "_74": 202
},
- "4sTodKrNyByM4guZ68MORR",
+ "58UOuEcFwyqlorfhrWQLlE",
[
- 201,
- 204
+ 203
],
{
- "_82": 202,
- "_84": 118,
- "_86": 203
+ "_77": 194,
+ "_79": 80,
+ "_81": 195
},
- "1457171347",
- "2EjTipm6C4kk4fuvcHMzZe",
{
- "_82": 205,
- "_84": 85,
- "_86": 206
+ "_23": 97,
+ "_70": 71,
+ "_72": 98,
+ "_74": 205
},
- "1426009137",
- "4C2vO0R7mvnCZvl1HDBExp:30.00:5",
- "989226566",
+ [],
+ "1988730211",
{
- "_13": 207,
- "_71": 72,
- "_73": 209,
- "_75": 210
+ "_23": 206,
+ "_70": 71,
+ "_72": 208,
+ "_74": 209
},
- "6yqqYAWKtmfU8A7QGdiky4",
+ "6B9O1B3eHKElKWCUfbcvBL",
[
- 211,
- 212
+ 210,
+ 213
],
{
- "_82": 202,
- "_84": 118,
- "_86": 203
+ "_77": 211,
+ "_79": 80,
+ "_81": 212
},
+ "3780975974",
+ "48uk8ZYa2RpJzkpIyOmqP0:100.00:5",
{
- "_82": 205,
- "_84": 85,
- "_86": 206
+ "_77": 214,
+ "_79": 80,
+ "_81": 215
},
- "1028682714",
+ "3733089528",
+ "3vtzosKkaPCfPysd7yBTSf",
+ "2044826081",
{
- "_13": 213,
- "_71": 72,
- "_73": 215,
- "_75": 216
+ "_23": 216,
+ "_70": 71,
+ "_72": 218,
+ "_74": 219
},
- "735n03snBvba4AEhd2Qwqu:100.00:3",
- [],
- "1032814809",
+ "6MpInoEzkXvXVvodNQCQWs",
+ [
+ 220,
+ 221
+ ],
{
- "_13": 217,
- "_71": 24,
- "_73": 99,
- "_75": 219
+ "_77": 78,
+ "_79": 80,
+ "_81": 82
},
- [],
- "1041874561",
{
- "_13": 220,
- "_71": 72,
- "_73": 222,
- "_75": 223
+ "_77": 84,
+ "_79": 80,
+ "_81": 85
},
- "3QhGbHZgk78rDbdIQis5P7",
- [],
- "1105502266",
+ "2091463435",
{
- "_13": 224,
- "_71": 72,
- "_73": 226,
- "_75": 227
+ "_23": 222,
+ "_70": 71,
+ "_72": 224,
+ "_74": 225
},
- "6aawHEq6J83iPX0WB5PkaS:100.00:1",
+ "5t78GUS68KOn3bHZd8z7ii:100.00:1",
[],
- "1166240779",
+ "2113934735",
{
- "_13": 228,
- "_71": 24,
- "_73": 230,
- "_75": 231
+ "_23": 226,
+ "_70": 34,
+ "_72": 101,
+ "_74": 228
},
- "4UjTXwt2XK975PANdi1Ma6:0.00:2",
- [],
- "1247275182",
+ [
+ 229,
+ 230,
+ 231
+ ],
{
- "_13": 232,
- "_71": 72,
- "_73": 234,
- "_75": 235
+ "_77": 177,
+ "_79": 80,
+ "_81": 178
},
- "6aPwZIGPFAaijvCOysRL6K:100.00:2",
- [],
- "1318146997",
{
- "_13": 236,
- "_71": 72,
- "_73": 238,
- "_75": 239
+ "_77": 180,
+ "_79": 80,
+ "_81": 181
},
- "2AclmEgqaQBVFbxz37XKzy:100.00:5",
- [],
- "1330965306",
{
- "_13": 240,
- "_71": 24,
- "_73": 242,
- "_75": 243
+ "_77": 172,
+ "_79": 80,
+ "_81": 174
},
- "2hgeURIeaW3xVVJbGnrnVw",
- [],
- "1358499025",
+ "2256850471",
+ {
+ "_23": 232,
+ "_70": 71,
+ "_72": 234,
+ "_74": 235
+ },
+ "IqxordbUxF1Fkg4gfExiY:100.00:1",
+ [
+ 236
+ ],
+ {
+ "_77": 185,
+ "_79": 80,
+ "_81": 187
+ },
+ "2293185713",
{
- "_13": 244,
- "_71": 24,
- "_73": 99,
- "_75": 246
+ "_23": 237,
+ "_70": 34,
+ "_72": 101,
+ "_74": 239
},
[],
- "1382475798",
{
- "_13": 247,
- "_71": 72,
- "_73": 249,
- "_75": 250
+ "_23": 194,
+ "_70": 71,
+ "_72": 195,
+ "_74": 241
},
- "3P8OsGy1e5tQlR5dsTIWbL",
[],
- "1416952492",
+ "2311599525",
{
- "_13": 251,
- "_71": 24,
- "_73": 253,
- "_75": 254
+ "_23": 242,
+ "_70": 34,
+ "_72": 101,
+ "_74": 244
},
- "2LD82enCtskHL9Vi2hS6Jq",
[],
- "1422501431",
+ "2335877601",
{
- "_13": 255,
- "_71": 24,
- "_73": 99,
- "_75": 257
+ "_23": 245,
+ "_70": 34,
+ "_72": 247,
+ "_74": 248
},
+ "6NQcdu7pgfp18Sq2tfBC6q",
[],
+ "2454940646",
{
- "_13": 205,
- "_71": 72,
- "_73": 206,
- "_75": 259
+ "_23": 249,
+ "_70": 71,
+ "_72": 251,
+ "_74": 252
},
+ "zol8dYvq8kKfRbOgcM0IF",
[
- 260
+ 253,
+ 254
],
{
- "_82": 202,
- "_84": 118,
- "_86": 203
+ "_77": 211,
+ "_79": 80,
+ "_81": 212
},
- "1439437954",
{
- "_13": 261,
- "_71": 24,
- "_73": 263,
- "_75": 264
+ "_77": 214,
+ "_79": 80,
+ "_81": 215
+ },
+ "2494375100",
+ {
+ "_23": 255,
+ "_70": 34,
+ "_72": 101,
+ "_74": 257
},
- "11IqDt7xc4mMNiyiSIMy1F",
[],
- "1456513860",
+ "2562876640",
{
- "_13": 265,
- "_71": 72,
- "_73": 267,
- "_75": 268
+ "_23": 258,
+ "_70": 71,
+ "_72": 260,
+ "_74": 261
},
- "jHXkU7q9axp0dXBSyzihH",
+ "326czTZeZ0RX0ypR0c5Bb6:100.00:15",
[],
- "1468311859",
+ "2607001979",
{
- "_13": 269,
- "_71": 24,
- "_73": 271,
- "_75": 272
+ "_23": 262,
+ "_70": 34,
+ "_72": 264,
+ "_74": 265
},
- "7tfl8ZUhwr5pzErE3ikBej",
+ "35jfNEnEKwGsryxcwFhAKz",
[],
- "1542198993",
+ "2687575887",
{
- "_13": 273,
- "_71": 24,
- "_73": 99,
- "_75": 275
+ "_23": 266,
+ "_70": 71,
+ "_72": 268,
+ "_74": 269
},
+ "10cvQmwrcZvpWBFlZgn8pZ",
[],
- "1611573287",
+ "2756095923",
{
- "_13": 276,
- "_71": 72,
- "_73": 278,
- "_75": 279
+ "_23": 270,
+ "_70": 71,
+ "_72": 272,
+ "_74": 273
},
- "159rwM3sBnviE9XWH24azn:100.00:2",
+ "6jPp6nW1wQVJbfY0uwQgmv:100.00:1",
[],
- "1656345175",
+ "2868048419",
{
- "_13": 280,
- "_71": 72,
- "_73": 282,
- "_75": 283
+ "_23": 274,
+ "_70": 34,
+ "_72": 276,
+ "_74": 277
},
- "2CwIChuIr7SLQ2CyqRegF2",
+ "7iUNAbafRQfKTvYI2mmFZB",
[],
- "1741586789",
+ "3054422710",
{
- "_13": 284,
- "_71": 24,
- "_73": 99,
- "_75": 286
+ "_23": 278,
+ "_70": 71,
+ "_72": 159,
+ "_74": 280
},
[],
- "1760640904",
+ "3286474446",
{
- "_13": 287,
- "_71": 24,
- "_73": 99,
- "_75": 289
+ "_23": 281,
+ "_70": 71,
+ "_72": 283,
+ "_74": 284
},
+ "2a7wA6tOQ5GPb7WIr1SU1A:100.00:1",
[],
- "1825130190",
+ "3325813340",
{
- "_13": 290,
- "_71": 72,
- "_73": 292,
- "_75": 293
+ "_23": 285,
+ "_70": 71,
+ "_72": 287,
+ "_74": 288
},
- "Nef2uMceNUF9U3ZYwSbpD",
+ "37GsRLj07CqERPyHBn4o5L",
+ [
+ 289
+ ],
+ {
+ "_77": 194,
+ "_79": 80,
+ "_81": 195
+ },
+ "3342258807",
+ {
+ "_23": 290,
+ "_70": 34,
+ "_72": 292,
+ "_74": 293
+ },
+ "3m0ycr0cMQOm6eMQQjgyp9",
[],
- "1839283687",
+ "3376455464",
{
- "_13": 294,
- "_71": 24,
- "_73": 99,
- "_75": 296
+ "_23": 294,
+ "_70": 34,
+ "_72": 101,
+ "_74": 296
},
[],
- "1847911009",
+ "3468624635",
{
- "_13": 297,
- "_71": 24,
- "_73": 99,
- "_75": 299
+ "_23": 297,
+ "_70": 34,
+ "_72": 101,
+ "_74": 299
},
[
300
],
{
- "_82": 301,
- "_84": 118,
- "_86": 99
+ "_77": 301,
+ "_79": 111,
+ "_81": 302
},
- "2304807207",
- "1860647109",
+ "2067628123",
+ "3CuBjEMi97tY3EGnq0NA9s",
+ "3544641259",
{
- "_13": 302,
- "_71": 24,
- "_73": 99,
- "_75": 304
+ "_23": 303,
+ "_70": 34,
+ "_72": 101,
+ "_74": 305
},
- [],
- "1887864177",
+ [
+ 306,
+ 308
+ ],
{
- "_13": 305,
- "_71": 24,
- "_73": 99,
- "_75": 307
+ "_77": 307,
+ "_79": 111,
+ "_81": 101
},
- [],
- "1889094680",
+ "2856133350",
{
- "_13": 308,
- "_71": 24,
- "_73": 99,
- "_75": 310
+ "_77": 309,
+ "_79": 111,
+ "_81": 101
},
- [],
- "1902899872",
+ "3214154973",
+ "3645668434",
{
- "_13": 311,
- "_71": 24,
- "_73": 99,
- "_75": 313
+ "_23": 310,
+ "_70": 71,
+ "_72": 312,
+ "_74": 313
},
+ "1CWwhBKuOiRAC9V8HRBJRU",
[
314
],
{
- "_82": 301,
- "_84": 118,
- "_86": 99
+ "_77": 315,
+ "_79": 80,
+ "_81": 159
},
+ "3863445312",
+ "3700195277",
{
- "_13": 106,
- "_71": 72,
- "_73": 107,
- "_75": 316
+ "_23": 316,
+ "_70": 34,
+ "_72": 101,
+ "_74": 318
},
[],
- "2000076788",
{
- "_13": 317,
- "_71": 24,
- "_73": 99,
- "_75": 319
+ "_23": 211,
+ "_70": 71,
+ "_72": 212,
+ "_74": 320
},
[],
- "2053937752",
+ "3802510433",
{
- "_13": 320,
- "_71": 24,
- "_73": 322,
- "_75": 323
+ "_23": 321,
+ "_70": 71,
+ "_72": 323,
+ "_74": 324
},
- "2PLQzvwrGPxACRwaEcKbIh",
+ "6FLEMI2GBFmVWGEsEGyASD:100.00:5",
[],
- "2056761365",
+ "3822950319",
{
- "_13": 324,
- "_71": 24,
- "_73": 99,
- "_75": 326
+ "_23": 325,
+ "_70": 71,
+ "_72": 327,
+ "_74": 328
},
+ "2CBvDiHjHIK9xlL4ItyXmK:100.00:1",
[],
- "2067628123",
+ "3838495619",
{
- "_13": 327,
- "_71": 24,
- "_73": 329,
- "_75": 330
+ "_23": 329,
+ "_70": 34,
+ "_72": 101,
+ "_74": 331
},
- "3CuBjEMi97tY3EGnq0NA9s",
[],
- "2091463435",
{
- "_13": 331,
- "_71": 72,
- "_73": 333,
- "_75": 334
+ "_23": 104,
+ "_70": 71,
+ "_72": 105,
+ "_74": 333
},
- "5t78GUS68KOn3bHZd8z7ii:100.00:1",
[],
- "2153043779",
+ "3940160259",
{
- "_13": 335,
- "_71": 72,
- "_73": 337,
- "_75": 338
+ "_23": 334,
+ "_70": 71,
+ "_72": 336,
+ "_74": 337
},
- "DamiTYVoTv9Z9jRFOT5iC",
- [],
- "2173548801",
- {
- "_13": 339,
- "_71": 72,
- "_73": 341,
- "_75": 342
+ "2mmE1EmtOqtbWemO2wGuMO:100.00:4",
+ [
+ 338,
+ 340,
+ 342
+ ],
+ {
+ "_77": 339,
+ "_79": 111,
+ "_81": 101
+ },
+ "4180060165",
+ {
+ "_77": 341,
+ "_79": 111,
+ "_81": 101
+ },
+ "3765213438",
+ {
+ "_77": 343,
+ "_79": 80,
+ "_81": 344
+ },
+ "4078831437",
+ "6bgwAROz7oF1OcKWxH4vHm:100.00:6",
+ "3954884439",
+ {
+ "_23": 345,
+ "_70": 71,
+ "_72": 347,
+ "_74": 348
+ },
+ "5rqjCf7T9KpJtLnaE73Kum:100.00:4",
+ [],
+ {
+ "_23": 343,
+ "_70": 71,
+ "_72": 344,
+ "_74": 350
+ },
+ [
+ 351,
+ 352
+ ],
+ {
+ "_77": 339,
+ "_79": 111,
+ "_81": 101
+ },
+ {
+ "_77": 341,
+ "_79": 111,
+ "_81": 101
+ },
+ "4207619515",
+ {
+ "_23": 353,
+ "_70": 34,
+ "_72": 101,
+ "_74": 355
+ },
+ [],
+ "4226692983",
+ {
+ "_23": 356,
+ "_70": 71,
+ "_72": 358,
+ "_74": 359
+ },
+ "6sEu91zwlBGSKOqFiNpGlA:100.00:2",
+ [],
+ "dynamic_configs",
+ {
+ "_362": 363,
+ "_375": 376,
+ "_381": 382,
+ "_385": 386,
+ "_397": 398,
+ "_403": 404,
+ "_421": 422,
+ "_426": 427,
+ "_431": 432,
+ "_436": 437,
+ "_440": 441,
+ "_446": 447
+ },
+ "357305500",
+ {
+ "_23": 362,
+ "_70": 364,
+ "_366": 367,
+ "_72": 367,
+ "_368": 34,
+ "_74": 369,
+ "_373": 34,
+ "_374": 34
+ },
+ {
+ "_365": 71
+ },
+ "can_see_upsell",
+ "group",
+ "launchedGroup",
+ "is_device_based",
+ [
+ 370
+ ],
+ {
+ "_77": 371,
+ "_79": 80,
+ "_81": 372
+ },
+ "317829697",
+ "598ORr5O5ZardhhzMhz8k0:100.00:11",
+ "is_user_in_experiment",
+ "is_experiment_active",
+ "954359911",
+ {
+ "_23": 375,
+ "_70": 377,
+ "_366": 379,
+ "_72": 379,
+ "_368": 34,
+ "_74": 380,
+ "_373": 71,
+ "_374": 71
+ },
+ {
+ "_378": 34
+ },
+ "enabled",
+ "5zN2l0bhNBO2gpivWHXwRY",
+ [],
+ "1001765573",
+ {
+ "_23": 381,
+ "_70": 383,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 384
+ },
+ {},
+ [],
+ "1146308370",
+ {
+ "_23": 385,
+ "_70": 387,
+ "_366": 389,
+ "_72": 389,
+ "_368": 34,
+ "_74": 390,
+ "_373": 71,
+ "_374": 71
+ },
+ {
+ "_388": 71
+ },
+ "enable-copy-and-open",
+ "4jQR01pTnwmjITqDD8PD2s",
+ [
+ 391,
+ 394
+ ],
+ {
+ "_77": 392,
+ "_79": 80,
+ "_81": 393
+ },
+ "303767167",
+ "4kquVSCZpyFb5Sqki2BagX:100.00:6",
+ {
+ "_77": 395,
+ "_79": 80,
+ "_81": 396
+ },
+ "3284359640",
+ "1E2e7sRUWkvJybjXfbiuoB",
+ "1165680819",
+ {
+ "_23": 397,
+ "_70": 399,
+ "_366": 401,
+ "_72": 401,
+ "_368": 34,
+ "_74": 402,
+ "_373": 71,
+ "_374": 71
+ },
+ {
+ "_400": 71
+ },
+ "show_new_banner",
+ "VVjatl8N5mxurs3Cje5TV",
+ [],
+ "1967546325",
+ {
+ "_23": 403,
+ "_70": 405,
+ "_366": 418,
+ "_72": 418,
+ "_368": 34,
+ "_74": 419
+ },
+ {
+ "_406": 71,
+ "_407": 71,
+ "_408": 34,
+ "_409": 34,
+ "_410": 71,
+ "_411": 71,
+ "_412": 413,
+ "_414": 413,
+ "_415": 416,
+ "_417": 71
+ },
+ "gdrivePicker",
+ "o365Picker",
+ "gdriveLink",
+ "o365Link",
+ "o365PersonalLink",
+ "o365BusinessLink",
+ "gdrivePercentage",
+ 100,
+ "o365Percentage",
+ "loadTestPercentage",
+ 0,
+ "showWorkspaceSettings",
+ "2bcszlc7CFHdfdCdq7jXNb:100.00:5",
+ [
+ 420
+ ],
+ {
+ "_77": 307,
+ "_79": 111,
+ "_81": 101
+ },
+ "2043237793",
+ {
+ "_23": 421,
+ "_70": 423,
+ "_366": 367,
+ "_72": 367,
+ "_368": 34,
+ "_74": 425,
+ "_373": 34,
+ "_374": 34
+ },
+ {
+ "_424": 70
+ },
+ "bucket",
+ [],
+ "2513291161",
+ {
+ "_23": 426,
+ "_70": 428,
+ "_366": 429,
+ "_72": 429,
+ "_368": 34,
+ "_74": 430,
+ "_373": 71,
+ "_374": 71
+ },
+ {
+ "_378": 34
+ },
+ "2FTh6vlZcd8ha1OXcdnD3J",
+ [],
+ "3159301283",
+ {
+ "_23": 431,
+ "_70": 433,
+ "_366": 434,
+ "_72": 434,
+ "_368": 34,
+ "_74": 435,
+ "_373": 71,
+ "_374": 71
+ },
+ {
+ "_378": 71
+ },
+ "3Cce6z1hcoF2UBYwyupFck",
+ [],
+ "3217984440",
+ {
+ "_23": 436,
+ "_70": 438,
+ "_366": 367,
+ "_72": 367,
+ "_368": 34,
+ "_74": 439,
+ "_373": 34,
+ "_374": 34
+ },
+ {
+ "_378": 71
+ },
+ [],
+ "3230069703",
+ {
+ "_23": 440,
+ "_70": 442,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 445
+ },
+ {
+ "_443": 444
+ },
+ "expirySeconds",
+ 15,
+ [],
+ "4198227845",
+ {
+ "_23": 446,
+ "_70": 448,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 455
+ },
+ {
+ "_449": 34,
+ "_450": 34,
+ "_451": 34,
+ "_452": 34,
+ "_453": 34,
+ "_454": 34
+ },
+ "enabled_for_platform_override",
+ "enabled_for_platform_new",
+ "enabled_for_platform_existing",
+ "enabled_for_chat_override",
+ "enabled_for_chat_new",
+ "enabled_for_chat_existing",
+ [],
+ "layer_configs",
+ {
+ "_458": 459,
+ "_482": 483,
+ "_487": 488,
+ "_493": 494,
+ "_505": 506,
+ "_511": 512,
+ "_516": 517,
+ "_527": 528,
+ "_561": 562,
+ "_568": 569,
+ "_581": 582,
+ "_587": 588,
+ "_593": 594,
+ "_602": 603,
+ "_617": 618,
+ "_636": 637,
+ "_653": 654,
+ "_666": 667,
+ "_675": 676,
+ "_685": 686,
+ "_696": 697,
+ "_708": 709,
+ "_715": 716,
+ "_729": 730,
+ "_737": 738,
+ "_747": 748,
+ "_756": 757,
+ "_762": 763,
+ "_768": 769,
+ "_802": 803,
+ "_818": 819,
+ "_825": 826,
+ "_832": 833
+ },
+ "16152997",
+ {
+ "_23": 458,
+ "_70": 460,
+ "_366": 471,
+ "_72": 471,
+ "_368": 34,
+ "_74": 472,
+ "_476": 477,
+ "_478": 479,
+ "_374": 34,
+ "_373": 34,
+ "_480": 481
+ },
+ {
+ "_461": 71,
+ "_462": 34,
+ "_463": 71,
+ "_464": 465,
+ "_466": 465,
+ "_467": 416,
+ "_468": 34,
+ "_469": 71,
+ "_470": 34
+ },
+ "show_preview_when_collapsed",
+ "expand_by_default",
+ "is_enabled",
+ "summarizer_system_prompt",
+ "",
+ "summarizer_chunk_template",
+ "summarizer_chunk_char_limit",
+ "enable_o3_mini_retrieval",
+ "override_o3_mini_to_high",
+ "enable_reason_by_default",
+ "6DaNqHbUdaQZCJTtuXMn3l:override",
+ [
+ 473
+ ],
+ {
+ "_77": 474,
+ "_79": 80,
+ "_81": 475
+ },
+ "747145983",
+ "1yBei0bniPE2f1TkI3MLWa",
+ "explicit_parameters",
+ [
+ 461,
+ 462,
+ 463
+ ],
+ "allocated_experiment_name",
+ "1630255509",
+ "undelegated_secondary_exposures",
+ [
+ 473
+ ],
+ "40440673",
+ {
+ "_23": 482,
+ "_70": 484,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 485,
+ "_476": 486,
+ "_480": 485
+ },
+ {},
+ [],
+ [],
+ "51287004",
+ {
+ "_23": 487,
+ "_70": 489,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 491,
+ "_476": 492,
+ "_480": 491
+ },
+ {
+ "_490": 71
+ },
+ "enable",
+ [],
+ [],
+ "183390215",
+ {
+ "_23": 493,
+ "_70": 495,
+ "_366": 498,
+ "_72": 498,
+ "_368": 71,
+ "_74": 499,
+ "_476": 502,
+ "_478": 503,
+ "_374": 71,
+ "_373": 34,
+ "_480": 504
+ },
+ {
+ "_496": 34,
+ "_497": 34
+ },
+ "signup_allow_phone",
+ "in_phone_signup_holdout",
+ "targetingGate",
+ [
+ 500
+ ],
+ {
+ "_77": 501,
+ "_79": 111,
+ "_81": 101
+ },
+ "3874938189",
+ [
+ 496,
+ 497
+ ],
+ "4005636946",
+ [],
+ "190694971",
+ {
+ "_23": 505,
+ "_70": 507,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 509,
+ "_476": 510,
+ "_480": 509
+ },
+ {
+ "_508": 34
+ },
+ "show_nux",
+ [],
+ [],
+ "229662723",
+ {
+ "_23": 511,
+ "_70": 513,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 514,
+ "_476": 515,
+ "_480": 514
+ },
+ {},
+ [],
+ [],
+ "387752763",
+ {
+ "_23": 516,
+ "_70": 518,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 521,
+ "_476": 526,
+ "_480": 521
+ },
+ {
+ "_519": 71,
+ "_520": 71
+ },
+ "enable_slash_commands",
+ "enable_rich_text_composer",
+ [
+ 522,
+ 523,
+ 524
+ ],
+ {
+ "_77": 107,
+ "_79": 80,
+ "_81": 108
+ },
+ {
+ "_77": 110,
+ "_79": 111,
+ "_81": 112
+ },
+ {
+ "_77": 525,
+ "_79": 111,
+ "_81": 101
+ },
+ "1410082514",
+ [],
+ "468168202",
+ {
+ "_23": 527,
+ "_70": 529,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 557,
+ "_476": 560,
+ "_480": 557
+ },
+ {
+ "_530": 71,
+ "_531": 34,
+ "_532": 71,
+ "_533": 71,
+ "_534": 34,
+ "_535": 34,
+ "_536": 34,
+ "_537": 34,
+ "_538": 34,
+ "_539": 34,
+ "_540": 34,
+ "_541": 34,
+ "_542": 34,
+ "_543": 34,
+ "_544": 71,
+ "_545": 71,
+ "_546": 34,
+ "_547": 71,
+ "_548": 71,
+ "_549": 550,
+ "_551": 552,
+ "_553": 34,
+ "_554": 555,
+ "_556": 34
+ },
+ "is_team_enabled",
+ "is_yearly_plus_subscription_enabled",
+ "is_split_between_personal_and_business_enabled",
+ "is_modal_fullscreen",
+ "is_v2_toggle_labels_enabled",
+ "is_bw",
+ "is_produce_colors",
+ "is_produce_color_scheme",
+ "is_mobile_web_toggle_enabled",
+ "is_enterprise_enabled",
+ "is_produce_text",
+ "is_optimized_checkout",
+ "is_save_stripe_payment_info_enabled",
+ "is_auto_save_stripe_payment_info_enabled",
+ "does_manage_my_subscription_link_take_user_to_subscription_settings",
+ "should_open_cancellation_survey_after_canceling",
+ "should_cancel_button_take_user_to_stripe",
+ "should_show_manage_my_subscription_link",
+ "is_stripe_manage_subscription_link_enabled",
+ "cancellation_modal_cancel_button_color",
+ "danger",
+ "cancellation_modal_go_back_button_color",
+ "secondary",
+ "should_show_cp",
+ "cp_eligibility_months",
+ 3,
+ "should_offer_paypal_when_eligible",
+ [
+ 558
+ ],
+ {
+ "_77": 559,
+ "_79": 111,
+ "_81": 101
+ },
+ "1847092144",
+ [],
+ "668322707",
+ {
+ "_23": 561,
+ "_70": 563,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 566,
+ "_476": 567,
+ "_480": 566
+ },
+ {
+ "_564": 71,
+ "_565": 71
+ },
+ "show_citations_with_title",
+ "use_chip_style_citations",
+ [],
+ [],
+ "871635014",
+ {
+ "_23": 568,
+ "_70": 570,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 579,
+ "_476": 580,
+ "_480": 579
+ },
+ {
+ "_571": 34,
+ "_572": 71,
+ "_573": 34,
+ "_574": 575,
+ "_576": 101,
+ "_577": 34,
+ "_578": 34
+ },
+ "snowflake_composer_entry_point",
+ "use_broad_rate_limit_language",
+ "voice_holdout",
+ "krisp_noise_filter",
+ "none",
+ "voice_entry_point_style",
+ "show_label_on_button",
+ "voice_only",
+ [],
+ [],
+ "1170120107",
+ {
+ "_23": 581,
+ "_70": 583,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 585,
+ "_476": 586,
+ "_480": 585
+ },
+ {
+ "_584": 34
+ },
+ "is_whisper_enabled",
+ [],
+ [],
+ "1238742812",
+ {
+ "_23": 587,
+ "_70": 589,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 591,
+ "_476": 592,
+ "_480": 591
+ },
+ {
+ "_590": 34
+ },
+ "should_enable_zh_tw",
+ [],
+ [],
+ "1320801051",
+ {
+ "_23": 593,
+ "_70": 595,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 600,
+ "_476": 601,
+ "_480": 600
+ },
+ {
+ "_596": 34,
+ "_597": 34,
+ "_598": 71,
+ "_599": 34
+ },
+ "hide_new_at_workspace_section",
+ "hide_section_new_at_workspace",
+ "gpt_discovery_experiment_enabled",
+ "popular_at_my_workspace_enabled",
+ [],
+ [],
+ "1346366956",
+ {
+ "_23": 602,
+ "_70": 604,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 615,
+ "_476": 616,
+ "_480": 615
+ },
+ {
+ "_605": 34,
+ "_606": 607,
+ "_608": 34,
+ "_496": 34,
+ "_609": 34,
+ "_610": 34,
+ "_611": 34,
+ "_612": 34,
+ "_613": 614
+ },
+ "use_email_otp",
+ "signup_cta_copy",
+ "SIGN_UP",
+ "login_allow_phone",
+ "forwardToAuthApi",
+ "use_new_phone_ui",
+ "in_signup_allow_phone_hold_out",
+ "use_formatted_national_number",
+ "continue_with_email_phone_placement",
+ "after_sso",
+ [],
+ [],
+ "1547743984",
+ {
+ "_23": 617,
+ "_70": 619,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 632,
+ "_476": 635,
+ "_480": 632
+ },
+ {
+ "_620": 34,
+ "_621": 34,
+ "_622": 34,
+ "_623": 34,
+ "_624": 34,
+ "_625": 34,
+ "_626": 34,
+ "_627": 71,
+ "_628": 34,
+ "_629": 34,
+ "_630": 71,
+ "_631": 71
+ },
+ "should_simplify_modal",
+ "is_simplified_sharing_modal_enabled",
+ "is_social_share_options_enabled",
+ "is_update_shared_links_enabled",
+ "is_discoverability_toggle_enabled",
+ "show_copylink_state_if_no_updates",
+ "is_continue_enabled",
+ "show_share_button_text",
+ "is_meta_improvements_enabled",
+ "show_share_button_inline",
+ "use_dalle_preview",
+ "in_dalle_preview_exp",
+ [
+ 633
+ ],
+ {
+ "_77": 634,
+ "_79": 111,
+ "_81": 101
+ },
+ "4038001028",
+ [],
+ "1630876919",
+ {
+ "_23": 636,
+ "_70": 638,
+ "_366": 645,
+ "_72": 645,
+ "_368": 34,
+ "_74": 646,
+ "_476": 650,
+ "_478": 651,
+ "_374": 71,
+ "_373": 71,
+ "_480": 652
+ },
+ {
+ "_639": 71,
+ "_640": 71,
+ "_641": 71,
+ "_642": 71,
+ "_643": 34,
+ "_644": 71
+ },
+ "enable_indexing",
+ "backfill_completed",
+ "enable_local_indexing",
+ "enable_ux",
+ "enable_us_rollout",
+ "enable_ux_rollout",
+ "31UyKaWB8PZhFswQt29NlZ",
+ [
+ 647
+ ],
+ {
+ "_77": 648,
+ "_79": 80,
+ "_81": 649
+ },
+ "2372319800",
+ "4NZS9cdXgw2uEnVQCdyNMH:100.00:30",
+ [
+ 639,
+ 641,
+ 640,
+ 642,
+ 644
+ ],
+ "1028722647",
+ [],
+ "1696863369",
+ {
+ "_23": 653,
+ "_70": 655,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 658,
+ "_476": 665,
+ "_480": 658
+ },
+ {
+ "_656": 34,
+ "_657": 34
+ },
+ "has_sidekick_access",
+ "show_nux_banner",
+ [
+ 659,
+ 662
+ ],
+ {
+ "_77": 660,
+ "_79": 111,
+ "_81": 661
+ },
+ "1938289220",
+ "79O8DQPDmTKxnLdAH9loVk",
+ {
+ "_77": 663,
+ "_79": 111,
+ "_81": 664
+ },
+ "2033872549",
+ "7dScmNU0bu2UQuzCNtva50",
+ [],
+ "1697140512",
+ {
+ "_23": 666,
+ "_70": 668,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 670,
+ "_476": 674,
+ "_480": 670
+ },
+ {
+ "_657": 34,
+ "_669": 34
+ },
+ "can_download_sidetron",
+ [
+ 671
+ ],
+ {
+ "_77": 672,
+ "_79": 111,
+ "_81": 673
+ },
+ "2919213474",
+ "6HLlb6nSjJk5ADynHucWgP",
+ [],
+ "1704793646",
+ {
+ "_23": 675,
+ "_70": 677,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 681,
+ "_476": 684,
+ "_480": 681
+ },
+ {
+ "_678": 34,
+ "_679": 680
+ },
+ "greeting_web",
+ "name_char_limit",
+ 20,
+ [
+ 682
+ ],
+ {
+ "_77": 683,
+ "_79": 111,
+ "_81": 101
+ },
+ "331938894",
+ [],
+ "1780960461",
+ {
+ "_23": 685,
+ "_70": 687,
+ "_366": 498,
+ "_72": 498,
+ "_368": 34,
+ "_74": 690,
+ "_476": 693,
+ "_478": 694,
+ "_374": 71,
+ "_373": 34,
+ "_480": 695
+ },
+ {
+ "_688": 34,
+ "_689": 34,
+ "_678": 34
+ },
+ "mobile",
+ "web",
+ [
+ 691
+ ],
+ {
+ "_77": 692,
+ "_79": 111,
+ "_81": 101
+ },
+ "3074373870",
+ [
+ 688,
+ 689
+ ],
+ "2198260923",
+ [],
+ "1914829685",
+ {
+ "_23": 696,
+ "_70": 698,
+ "_366": 700,
+ "_72": 700,
+ "_368": 71,
+ "_74": 701,
+ "_476": 705,
+ "_478": 706,
+ "_374": 34,
+ "_373": 34,
+ "_480": 707
+ },
+ {
+ "_699": 71
+ },
+ "forward_to_authapi",
+ "2RO4BOrVWPrsxRUPYNKPLe:override",
+ [
+ 702
+ ],
+ {
+ "_77": 703,
+ "_79": 80,
+ "_81": 704
+ },
+ "14938527",
+ "3QgLJ91lKIc7VAOjo5SDz7",
+ [
+ 699
+ ],
+ "1856338298",
+ [
+ 702
+ ],
+ "2152104812",
+ {
+ "_23": 708,
+ "_70": 710,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 713,
+ "_476": 714,
+ "_480": 713
+ },
+ {
+ "_711": 34,
+ "_712": 34
+ },
+ "hide_gpts_if_none",
+ "hide_default_gpts",
+ [],
+ [],
+ "3048336830",
+ {
+ "_23": 715,
+ "_70": 717,
+ "_366": 720,
+ "_72": 720,
+ "_368": 34,
+ "_74": 721,
+ "_476": 728,
+ "_480": 721
+ },
+ {
+ "_718": 71,
+ "_719": 34
+ },
+ "is-enabled",
+ "use-rtl-layout",
+ "localization-april Nzc6Xnht6tIVmb48Ejg1T:override",
+ [
+ 722,
+ 725
+ ],
+ {
+ "_77": 723,
+ "_79": 111,
+ "_81": 724
+ },
+ "3922145230",
+ "14DZA2LumaPqAdCo52CrUB",
+ {
+ "_77": 726,
+ "_79": 80,
+ "_81": 727
+ },
+ "3700615661",
+ "66covjaoZoe9pQR4I68jOB",
+ [],
+ "3178812292",
+ {
+ "_23": 729,
+ "_70": 731,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 733,
+ "_476": 736,
+ "_480": 733
+ },
+ {
+ "_732": 34
+ },
+ "use_f_convo",
+ [
+ 734
+ ],
+ {
+ "_77": 735,
+ "_79": 111,
+ "_81": 101
+ },
+ "3799260860",
+ [],
+ "3436367576",
+ {
+ "_23": 737,
+ "_70": 739,
+ "_366": 498,
+ "_72": 498,
+ "_368": 34,
+ "_74": 741,
+ "_476": 744,
+ "_478": 745,
+ "_374": 71,
+ "_373": 34,
+ "_480": 746
+ },
+ {
+ "_639": 34,
+ "_740": 416,
+ "_642": 34,
+ "_641": 34,
+ "_640": 34
+ },
+ "wave",
+ [
+ 742
+ ],
+ {
+ "_77": 743,
+ "_79": 111,
+ "_81": 101
+ },
+ "1221279314",
+ [
+ 639,
+ 740,
+ 640,
+ 642,
+ 641
+ ],
+ "938456440",
+ [],
+ "3471271313",
+ {
+ "_23": 747,
+ "_70": 749,
+ "_366": 751,
+ "_72": 751,
+ "_368": 71,
+ "_74": 752,
+ "_476": 753,
+ "_478": 754,
+ "_374": 34,
+ "_373": 34,
+ "_480": 755
+ },
+ {
+ "_750": 34
+ },
+ "show_upsell",
+ "prestart",
+ [],
+ [
+ 750
+ ],
+ "3021307436",
+ [],
+ "3517133692",
+ {
+ "_23": 756,
+ "_70": 758,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 760,
+ "_476": 761,
+ "_480": 760
+ },
+ {
+ "_759": 34
+ },
+ "is_memory_undo_enabled",
+ [],
+ [],
+ "3590606857",
+ {
+ "_23": 762,
+ "_70": 764,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 766,
+ "_476": 767,
+ "_480": 766
+ },
+ {
+ "_765": 34
+ },
+ "should_offer_paypal",
+ [],
+ [],
+ "3637408529",
+ {
+ "_23": 768,
+ "_70": 770,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 796,
+ "_476": 801,
+ "_480": 796
+ },
+ {
+ "_771": 71,
+ "_772": 34,
+ "_773": 34,
+ "_774": 34,
+ "_775": 776,
+ "_777": 778,
+ "_779": 71,
+ "_780": 71,
+ "_781": 71,
+ "_782": 34,
+ "_783": 71,
+ "_784": 34,
+ "_785": 34,
+ "_786": 71,
+ "_787": 34,
+ "_788": 71,
+ "_789": 555,
+ "_790": 791,
+ "_792": 71,
+ "_793": 794,
+ "_795": 34
+ },
+ "is_anon_chat_enabled",
+ "is_anon_chat_enabled_for_new_users_only",
+ "is_try_it_first_on_login_page_enabled",
+ "is_no_auth_welcome_modal_enabled",
+ "no_auth_soft_rate_limit",
+ 5,
+ "no_auth_hard_rate_limit",
+ 1200,
+ "should_show_no_auth_signup_banner",
+ "is_no_auth_welcome_back_modal_enabled",
+ "is_no_auth_soft_rate_limit_modal_enabled",
+ "is_no_auth_gpt4o_modal_enabled",
+ "is_login_primary_button",
+ "is_desktop_primary_auth_button_on_right",
+ "is_primary_btn_blue",
+ "should_show_disclaimer_only_once_per_device",
+ "is_secondary_banner_button_enabled",
+ "is_secondary_auth_banner_button_enabled",
+ "no_auth_banner_signup_rate_limit",
+ "composer_text",
+ "ASK_ANYTHING",
+ "is_in_composer_text_exp",
+ "no_auth_upsell_wording",
+ "NO_CHANGE",
+ "should_refresh_access_token_error_take_user_to_no_auth",
+ [
+ 797,
+ 799
+ ],
+ {
+ "_77": 798,
+ "_79": 111,
+ "_81": 159
+ },
+ "3238165271",
+ {
+ "_77": 800,
+ "_79": 111,
+ "_81": 159
+ },
+ "2983591614",
+ [],
+ "3647926857",
+ {
+ "_23": 802,
+ "_70": 804,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 812,
+ "_476": 817,
+ "_480": 812
+ },
+ {
+ "_805": 71,
+ "_806": 34,
+ "_807": 808,
+ "_809": 34,
+ "_810": 34,
+ "_811": 575
+ },
+ "unified_architecture",
+ "ux_updates",
+ "inference_debounce_ms",
+ 400,
+ "autoswitcher_enabled",
+ "copy-and-link",
+ "reasoning_slider",
+ [
+ 813,
+ 815
+ ],
+ {
+ "_77": 814,
+ "_79": 111,
+ "_81": 101
+ },
+ "850280859",
+ {
+ "_77": 816,
+ "_79": 111,
+ "_81": 101
+ },
+ "13512905",
+ [],
+ "3711177917",
+ {
+ "_23": 818,
+ "_70": 820,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 823,
+ "_476": 824,
+ "_480": 823
+ },
+ {
+ "_821": 34,
+ "_822": 71
+ },
+ "is_summarizer_default_expanded",
+ "is_inline_summarizer_enabled",
+ [],
+ [],
+ "3972089454",
+ {
+ "_23": 825,
+ "_70": 827,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 830,
+ "_476": 831,
+ "_480": 830
+ },
+ {
+ "_828": 829
+ },
+ "search_scoring_dyconfig_name",
+ "gizmo_search_score_config",
+ [],
+ [],
+ "4211831761",
+ {
+ "_23": 832,
+ "_70": 834,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 835,
+ "_476": 836,
+ "_480": 835
+ },
+ {
+ "_378": 34
+ },
+ [],
+ [],
+ "sdkParams",
+ {},
+ "has_updates",
+ "generator",
+ "statsig-node-sdk",
+ "sdkInfo",
+ {
+ "_844": 845,
+ "_846": 847
+ },
+ "sdkType",
+ "statsig-node",
+ "sdkVersion",
+ "5.26.0",
+ "time",
+ 1742979946815,
+ "evaluated_keys",
+ {
+ "_852": 22,
+ "_853": 854
+ },
+ "userID",
+ "user-chatgpt",
+ {
+ "_855": 856,
+ "_857": 856,
+ "_858": 856,
+ "_859": 43,
+ "_860": 43
+ },
+ "WebAnonymousCookieID",
+ "f10eee0a-3567-4980-ad81-98da119a5c6b",
+ "DeviceId",
+ "stableID",
+ "workspace_id",
+ "account_id",
+ "hash_used",
+ "djb2",
+ {
+ "_852": 22,
+ "_864": 865,
+ "_866": 867,
+ "_60": 61,
+ "_853": 854,
+ "_871": 872
+ },
+ "country",
+ "SG",
+ "custom",
+ {
+ "_868": 45,
+ "_859": 43,
+ "_860": 43,
+ "_869": 71,
+ "_870": 16
+ },
+ "plan_type",
+ "is_paid",
+ "auth_status",
+ "statsigEnvironment",
+ {
+ "_873": 874
+ },
+ "tier",
+ "production",
+ "experimental",
+ {
+ "_66": 877,
+ "_360": 1200,
+ "_456": 1303,
+ "_837": 1828,
+ "_839": 71,
+ "_840": 841,
+ "_842": 1829,
+ "_848": 849,
+ "_850": 1830,
+ "_861": 862,
+ "_19": 1832
+ },
+ {
+ "_703": 878,
+ "_880": 881,
+ "_883": 884,
+ "_887": 888,
+ "_893": 894,
+ "_897": 898,
+ "_901": 902,
+ "_905": 906,
+ "_908": 909,
+ "_912": 913,
+ "_915": 916,
+ "_920": 921,
+ "_924": 925,
+ "_928": 929,
+ "_937": 938,
+ "_941": 942,
+ "_945": 946,
+ "_949": 950,
+ "_953": 954,
+ "_957": 958,
+ "_142": 964,
+ "_966": 967,
+ "_969": 970,
+ "_972": 973,
+ "_975": 976,
+ "_978": 979,
+ "_983": 984,
+ "_987": 988,
+ "_991": 992,
+ "_995": 996,
+ "_998": 999,
+ "_1002": 1003,
+ "_1006": 1007,
+ "_1010": 1011,
+ "_1013": 1014,
+ "_1017": 1018,
+ "_1020": 1021,
+ "_1024": 1025,
+ "_1028": 1029,
+ "_1031": 1032,
+ "_1034": 1035,
+ "_1037": 1038,
+ "_1041": 1042,
+ "_301": 1044,
+ "_1046": 1047,
+ "_1049": 1050,
+ "_1053": 1054,
+ "_1057": 1058,
+ "_1063": 1064,
+ "_1067": 1068,
+ "_1071": 1072,
+ "_1075": 1076,
+ "_1078": 1079,
+ "_1082": 1083,
+ "_1086": 1087,
+ "_1090": 1091,
+ "_1096": 1097,
+ "_1100": 1101,
+ "_1106": 1107,
+ "_1111": 1112,
+ "_1115": 1116,
+ "_1118": 1119,
+ "_1121": 1122,
+ "_1124": 1125,
+ "_1127": 1128,
+ "_1130": 1131,
+ "_1134": 1135,
+ "_1137": 1138,
+ "_1141": 1142,
+ "_303": 1144,
+ "_1148": 1149,
+ "_1152": 1153,
+ "_1156": 1157,
+ "_1159": 1160,
+ "_1162": 1163,
+ "_1166": 1167,
+ "_723": 1170,
+ "_1172": 1173,
+ "_1176": 1177,
+ "_1179": 1180,
+ "_1182": 1183,
+ "_1186": 1187,
+ "_1190": 1191,
+ "_1193": 1194,
+ "_1196": 1197
+ },
+ {
+ "_23": 703,
+ "_70": 71,
+ "_72": 704,
+ "_74": 879
},
- "22nVhoL17eyMvGWgFrDfZe",
[],
- "2192543539",
+ "156153730",
+ {
+ "_23": 880,
+ "_70": 34,
+ "_72": 101,
+ "_74": 882
+ },
+ [],
+ "222560275",
+ {
+ "_23": 883,
+ "_70": 34,
+ "_72": 885,
+ "_74": 886
+ },
+ "5pv2QpbgXNDB0QnBo3LTti:10.00:1",
+ [],
+ "223382091",
{
- "_13": 343,
- "_71": 72,
- "_73": 345,
- "_75": 346
+ "_23": 887,
+ "_70": 34,
+ "_72": 889,
+ "_74": 890
},
- "64aygnSzDTDx2bH5EICbNe:100.00:3",
+ "1fKkxDiVebEKfTj8nDAjHe",
[
- 347
+ 891,
+ 892
],
{
- "_82": 348,
- "_84": 118,
- "_86": 99
+ "_77": 339,
+ "_79": 111,
+ "_81": 101
},
- "4206244917",
- "2232580636",
{
- "_13": 349,
- "_71": 72,
- "_73": 351,
- "_75": 352
+ "_77": 341,
+ "_79": 111,
+ "_81": 101
},
- "4y4Nd0nF0CFawcrQBbm7Mq:100.00:4",
+ "402391964",
+ {
+ "_23": 893,
+ "_70": 34,
+ "_72": 895,
+ "_74": 896
+ },
+ "14sAQaGJDosUKVV0DFZsAL",
[],
- "2281969373",
+ "471233253",
{
- "_13": 353,
- "_71": 72,
- "_73": 355,
- "_75": 356
+ "_23": 897,
+ "_70": 34,
+ "_72": 899,
+ "_74": 900
},
- "6EbVeXErTdGtbchxdqEMTg",
+ "3Yf9H7TxMC122pchwAkoLB",
[],
+ "550432558",
{
- "_13": 301,
- "_71": 24,
- "_73": 99,
- "_75": 358
+ "_23": 901,
+ "_70": 71,
+ "_72": 903,
+ "_74": 904
},
+ "4XbSwfoqBmVtxwz32sweLb",
[],
- "2360528850",
+ "573184874",
{
- "_13": 359,
- "_71": 24,
- "_73": 99,
- "_75": 361
+ "_23": 905,
+ "_70": 34,
+ "_72": 101,
+ "_74": 907
},
[],
- "2379988365",
+ "582612297",
+ {
+ "_23": 908,
+ "_70": 71,
+ "_72": 910,
+ "_74": 911
+ },
+ "5censDsCfS2zQeYtTIui2s:100.00:2",
+ [],
+ "614413305",
+ {
+ "_23": 912,
+ "_70": 34,
+ "_72": 101,
+ "_74": 914
+ },
+ [],
+ "653593316",
{
- "_13": 362,
- "_71": 24,
- "_73": 99,
- "_75": 364
+ "_23": 915,
+ "_70": 71,
+ "_72": 917,
+ "_74": 918
},
+ "GJ8pvorFDIe3Z4WonIr2s",
[
- 365
+ 919
],
{
- "_82": 366,
- "_84": 118,
- "_86": 99
+ "_77": 321,
+ "_79": 80,
+ "_81": 323
},
- "2856133350",
- "2411734826",
+ "706943082",
{
- "_13": 367,
- "_71": 24,
- "_73": 369,
- "_75": 370
+ "_23": 920,
+ "_70": 71,
+ "_72": 922,
+ "_74": 923
},
- "33U1igAQgegRumGc4LbaB",
+ "X9mJLzEwXwKo3p0LSSQIL",
[],
- "2445152477",
+ "727502549",
{
- "_13": 371,
- "_71": 72,
- "_73": 373,
- "_75": 374
+ "_23": 924,
+ "_70": 71,
+ "_72": 926,
+ "_74": 927
},
- "5qtlunRMswJX2JGoF8GikC",
+ "6EYbmM9CyqCRO6U6k3dROA",
[],
- "2494375100",
+ "756982148",
+ {
+ "_23": 928,
+ "_70": 71,
+ "_72": 930,
+ "_74": 931
+ },
+ "3oAWYdzegKPwxhFJjJrGz3",
+ [
+ 932,
+ 934
+ ],
+ {
+ "_77": 933,
+ "_79": 111,
+ "_81": 101
+ },
+ "1456438623",
+ {
+ "_77": 935,
+ "_79": 80,
+ "_81": 936
+ },
+ "3805873235",
+ "5KvGWxgOdialy0Dx9IrqmW:100.00:23",
+ "756982149",
{
- "_13": 375,
- "_71": 24,
- "_73": 99,
- "_75": 377
+ "_23": 937,
+ "_70": 34,
+ "_72": 939,
+ "_74": 940
},
+ "1rXg44we6gmcRqYsiZzfL4:0.00:1",
[],
- "2562876640",
+ "795789557",
{
- "_13": 378,
- "_71": 72,
- "_73": 380,
- "_75": 381
+ "_23": 941,
+ "_70": 34,
+ "_72": 943,
+ "_74": 944
},
- "326czTZeZ0RX0ypR0c5Bb6:100.00:15",
+ "2GzNaY2UIV2RYDjl4grJNG:0.00:1",
[],
- "2569731042",
+ "809056127",
{
- "_13": 382,
- "_71": 24,
- "_73": 99,
- "_75": 384
+ "_23": 945,
+ "_70": 71,
+ "_72": 947,
+ "_74": 948
},
+ "54ufwSF4KjxPi2AIrjbelh",
[],
- "2607001979",
+ "810701024",
{
- "_13": 385,
- "_71": 24,
- "_73": 387,
- "_75": 388
+ "_23": 949,
+ "_70": 71,
+ "_72": 951,
+ "_74": 952
},
- "35jfNEnEKwGsryxcwFhAKz",
+ "6U8ODe5JvFov5zs1rOzJjD",
[],
- "2634628831",
+ "891514942",
{
- "_13": 389,
- "_71": 72,
- "_73": 391,
- "_75": 392
+ "_23": 953,
+ "_70": 34,
+ "_72": 955,
+ "_74": 956
},
- "6LfSag7ByiH0gGcqoFHHBe",
+ "aWUpylPDtFgWWhTxEsfCx",
+ [],
+ "989226566",
+ {
+ "_23": 957,
+ "_70": 71,
+ "_72": 959,
+ "_74": 960
+ },
+ "6yqqYAWKtmfU8A7QGdiky4",
[
- 393,
- 394
+ 961,
+ 962
],
{
- "_82": 181,
- "_84": 118,
- "_86": 99
+ "_77": 137,
+ "_79": 111,
+ "_81": 138
},
{
- "_82": 183,
- "_84": 85,
- "_86": 184
+ "_77": 140,
+ "_79": 80,
+ "_81": 963
},
- "2637918557",
+ "7D8EAif25E3Y8A3zkg6ljp:100.00:2",
{
- "_13": 395,
- "_71": 24,
- "_73": 397,
- "_75": 398
+ "_23": 142,
+ "_70": 71,
+ "_72": 144,
+ "_74": 965
},
- "2XNTwszL419o7DMxzSa0vz",
[],
- "2712556596",
+ "1032814809",
+ {
+ "_23": 966,
+ "_70": 34,
+ "_72": 101,
+ "_74": 968
+ },
+ [],
+ "1064007944",
+ {
+ "_23": 969,
+ "_70": 34,
+ "_72": 101,
+ "_74": 971
+ },
+ [],
+ "1099124727",
+ {
+ "_23": 972,
+ "_70": 34,
+ "_72": 101,
+ "_74": 974
+ },
+ [],
+ "1154002920",
+ {
+ "_23": 975,
+ "_70": 34,
+ "_72": 101,
+ "_74": 977
+ },
+ [],
+ "1166240779",
{
- "_13": 399,
- "_71": 24,
- "_73": 99,
- "_75": 401
+ "_23": 978,
+ "_70": 71,
+ "_72": 980,
+ "_74": 981
},
+ "4UjTXwt2XK975PANdi1Ma6:25.00:5",
[
- 402
+ 982
],
{
- "_82": 403,
- "_84": 118,
- "_86": 99
+ "_77": 309,
+ "_79": 111,
+ "_81": 101
},
- "135448051",
- "2756095923",
+ "1214379119",
{
- "_13": 404,
- "_71": 72,
- "_73": 406,
- "_75": 407
+ "_23": 983,
+ "_70": 34,
+ "_72": 985,
+ "_74": 986
+ },
+ "3Da3vJtBawdpcHFOEpjzZA:10.00:2",
+ [],
+ "1382475798",
+ {
+ "_23": 987,
+ "_70": 71,
+ "_72": 989,
+ "_74": 990
+ },
+ "3P8OsGy1e5tQlR5dsTIWbL",
+ [],
+ "1416952492",
+ {
+ "_23": 991,
+ "_70": 34,
+ "_72": 993,
+ "_74": 994
+ },
+ "2LD82enCtskHL9Vi2hS6Jq",
+ [],
+ "1422501431",
+ {
+ "_23": 995,
+ "_70": 34,
+ "_72": 101,
+ "_74": 997
+ },
+ [],
+ "1439437954",
+ {
+ "_23": 998,
+ "_70": 34,
+ "_72": 1000,
+ "_74": 1001
+ },
+ "11IqDt7xc4mMNiyiSIMy1F:0.00:1",
+ [],
+ "1456513860",
+ {
+ "_23": 1002,
+ "_70": 71,
+ "_72": 1004,
+ "_74": 1005
+ },
+ "jHXkU7q9axp0dXBSyzihH",
+ [],
+ "1468311859",
+ {
+ "_23": 1006,
+ "_70": 34,
+ "_72": 1008,
+ "_74": 1009
+ },
+ "7tfl8ZUhwr5pzErE3ikBej",
+ [],
+ "1542198993",
+ {
+ "_23": 1010,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1012
+ },
+ [],
+ "1656345175",
+ {
+ "_23": 1013,
+ "_70": 71,
+ "_72": 1015,
+ "_74": 1016
+ },
+ "2CwIChuIr7SLQ2CyqRegF2",
+ [],
+ "1741586789",
+ {
+ "_23": 1017,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1019
+ },
+ [],
+ "1760640904",
+ {
+ "_23": 1020,
+ "_70": 71,
+ "_72": 1022,
+ "_74": 1023
+ },
+ "6ezOfLAw7fGQPVjfNsReIy",
+ [],
+ "1830177352",
+ {
+ "_23": 1024,
+ "_70": 71,
+ "_72": 1026,
+ "_74": 1027
+ },
+ "44udGr8tXtB3ZIDHLV3HSF",
+ [],
+ "1839283687",
+ {
+ "_23": 1028,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1030
+ },
+ [],
+ "1860647109",
+ {
+ "_23": 1031,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1033
+ },
+ [],
+ "2000076788",
+ {
+ "_23": 1034,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1036
+ },
+ [],
+ "2053937752",
+ {
+ "_23": 1037,
+ "_70": 34,
+ "_72": 1039,
+ "_74": 1040
+ },
+ "2PLQzvwrGPxACRwaEcKbIh",
+ [],
+ "2056761365",
+ {
+ "_23": 1041,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1043
},
- "6jPp6nW1wQVJbfY0uwQgmv:100.00:1",
[],
- "2813404493",
{
- "_13": 408,
- "_71": 24,
- "_73": 410,
- "_75": 411
+ "_23": 301,
+ "_70": 34,
+ "_72": 302,
+ "_74": 1045
},
- "4jCRuoOxK8tLEGn9ngylXq",
+ [],
+ "2151954125",
+ {
+ "_23": 1046,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1048
+ },
+ [],
+ "2153043779",
+ {
+ "_23": 1049,
+ "_70": 71,
+ "_72": 1051,
+ "_74": 1052
+ },
+ "DamiTYVoTv9Z9jRFOT5iC",
+ [],
+ "2173548801",
+ {
+ "_23": 1053,
+ "_70": 71,
+ "_72": 1055,
+ "_74": 1056
+ },
+ "22nVhoL17eyMvGWgFrDfZe",
+ [],
+ "2192543539",
+ {
+ "_23": 1057,
+ "_70": 71,
+ "_72": 1059,
+ "_74": 1060
+ },
+ "4Ro1m2dj4fUBe4hcP1YKjj:75.00:3",
[
- 412
+ 1061
],
{
- "_82": 413,
- "_84": 118,
- "_86": 414
+ "_77": 1062,
+ "_79": 111,
+ "_81": 101
},
- "1074323483",
- "disabled",
- "2833534668",
+ "4206244917",
+ "2232580636",
{
- "_13": 415,
- "_71": 72,
- "_73": 417,
- "_75": 418
+ "_23": 1063,
+ "_70": 71,
+ "_72": 1065,
+ "_74": 1066
},
- "7uYkibMYlCPSnoWmmYNanm",
+ "4y4Nd0nF0CFawcrQBbm7Mq:100.00:4",
[],
- "2848981774",
+ "2281969373",
{
- "_13": 419,
- "_71": 72,
- "_73": 421,
- "_75": 422
+ "_23": 1067,
+ "_70": 71,
+ "_72": 1069,
+ "_74": 1070
},
- "5dVXUFBOO6D3U79Cr9nBEF:100.00:1",
+ "6EbVeXErTdGtbchxdqEMTg",
[],
- "2912660649",
+ "2290870843",
{
- "_13": 423,
- "_71": 24,
- "_73": 99,
- "_75": 425
+ "_23": 1071,
+ "_70": 71,
+ "_72": 1073,
+ "_74": 1074
},
+ "5dONtElzUeyTTp5FvpWy6",
[],
- "2935021756",
+ "2360528850",
{
- "_13": 426,
- "_71": 24,
- "_73": 99,
- "_75": 428
+ "_23": 1075,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1077
},
[],
- "3058498100",
+ "2379988365",
{
- "_13": 429,
- "_71": 24,
- "_73": 99,
- "_75": 431
+ "_23": 1078,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1080
},
[
- 432
+ 1081
],
{
- "_82": 403,
- "_84": 118,
- "_86": 99
+ "_77": 307,
+ "_79": 111,
+ "_81": 101
},
- "3241763787",
+ "2411734826",
{
- "_13": 433,
- "_71": 24,
- "_73": 99,
- "_75": 435
+ "_23": 1082,
+ "_70": 34,
+ "_72": 1084,
+ "_74": 1085
},
+ "33U1igAQgegRumGc4LbaB:2.00:1",
[],
- "3291247717",
+ "2445152477",
{
- "_13": 436,
- "_71": 24,
- "_73": 99,
- "_75": 438
+ "_23": 1086,
+ "_70": 71,
+ "_72": 1088,
+ "_74": 1089
},
+ "5qtlunRMswJX2JGoF8GikC",
[],
- "3325813340",
+ "2634628831",
{
- "_13": 439,
- "_71": 24,
- "_73": 99,
- "_75": 441
+ "_23": 1090,
+ "_70": 71,
+ "_72": 1092,
+ "_74": 1093
},
+ "6LfSag7ByiH0gGcqoFHHBe",
[
- 442
+ 1094,
+ 1095
],
{
- "_82": 301,
- "_84": 118,
- "_86": 99
+ "_77": 933,
+ "_79": 111,
+ "_81": 101
},
- "3376455464",
{
- "_13": 443,
- "_71": 24,
- "_73": 99,
- "_75": 445
+ "_77": 935,
+ "_79": 80,
+ "_81": 936
+ },
+ "2637918557",
+ {
+ "_23": 1096,
+ "_70": 71,
+ "_72": 1098,
+ "_74": 1099
+ },
+ "2XNTwszL419o7DMxzSa0vz:100.00:1",
+ [],
+ "2712556596",
+ {
+ "_23": 1100,
+ "_70": 71,
+ "_72": 1102,
+ "_74": 1103
+ },
+ "7pPLEbQc7hKT1m7CbondoE",
+ [
+ 1104
+ ],
+ {
+ "_77": 1105,
+ "_79": 111,
+ "_81": 101
+ },
+ "135448051",
+ "2781425969",
+ {
+ "_23": 1106,
+ "_70": 34,
+ "_72": 1108,
+ "_74": 1109
+ },
+ "7BIMlzITwH6mysXL5ILPSw",
+ [
+ 1110
+ ],
+ {
+ "_77": 1105,
+ "_79": 111,
+ "_81": 101
+ },
+ "2833534668",
+ {
+ "_23": 1111,
+ "_70": 71,
+ "_72": 1113,
+ "_74": 1114
+ },
+ "7uYkibMYlCPSnoWmmYNanm",
+ [],
+ "2935021756",
+ {
+ "_23": 1115,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1117
+ },
+ [],
+ "2968810397",
+ {
+ "_23": 1118,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1120
+ },
+ [],
+ "3058498100",
+ {
+ "_23": 1121,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1123
+ },
+ [],
+ "3148583717",
+ {
+ "_23": 1124,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1126
+ },
+ [],
+ "3241763787",
+ {
+ "_23": 1127,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1129
+ },
+ [],
+ "3257646228",
+ {
+ "_23": 1130,
+ "_70": 34,
+ "_72": 1132,
+ "_74": 1133
+ },
+ "3veZ6qhG4zTVvcrwpXXPgi:1.00:4",
+ [],
+ "3291247717",
+ {
+ "_23": 1134,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1136
},
[],
"3435450078",
{
- "_13": 446,
- "_71": 72,
- "_73": 448,
- "_75": 449
+ "_23": 1137,
+ "_70": 71,
+ "_72": 1139,
+ "_74": 1140
},
"2qCdHpFuWOOkibzLRL0zgn",
[],
"3472722167",
{
- "_13": 450,
- "_71": 24,
- "_73": 99,
- "_75": 452
+ "_23": 1141,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1143
+ },
+ [],
+ {
+ "_23": 303,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1145
+ },
+ [
+ 1146,
+ 1147
+ ],
+ {
+ "_77": 307,
+ "_79": 111,
+ "_81": 101
+ },
+ {
+ "_77": 309,
+ "_79": 111,
+ "_81": 101
+ },
+ "3612584454",
+ {
+ "_23": 1148,
+ "_70": 34,
+ "_72": 1150,
+ "_74": 1151
},
+ "4fXx7LNuNnDASdmkzwNxtf",
[],
"3664702598",
{
- "_13": 453,
- "_71": 24,
- "_73": 455,
- "_75": 456
+ "_23": 1152,
+ "_70": 34,
+ "_72": 1154,
+ "_74": 1155
},
"7x9wS41bRDCji9ns8x5Oej",
[],
"3678527908",
{
- "_13": 457,
- "_71": 24,
- "_73": 99,
- "_75": 459
- },
- [],
- "3700195277",
- {
- "_13": 460,
- "_71": 24,
- "_73": 99,
- "_75": 462
+ "_23": 1156,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1158
},
[],
"3728856343",
{
- "_13": 463,
- "_71": 24,
- "_73": 99,
- "_75": 465
- },
- [],
- "3779321121",
- {
- "_13": 466,
- "_71": 24,
- "_73": 468,
- "_75": 469
+ "_23": 1159,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1161
},
- "4pwIwdJTTCm4UQZFwxrODS:10.00:3",
[],
- "3799260860",
+ "3861593998",
{
- "_13": 470,
- "_71": 24,
- "_73": 99,
- "_75": 472
+ "_23": 1162,
+ "_70": 34,
+ "_72": 1164,
+ "_74": 1165
},
+ "5DN2QZNg9iYP45NqvRetnu",
[],
"3910241726",
{
- "_13": 473,
- "_71": 72,
- "_73": 475,
- "_75": 476
+ "_23": 1166,
+ "_70": 71,
+ "_72": 1168,
+ "_74": 1169
},
"1ItyvFbGou4epQp9HviAsm",
[],
- "3922145230",
- {
- "_13": 477,
- "_71": 24,
- "_73": 479,
- "_75": 480
- },
- "14DZA2LumaPqAdCo52CrUB",
- [],
{
- "_13": 126,
- "_71": 72,
- "_73": 127,
- "_75": 482
+ "_23": 723,
+ "_70": 34,
+ "_72": 724,
+ "_74": 1171
},
[],
- "3940160259",
- {
- "_13": 483,
- "_71": 24,
- "_73": 485,
- "_75": 486
- },
- "2mmE1HGyJ0Maz3sFeMxLoS",
- [
- 487,
- 488,
- 489
- ],
- {
- "_82": 117,
- "_84": 118,
- "_86": 99
- },
- {
- "_82": 120,
- "_84": 118,
- "_86": 99
- },
- {
- "_82": 490,
- "_84": 118,
- "_86": 99
- },
- "4078831437",
"3940529303",
{
- "_13": 491,
- "_71": 72,
- "_73": 493,
- "_75": 494
+ "_23": 1172,
+ "_70": 71,
+ "_72": 1174,
+ "_74": 1175
},
"17mkpeWbaWfCeMrpE67FOc",
[],
- "3954884439",
+ "4012051055",
{
- "_13": 495,
- "_71": 72,
- "_73": 497,
- "_75": 498
+ "_23": 1176,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1178
},
- "5rqjCf7T9KpJtLnaE73Kum:100.00:4",
[],
- "3993182790",
+ "4043415092",
{
- "_13": 499,
- "_71": 24,
- "_73": 99,
- "_75": 501
+ "_23": 1179,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1181
},
[],
- "4012051055",
+ "4132051975",
{
- "_13": 502,
- "_71": 24,
- "_73": 99,
- "_75": 504
+ "_23": 1182,
+ "_70": 71,
+ "_72": 1184,
+ "_74": 1185
},
+ "wLBwoUCuuMdnRwa9KkfHI",
[],
"4141006638",
{
- "_13": 505,
- "_71": 24,
- "_73": 507,
- "_75": 508
+ "_23": 1186,
+ "_70": 34,
+ "_72": 1188,
+ "_74": 1189
},
"6v4Q2eufBTFCb2P3fGZwPo",
[],
- "4168663601",
- {
- "_13": 509,
- "_71": 72,
- "_73": 511,
- "_75": 512
- },
- "3TjvSiR2kSXeEdOTF9iYyZ",
- [],
"4192239497",
{
- "_13": 513,
- "_71": 24,
- "_73": 99,
- "_75": 515
+ "_23": 1190,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1192
},
[],
"4206189746",
{
- "_13": 516,
- "_71": 24,
- "_73": 99,
- "_75": 518
- },
- [],
- "4226692983",
- {
- "_13": 519,
- "_71": 72,
- "_73": 521,
- "_75": 522
+ "_23": 1193,
+ "_70": 34,
+ "_72": 101,
+ "_74": 1195
},
- "6sEu91zwlBGSKOqFiNpGlA:100.00:2",
[],
- "4239853523",
+ "4242210007",
{
- "_13": 523,
- "_71": 24,
- "_73": 99,
- "_75": 525
+ "_23": 1196,
+ "_70": 34,
+ "_72": 1198,
+ "_74": 1199
},
+ "5T7B6Qu0S7TF24HzOjoxJl",
[],
- "dynamic_configs",
- {
- "_528": 529,
- "_539": 540,
- "_547": 548,
- "_552": 553,
- "_558": 559,
- "_564": 565,
- "_579": 580,
- "_632": 633,
- "_638": 639,
- "_642": 643,
- "_676": 677,
- "_682": 683,
- "_687": 688,
- "_695": 696
- },
- "357305500",
- {
- "_13": 528,
- "_71": 530,
- "_531": 532,
- "_73": 532,
- "_533": 24,
- "_75": 534,
- "_537": 24,
- "_538": 24
- },
- {},
- "group",
- "targetingGate",
- "is_device_based",
- [
- 535
- ],
{
- "_82": 536,
- "_84": 118,
- "_86": 99
+ "_1201": 1202,
+ "_1209": 1210,
+ "_375": 1214,
+ "_1216": 1217,
+ "_1235": 1236,
+ "_1239": 1240,
+ "_1245": 1246,
+ "_1253": 1254,
+ "_431": 1287,
+ "_440": 1289,
+ "_1291": 1292,
+ "_1297": 1298
},
- "317829697",
- "is_user_in_experiment",
- "is_experiment_active",
"550560761",
{
- "_13": 539,
- "_71": 541,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 546
+ "_23": 1201,
+ "_70": 1203,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1208
},
{
- "_542": 543,
- "_544": 545
+ "_1204": 1205,
+ "_1206": 1207
},
"history_results_limit",
6,
"local_results_limit",
2,
[],
- "1054486462",
- {
- "_13": 547,
- "_71": 549,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 551
- },
- {
- "_550": 24
- },
- "sidebar_enabled",
- [],
- "1165680818",
+ "948081399",
{
- "_13": 552,
- "_71": 554,
- "_531": 556,
- "_73": 556,
- "_533": 24,
- "_75": 557,
- "_537": 72,
- "_538": 72
+ "_23": 1209,
+ "_70": 1211,
+ "_366": 1212,
+ "_72": 1212,
+ "_368": 34,
+ "_74": 1213,
+ "_373": 34,
+ "_374": 71
},
- {
- "_555": 24
- },
- "show_banner",
- "6bTpQafLU9PMzWkCp68hYI",
+ {},
+ "layerAssignment",
[],
- "1535013773",
- {
- "_13": 558,
- "_71": 560,
- "_531": 562,
- "_73": 562,
- "_533": 24,
- "_75": 563,
- "_537": 72,
- "_538": 72
- },
{
- "_561": 72
+ "_23": 375,
+ "_70": 377,
+ "_366": 379,
+ "_72": 379,
+ "_368": 34,
+ "_74": 1215,
+ "_373": 71,
+ "_374": 71
},
- "enabled",
- "1WI6pWkzFT8ZvZudqhvi0J",
[],
"1682643554",
{
- "_13": 564,
- "_71": 566,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 578
+ "_23": 1216,
+ "_70": 1218,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1234
},
{
- "_567": 568
+ "_1219": 1220
},
"school_configurations",
{
- "_569": 570
+ "_1221": 1222,
+ "_1230": 1231
},
"openai_1signup_for_1",
{
- "_571": 572,
- "_573": 574,
- "_575": 576
+ "_1223": 1224,
+ "_1225": 1226,
+ "_1227": 1228
},
"display_name",
"OpenAI",
@@ -1579,219 +3405,112 @@
"students-2025-one-month-free",
"domains",
[
- 577
- ],
- "gmail.com",
- [],
- "1919164330",
- {
- "_13": 579,
- "_71": 581,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 631
- },
- {
- "_567": 582
- },
- {
- "_583": 584,
- "_588": 589,
- "_593": 594,
- "_598": 599,
- "_603": 604,
- "_609": 610,
- "_614": 615,
- "_620": 621,
- "_626": 627
- },
- "oregonstate",
- {
- "_571": 585,
- "_573": 574,
- "_575": 586
- },
- "Oregon State University",
- [
- 587
- ],
- "oregonstate.edu",
- "universityofcentralflorida",
- {
- "_571": 590,
- "_573": 574,
- "_575": 591
- },
- "University of Central Florida",
- [
- 592
- ],
- "ucf.edu",
- "universityofsouthflorida",
- {
- "_571": 595,
- "_573": 574,
- "_575": 596
- },
- "University of South Florida",
- [
- 597
- ],
- "usf.edu",
- "jumbo",
- {
- "_571": 600,
- "_573": 574,
- "_575": 601
- },
- "Tufts University",
- [
- 602
- ],
- "tufts.edu",
- "michiganstate",
- {
- "_571": 605,
- "_573": 606,
- "_575": 607
- },
- "Michigan State",
- "students-2025-three-month-free",
- [
- 608
- ],
- "msu.edu",
- "georgewashington",
- {
- "_571": 611,
- "_573": 606,
- "_575": 612
- },
- "George Washington University",
- [
- 613
- ],
- "gwmail.gwu.edu",
- "westernuniversity",
- {
- "_571": 616,
- "_573": 617,
- "_575": 618
- },
- "Western University",
- "students-2025-one-month-discount",
- [
- 619
+ 1229
],
- "uwo.ca",
- "queensuniversity",
+ "openai.com, mail.openai.com",
+ "australia",
{
- "_571": 622,
- "_573": 623,
- "_575": 624
+ "_1223": 1224,
+ "_1225": 1226,
+ "_1227": 1232
},
- "Queen's University",
- "students-2025-three-month-discount",
[
- 625
+ 1233
],
- "queensu.ca",
- "openai_internal_test",
+ "edu.au",
+ [],
+ "1809520125",
{
- "_571": 572,
- "_573": 623,
- "_575": 628
+ "_23": 1235,
+ "_70": 1237,
+ "_366": 751,
+ "_72": 751,
+ "_368": 71,
+ "_74": 1238,
+ "_373": 34,
+ "_374": 34
},
- [
- 629,
- 630
- ],
- "mail.openai.com",
- "openai.com",
+ {},
[],
- "2043237793",
+ "2181185232",
{
- "_13": 632,
- "_71": 634,
- "_531": 532,
- "_73": 532,
- "_533": 24,
- "_75": 635,
- "_537": 24,
- "_538": 72
+ "_23": 1239,
+ "_70": 1241,
+ "_366": 498,
+ "_72": 498,
+ "_368": 71,
+ "_74": 1242,
+ "_373": 34,
+ "_374": 71
},
{},
[
- 636
+ 1243
],
{
- "_82": 637,
- "_84": 118,
- "_86": 99
+ "_77": 1244,
+ "_79": 111,
+ "_81": 101
},
- "2033346301",
- "2343547499",
+ "1887864177",
+ "2604379743",
{
- "_13": 638,
- "_71": 640,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 641
+ "_23": 1245,
+ "_70": 1247,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1252
},
{
- "_587": 583,
- "_592": 588,
- "_597": 593,
- "_602": 598,
- "_619": 614,
- "_625": 620,
- "_608": 603,
- "_613": 609,
- "_629": 626
+ "_1248": 1249,
+ "_1250": 1251
},
+ "nux_video_url",
+ "https://persistent.oaistatic.com/image-gen/nux.CB3699EE.mov",
+ "nux_image_url",
+ "https://persistent.oaistatic.com/image-gen/nux.CB3699EE.jpg",
[],
"2821602598",
{
- "_13": 642,
- "_71": 644,
- "_531": 99,
- "_73": 99,
- "_533": 72,
- "_75": 675
+ "_23": 1253,
+ "_70": 1255,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 1286
},
{
- "_645": 646
+ "_1256": 1257
},
"Football",
[
- 647
+ 1258
],
{
- "_648": 645,
- "_649": 650
+ "_1259": 1256,
+ "_1260": 1261
},
"title",
"templates",
[
- 651,
- 661,
- 668
+ 1262,
+ 1272,
+ 1279
],
{
- "_652": 653,
- "_654": 655
+ "_1263": 1264,
+ "_1265": 1266
},
"text",
"The [input] are down [input] with [input] left in the [input] quarter. What are their odds they [input]?",
"suggestions",
[
- 656,
- 657,
- 658,
- 659,
- 660
+ 1267,
+ 1268,
+ 1269,
+ 1270,
+ 1271
],
"KC Chiefs",
"27 - 10",
@@ -1799,210 +3518,202 @@
"4th",
"win",
{
- "_652": 662,
- "_654": 663
+ "_1263": 1273,
+ "_1265": 1274
},
"I'm [input], played [input] and work out [input]. Help me train like a [input].",
[
- 664,
- 665,
- 666,
- 667
+ 1275,
+ 1276,
+ 1277,
+ 1278
],
"29",
"football",
"3 days a week",
"NFL running back",
{
- "_652": 669,
- "_654": 670
+ "_1263": 1280,
+ "_1265": 1281
},
"Write me a [input]. Include [input], [input], and [input].",
[
- 671,
- 672,
- 673,
- 674
+ 1282,
+ 1283,
+ 1284,
+ 1285
],
"perfect halftime show song",
"dancing",
"fireworks",
"being super fierce",
[],
- "3230069703",
{
- "_13": 676,
- "_71": 678,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 681
+ "_23": 431,
+ "_70": 433,
+ "_366": 434,
+ "_72": 434,
+ "_368": 34,
+ "_74": 1288,
+ "_373": 71,
+ "_374": 71
},
+ [],
{
- "_679": 680
+ "_23": 440,
+ "_70": 442,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1290
},
- "expirySeconds",
- 15,
[],
"3519108196",
{
- "_13": 682,
- "_71": 684,
- "_531": 685,
- "_73": 685,
- "_533": 24,
- "_75": 686,
- "_537": 24,
- "_538": 24
+ "_23": 1291,
+ "_70": 1293,
+ "_366": 367,
+ "_72": 367,
+ "_368": 34,
+ "_74": 1296,
+ "_373": 34,
+ "_374": 34
},
- {},
- "prestart",
+ {
+ "_1294": 71,
+ "_1295": 71
+ },
+ "show-album-upload",
+ "show-camera-upload",
[],
"3983984123",
{
- "_13": 687,
- "_71": 689,
- "_531": 685,
- "_73": 685,
- "_533": 24,
- "_75": 691,
- "_692": 693,
- "_537": 24,
- "_538": 24,
- "_694": 72
+ "_23": 1297,
+ "_70": 1299,
+ "_366": 751,
+ "_72": 751,
+ "_368": 34,
+ "_74": 1300,
+ "_476": 1301,
+ "_373": 34,
+ "_374": 34,
+ "_1302": 71
},
{
- "_690": 24
+ "_759": 34
},
- "is_memory_undo_enabled",
[],
- "explicit_parameters",
[
- 690
+ 759
],
"is_in_layer",
- "4198227845",
- {
- "_13": 695,
- "_71": 697,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 704
- },
- {
- "_698": 24,
- "_699": 24,
- "_700": 24,
- "_701": 24,
- "_702": 24,
- "_703": 24
- },
- "enabled_for_platform_override",
- "enabled_for_platform_new",
- "enabled_for_platform_existing",
- "enabled_for_chat_override",
- "enabled_for_chat_new",
- "enabled_for_chat_existing",
- [],
- "layer_configs",
{
- "_707": 708,
- "_741": 742,
- "_762": 763,
- "_767": 768,
- "_773": 774,
- "_786": 787,
- "_796": 797,
- "_801": 802,
- "_812": 813,
- "_820": 821,
- "_829": 830,
- "_859": 860,
- "_867": 868,
- "_873": 874,
- "_896": 897,
- "_906": 907,
- "_925": 926,
- "_940": 941,
- "_946": 947,
- "_952": 953,
- "_961": 962,
- "_980": 981,
- "_991": 992,
- "_997": 998,
- "_1016": 1017,
- "_1022": 1023,
- "_1039": 1040,
- "_1052": 1053,
- "_1058": 1059,
- "_1068": 1069,
- "_1074": 1075,
- "_1083": 1084,
- "_1090": 1091,
- "_1105": 1106,
- "_1111": 1112,
- "_1121": 1122,
- "_1137": 1138,
- "_1144": 1145,
- "_1151": 1152,
- "_1157": 1158,
- "_1162": 1163,
- "_1169": 1170,
- "_1180": 1181,
- "_1189": 1190,
- "_1195": 1196,
- "_1213": 1214,
- "_1223": 1224,
- "_1230": 1231,
- "_1235": 1236,
- "_1261": 1262,
- "_1269": 1270,
- "_1275": 1276,
- "_1309": 1310,
- "_1316": 1317,
- "_1329": 1330,
- "_1334": 1335,
- "_1341": 1342,
- "_1346": 1347,
- "_1376": 1377,
- "_1381": 1382
+ "_1304": 1305,
+ "_458": 1344,
+ "_482": 1349,
+ "_487": 1352,
+ "_493": 1355,
+ "_505": 1359,
+ "_511": 1362,
+ "_516": 1365,
+ "_1374": 1375,
+ "_1382": 1383,
+ "_527": 1391,
+ "_1395": 1396,
+ "_1403": 1404,
+ "_1412": 1413,
+ "_1435": 1436,
+ "_1445": 1446,
+ "_568": 1465,
+ "_581": 1468,
+ "_587": 1471,
+ "_593": 1474,
+ "_602": 1477,
+ "_1480": 1481,
+ "_1489": 1490,
+ "_1495": 1496,
+ "_617": 1502,
+ "_1506": 1507,
+ "_636": 1512,
+ "_653": 1517,
+ "_675": 1522,
+ "_685": 1526,
+ "_1530": 1531,
+ "_696": 1536,
+ "_1540": 1541,
+ "_1549": 1550,
+ "_708": 1558,
+ "_1561": 1562,
+ "_1576": 1577,
+ "_1582": 1583,
+ "_1588": 1589,
+ "_1597": 1598,
+ "_1613": 1614,
+ "_1620": 1621,
+ "_1627": 1628,
+ "_1633": 1634,
+ "_1638": 1639,
+ "_715": 1645,
+ "_1652": 1653,
+ "_1659": 1660,
+ "_1665": 1666,
+ "_737": 1683,
+ "_747": 1691,
+ "_756": 1694,
+ "_1697": 1698,
+ "_762": 1724,
+ "_1727": 1728,
+ "_1735": 1736,
+ "_768": 1741,
+ "_818": 1746,
+ "_1749": 1750,
+ "_1756": 1757,
+ "_1771": 1772,
+ "_825": 1776,
+ "_1779": 1780,
+ "_1784": 1785,
+ "_832": 1814,
+ "_1817": 1818
},
"109457",
{
- "_13": 707,
- "_71": 709,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 738,
- "_692": 739,
- "_740": 738
- },
- {
- "_710": 24,
- "_711": 24,
- "_712": 24,
- "_713": 24,
- "_714": 24,
- "_715": 716,
- "_717": 24,
- "_718": 24,
- "_719": 24,
- "_720": 716,
- "_721": 24,
- "_722": 723,
- "_724": 24,
- "_725": 24,
- "_726": 24,
- "_727": 24,
- "_728": 24,
- "_729": 730,
- "_731": 24,
- "_732": 733,
- "_734": 735,
- "_736": 735,
- "_737": 24
+ "_23": 1304,
+ "_70": 1306,
+ "_366": 1334,
+ "_72": 1334,
+ "_368": 34,
+ "_74": 1335,
+ "_476": 1341,
+ "_478": 1342,
+ "_374": 71,
+ "_373": 71,
+ "_480": 1343
+ },
+ {
+ "_1307": 34,
+ "_1308": 34,
+ "_1309": 34,
+ "_1310": 34,
+ "_1311": 34,
+ "_1312": 465,
+ "_1313": 34,
+ "_1314": 34,
+ "_1315": 34,
+ "_1316": 465,
+ "_1317": 34,
+ "_1318": 1319,
+ "_1320": 34,
+ "_1321": 34,
+ "_1322": 34,
+ "_1323": 34,
+ "_1324": 34,
+ "_1325": 465,
+ "_1326": 34,
+ "_1327": 1328,
+ "_1329": 1330,
+ "_1331": 1330,
+ "_1332": 34,
+ "_1333": 34
},
"is_starter_prompt_popular",
"is_starter_prompt_top_performer",
@@ -2010,372 +3721,281 @@
"use_starter_prompt_help_how_to",
"model_talks_first",
"model_talks_first_kind",
- "",
"model_talks_first_augment_system_prompt",
"is_starter_prompt_enabled_for_new_users_only",
"add_system_prompt_during_onboarding",
"onboarding_system_prompt_type",
"enable_new_onboarding_flow",
"new_onboarding_flow_qualified_start_date",
- "2099-11-04T00:00:00Z",
+ "2025-02-28T06:00:00Z",
"personalized_onboarding",
"onboarding_show_custom_instructions_page",
"write_custom_instructions_in_onboarding",
"keep_onboarding_after_dismiss",
"onboarding_dynamic_steps_based_on_main_usage",
"onboarding_style",
- "NONE",
"onboarding_show_followups",
"onboarding_inject_cards_position",
- 3,
+ 9999,
"ONBOARDING_EXAMPLES_PROMPT_ID",
"convo_gen_examples_v2",
"onboarding_gen_examples_prompt_type",
"show_new_chat_nux",
- [],
- [],
- "undelegated_secondary_exposures",
- "16152997",
- {
- "_13": 741,
- "_71": 743,
- "_531": 753,
- "_73": 753,
- "_533": 24,
- "_75": 754,
- "_692": 758,
- "_759": 760,
- "_538": 72,
- "_537": 72,
- "_740": 761
- },
- {
- "_744": 72,
- "_745": 24,
- "_746": 72,
- "_747": 716,
- "_748": 716,
- "_749": 42,
- "_750": 24,
- "_751": 72,
- "_752": 24
- },
- "show_preview_when_collapsed",
- "expand_by_default",
- "is_enabled",
- "summarizer_system_prompt",
- "summarizer_chunk_template",
- "summarizer_chunk_char_limit",
- "enable_o3_mini_retrieval",
- "override_o3_mini_to_high",
- "enable_reason_by_default",
- "1hSTHseZKMxDqmUQocEaTX",
+ "is_guided_onboarding",
+ "M3EE4Hyw83Rv7RjIICK6o",
[
- 755
+ 1336,
+ 1338
],
{
- "_82": 756,
- "_84": 85,
- "_86": 757
+ "_77": 1337,
+ "_79": 111,
+ "_81": 101
+ },
+ "674041001",
+ {
+ "_77": 1339,
+ "_79": 80,
+ "_81": 1340
},
- "634636705",
- "38JmXIEAhtufyAE1NWp5q4:100.00:1",
+ "59687878",
+ "4k3eNmHeryixdsgalKqv0",
[
- 746,
- 745,
- 744,
- 750,
- 751,
- 752
+ 1325,
+ 1318,
+ 1315,
+ 1316,
+ 1320,
+ 1326,
+ 1327,
+ 1331,
+ 1332
+ ],
+ "52701554",
+ [
+ 1336
],
- "allocated_experiment_name",
- "3756684173",
- [],
- "40440673",
{
- "_13": 762,
- "_71": 764,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 765,
- "_692": 766,
- "_740": 765
+ "_23": 458,
+ "_70": 460,
+ "_366": 471,
+ "_72": 471,
+ "_368": 34,
+ "_74": 1345,
+ "_476": 477,
+ "_478": 479,
+ "_374": 34,
+ "_373": 34,
+ "_480": 1348
},
- {},
- [],
- [],
- "51287004",
+ [
+ 1346
+ ],
{
- "_13": 767,
- "_71": 769,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 771,
- "_692": 772,
- "_740": 771
+ "_77": 474,
+ "_79": 80,
+ "_81": 1347
},
+ "1yBehWRiofl3CcNtvNVvk6",
+ [
+ 1346
+ ],
{
- "_770": 72
+ "_23": 482,
+ "_70": 484,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1350,
+ "_476": 1351,
+ "_480": 1350
},
- "enable",
[],
[],
- "183390215",
{
- "_13": 773,
- "_71": 775,
- "_531": 778,
- "_73": 778,
- "_533": 72,
- "_75": 779,
- "_692": 783,
- "_759": 784,
- "_538": 72,
- "_537": 72,
- "_740": 785
+ "_23": 487,
+ "_70": 489,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1353,
+ "_476": 1354,
+ "_480": 1353
},
+ [],
+ [],
{
- "_776": 24,
- "_777": 24
+ "_23": 493,
+ "_70": 495,
+ "_366": 498,
+ "_72": 498,
+ "_368": 71,
+ "_74": 1356,
+ "_476": 502,
+ "_478": 503,
+ "_374": 71,
+ "_373": 34,
+ "_480": 1358
},
- "signup_allow_phone",
- "in_phone_signup_holdout",
- "6jCiq8iq6MBNMsvsrJCUMD",
[
- 780
+ 1357
],
{
- "_82": 781,
- "_84": 85,
- "_86": 782
+ "_77": 501,
+ "_79": 111,
+ "_81": 101
},
- "2694066659",
- "22eNo1SwrDbVQz4YdMv3p1",
- [
- 776
- ],
- "1111393717",
[],
- "190694971",
- {
- "_13": 786,
- "_71": 788,
- "_531": 532,
- "_73": 532,
- "_533": 24,
- "_75": 790,
- "_692": 793,
- "_759": 794,
- "_538": 72,
- "_537": 24,
- "_740": 795
- },
- {
- "_789": 24
- },
- "show_nux",
- [
- 791
- ],
{
- "_82": 792,
- "_84": 118,
- "_86": 99
+ "_23": 505,
+ "_70": 507,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1360,
+ "_476": 1361,
+ "_480": 1360
},
- "6002337",
- [
- 789
- ],
- "1090508242",
[],
- "229662723",
+ [],
{
- "_13": 796,
- "_71": 798,
- "_531": 99,
- "_73": 99,
- "_533": 72,
- "_75": 799,
- "_692": 800,
- "_740": 799
+ "_23": 511,
+ "_70": 513,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 1363,
+ "_476": 1364,
+ "_480": 1363
},
- {},
[],
[],
- "387752763",
{
- "_13": 801,
- "_71": 803,
- "_531": 806,
- "_73": 806,
- "_533": 72,
- "_75": 807,
- "_692": 810,
- "_759": 801,
- "_538": 24,
- "_537": 24,
- "_740": 811
+ "_23": 516,
+ "_70": 1366,
+ "_366": 1367,
+ "_72": 1367,
+ "_368": 71,
+ "_74": 1368,
+ "_476": 1372,
+ "_478": 516,
+ "_374": 34,
+ "_373": 34,
+ "_480": 1373
},
{
- "_804": 72,
- "_805": 72
+ "_519": 71,
+ "_520": 71
},
- "enable_slash_commands",
- "enable_rich_text_composer",
"5UE8g4T56yxUBUYancL7KB:override",
[
- 808,
- 809
+ 1369,
+ 1370
],
{
- "_82": 129,
- "_84": 118,
- "_86": 99
+ "_77": 107,
+ "_79": 111,
+ "_81": 101
},
{
- "_82": 131,
- "_84": 85,
- "_86": 132
+ "_77": 110,
+ "_79": 80,
+ "_81": 1371
},
+ "5hCRKi4Gs5QJkOanmdVvHU:100.00:4",
[
- 805,
- 804
+ 520,
+ 519
],
[
- 808,
- 809
+ 1369,
+ 1370
],
"415386882",
{
- "_13": 812,
- "_71": 814,
- "_531": 99,
- "_73": 99,
- "_533": 72,
- "_75": 816,
- "_692": 819,
- "_740": 816
+ "_23": 1374,
+ "_70": 1376,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 1378,
+ "_476": 1381,
+ "_480": 1378
},
{
- "_815": 24
+ "_1377": 34
},
"is_voice_mode_entry_point_enabled",
[
- 817
- ],
- {
- "_82": 818,
- "_84": 118,
- "_86": 99
- },
- "1644396868",
- [],
- "453021389",
- {
- "_13": 820,
- "_71": 822,
- "_531": 99,
- "_73": 99,
- "_533": 72,
- "_75": 825,
- "_692": 828,
- "_740": 825
- },
- {
- "_823": 24,
- "_824": 24
- },
- "enable-block-animations",
- "enable-word-animations",
- [
- 826
+ 1379
],
- {
- "_82": 827,
- "_84": 118,
- "_86": 99
- },
- "3016192915",
- [],
- "468168202",
- {
- "_13": 829,
- "_71": 831,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 857,
- "_692": 858,
- "_740": 857
- },
- {
- "_832": 72,
- "_833": 24,
- "_834": 72,
- "_835": 72,
- "_836": 24,
- "_837": 24,
- "_838": 24,
- "_839": 24,
- "_840": 24,
- "_841": 24,
- "_842": 24,
- "_843": 24,
- "_844": 24,
- "_845": 24,
- "_846": 72,
- "_847": 72,
- "_848": 24,
- "_849": 72,
- "_850": 72,
- "_851": 852,
- "_853": 854,
- "_855": 24,
- "_856": 733
- },
- "is_team_enabled",
- "is_yearly_plus_subscription_enabled",
- "is_split_between_personal_and_business_enabled",
- "is_modal_fullscreen",
- "is_v2_toggle_labels_enabled",
- "is_bw",
- "is_produce_colors",
- "is_produce_color_scheme",
- "is_mobile_web_toggle_enabled",
- "is_enterprise_enabled",
- "is_produce_text",
- "is_optimized_checkout",
- "is_save_stripe_payment_info_enabled",
- "is_auto_save_stripe_payment_info_enabled",
- "does_manage_my_subscription_link_take_user_to_subscription_settings",
- "should_open_cancellation_survey_after_canceling",
- "should_cancel_button_take_user_to_stripe",
- "should_show_manage_my_subscription_link",
- "is_stripe_manage_subscription_link_enabled",
- "cancellation_modal_cancel_button_color",
- "danger",
- "cancellation_modal_go_back_button_color",
- "secondary",
- "should_show_cp",
- "cp_eligibility_months",
+ {
+ "_77": 1380,
+ "_79": 111,
+ "_81": 101
+ },
+ "1644396868",
+ [],
+ "453021389",
+ {
+ "_23": 1382,
+ "_70": 1384,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 1387,
+ "_476": 1390,
+ "_480": 1387
+ },
+ {
+ "_1385": 34,
+ "_1386": 71
+ },
+ "enable-block-animations",
+ "enable-word-animations",
+ [
+ 1388
+ ],
+ {
+ "_77": 1389,
+ "_79": 111,
+ "_81": 465
+ },
+ "3016192915",
[],
+ {
+ "_23": 527,
+ "_70": 529,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1392,
+ "_476": 1394,
+ "_480": 1392
+ },
+ [
+ 1393
+ ],
+ {
+ "_77": 559,
+ "_79": 111,
+ "_81": 101
+ },
[],
"474444727",
{
- "_13": 859,
- "_71": 861,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 865,
- "_692": 866,
- "_740": 865
+ "_23": 1395,
+ "_70": 1397,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1401,
+ "_476": 1402,
+ "_480": 1401
},
{
- "_862": 72,
- "_863": 864
+ "_1398": 71,
+ "_1399": 1400
},
"show_custom_instr_message",
"custom_instr_message_timeout_duration",
@@ -2384,40 +4004,48 @@
[],
"590557768",
{
- "_13": 867,
- "_71": 869,
- "_531": 99,
- "_73": 99,
- "_533": 72,
- "_75": 871,
- "_692": 872,
- "_740": 871
+ "_23": 1403,
+ "_70": 1405,
+ "_366": 1407,
+ "_72": 1407,
+ "_368": 71,
+ "_74": 1408,
+ "_476": 1409,
+ "_478": 1410,
+ "_374": 71,
+ "_373": 71,
+ "_480": 1411
},
{
- "_870": 24
+ "_1406": 71
},
"should_show_return_home_btn",
+ "MfvDyM5oEZ1TqWS7cE8et",
[],
+ [
+ 1406
+ ],
+ "1022536663",
[],
"660512088",
{
- "_13": 873,
- "_71": 875,
- "_531": 99,
- "_73": 99,
- "_533": 72,
- "_75": 883,
- "_692": 895,
- "_740": 883
+ "_23": 1412,
+ "_70": 1414,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 1422,
+ "_476": 1434,
+ "_480": 1422
},
{
- "_876": 24,
- "_877": 72,
- "_878": 24,
- "_879": 24,
- "_880": 24,
- "_881": 24,
- "_882": 24
+ "_1415": 34,
+ "_1416": 71,
+ "_1417": 34,
+ "_1418": 34,
+ "_1419": 34,
+ "_1420": 34,
+ "_1421": 34
},
"enable_arch_updates",
"include_legacy_sidebar_contents",
@@ -2427,106 +4055,107 @@
"include_scrolling_behavior_update",
"include_revised_sidebar_ia",
[
- 884,
- 886,
- 889,
- 892
+ 1423,
+ 1425,
+ 1428,
+ 1431
],
{
- "_82": 885,
- "_84": 118,
- "_86": 99
+ "_77": 1424,
+ "_79": 111,
+ "_81": 101
},
"2558701922",
{
- "_82": 887,
- "_84": 118,
- "_86": 888
+ "_77": 1426,
+ "_79": 111,
+ "_81": 1427
},
"735930678",
"6nGV45RQYtcIGTbPzppBhS",
{
- "_82": 890,
- "_84": 118,
- "_86": 891
+ "_77": 1429,
+ "_79": 111,
+ "_81": 1430
},
"3011415004",
"7pUMK6uci7sslAj8bP7VEA",
{
- "_82": 893,
- "_84": 118,
- "_86": 894
+ "_77": 1432,
+ "_79": 111,
+ "_81": 1433
},
"854062205",
"66y6sNojVqOdoNf0CX0JYC",
[],
"685344542",
{
- "_13": 896,
- "_71": 898,
- "_531": 900,
- "_73": 900,
- "_533": 24,
- "_75": 901,
- "_692": 903,
- "_759": 904,
- "_538": 24,
- "_537": 24,
- "_740": 905
+ "_23": 1435,
+ "_70": 1437,
+ "_366": 1439,
+ "_72": 1439,
+ "_368": 34,
+ "_74": 1440,
+ "_476": 1442,
+ "_478": 1443,
+ "_374": 34,
+ "_373": 34,
+ "_480": 1444
},
{
- "_899": 24,
- "_841": 72
+ "_1438": 34,
+ "_539": 71
},
"is_mobile_enterprise_enabled",
"3INu3qkV6QoN42TYoP3gja:override",
[
- 902
+ 1441
],
{
- "_82": 213,
- "_84": 85,
- "_86": 215
+ "_77": 142,
+ "_79": 80,
+ "_81": 144
},
[
- 841
+ 539
],
"1388643772",
[
- 902
+ 1441
],
"717266490",
{
- "_13": 906,
- "_71": 908,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 923,
- "_692": 924,
- "_740": 923
- },
- {
- "_909": 72,
- "_910": 72,
- "_911": 72,
- "_722": 723,
- "_721": 24,
- "_912": 24,
- "_724": 24,
- "_727": 24,
- "_726": 24,
- "_913": 42,
- "_914": 24,
- "_725": 24,
- "_915": 24,
- "_916": 72,
- "_917": 24,
- "_918": 919
+ "_23": 1445,
+ "_70": 1447,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1463,
+ "_476": 1464,
+ "_480": 1463
+ },
+ {
+ "_1448": 71,
+ "_1449": 71,
+ "_1450": 71,
+ "_1318": 1451,
+ "_1317": 34,
+ "_1452": 34,
+ "_1320": 34,
+ "_1323": 34,
+ "_1322": 34,
+ "_1453": 416,
+ "_1454": 34,
+ "_1321": 34,
+ "_1455": 34,
+ "_1456": 71,
+ "_1457": 34,
+ "_1458": 1459
},
"optimize_initial_modals",
"defer_memory_modal",
"enable_v2_cleanup",
+ "2099-11-04T00:00:00Z",
"use_plus_rl_during_onboarding",
"plus_rl_during_onboarding_minutes_after_creation",
"enable_mobile_app_upsell_banner",
@@ -2535,490 +4164,392 @@
"onboarding_show_other_option",
"onboarding_flow_tool_steps",
[
- 920,
- 921,
- 922
+ 1460,
+ 1461,
+ 1462
],
"dalle",
"file_upload",
"canvas",
[],
[],
- "871635014",
- {
- "_13": 925,
- "_71": 927,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 936,
- "_692": 939,
- "_740": 936
- },
- {
- "_928": 24,
- "_929": 72,
- "_930": 24,
- "_931": 932,
- "_933": 99,
- "_934": 24,
- "_935": 24
- },
- "snowflake_composer_entry_point",
- "use_broad_rate_limit_language",
- "voice_holdout",
- "krisp_noise_filter",
- "none",
- "voice_entry_point_style",
- "show_label_on_button",
- "voice_only",
- [
- 937
- ],
{
- "_82": 938,
- "_84": 118,
- "_86": 99
+ "_23": 568,
+ "_70": 570,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1466,
+ "_476": 1467,
+ "_480": 1466
},
- "4009046524",
[],
- "1170120107",
- {
- "_13": 940,
- "_71": 942,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 944,
- "_692": 945,
- "_740": 944
- },
+ [],
{
- "_943": 24
+ "_23": 581,
+ "_70": 583,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1469,
+ "_476": 1470,
+ "_480": 1469
},
- "is_whisper_enabled",
[],
[],
- "1238742812",
{
- "_13": 946,
- "_71": 948,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 950,
- "_692": 951,
- "_740": 950
+ "_23": 587,
+ "_70": 589,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1472,
+ "_476": 1473,
+ "_480": 1472
},
- {
- "_949": 24
- },
- "should_enable_zh_tw",
[],
[],
- "1320801051",
{
- "_13": 952,
- "_71": 954,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 959,
- "_692": 960,
- "_740": 959
+ "_23": 593,
+ "_70": 595,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1475,
+ "_476": 1476,
+ "_480": 1475
},
- {
- "_955": 24,
- "_956": 24,
- "_957": 72,
- "_958": 24
- },
- "hide_new_at_workspace_section",
- "hide_section_new_at_workspace",
- "gpt_discovery_experiment_enabled",
- "popular_at_my_workspace_enabled",
[],
[],
- "1346366956",
- {
- "_13": 961,
- "_71": 963,
- "_531": 532,
- "_73": 532,
- "_533": 72,
- "_75": 974,
- "_692": 977,
- "_759": 978,
- "_538": 72,
- "_537": 24,
- "_740": 979
- },
- {
- "_964": 24,
- "_965": 966,
- "_967": 24,
- "_776": 24,
- "_968": 24,
- "_969": 24,
- "_970": 24,
- "_971": 24,
- "_972": 973
- },
- "use_email_otp",
- "signup_cta_copy",
- "SIGN_UP",
- "login_allow_phone",
- "forwardToAuthApi",
- "use_new_phone_ui",
- "in_signup_allow_phone_hold_out",
- "use_formatted_national_number",
- "continue_with_email_phone_placement",
- "after_sso",
- [
- 975
- ],
{
- "_82": 976,
- "_84": 118,
- "_86": 99
+ "_23": 602,
+ "_70": 604,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 1478,
+ "_476": 1479,
+ "_480": 1478
},
- "662147245",
- [
- 969,
- 776,
- 971,
- 972
- ],
- "2491945013",
+ [],
[],
"1358188185",
{
- "_13": 980,
- "_71": 982,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 987,
- "_692": 990,
- "_740": 987
+ "_23": 1480,
+ "_70": 1482,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1485,
+ "_476": 1488,
+ "_480": 1485
},
{
- "_983": 24,
- "_984": 24,
- "_985": 986
+ "_1483": 71,
+ "_1484": 34
},
- "local-cache",
"prefetch-models",
- "local-cache-keys",
- [],
+ "sidebar-default-close",
[
- 988
+ 1486
],
{
- "_82": 989,
- "_84": 118,
- "_86": 99
+ "_77": 1487,
+ "_79": 111,
+ "_81": 101
},
"542939804",
[],
"1358849452",
{
- "_13": 991,
- "_71": 993,
- "_531": 99,
- "_73": 99,
- "_533": 72,
- "_75": 995,
- "_692": 996,
- "_740": 995
+ "_23": 1489,
+ "_70": 1491,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 1493,
+ "_476": 1494,
+ "_480": 1493
},
{
- "_994": 24
+ "_1492": 34
},
"disable-ssr",
[],
[],
- "1547743984",
+ "1368081792",
{
- "_13": 997,
- "_71": 999,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 1012,
- "_692": 1015,
- "_740": 1012
- },
- {
- "_1000": 24,
- "_1001": 24,
- "_1002": 24,
- "_1003": 24,
- "_1004": 24,
- "_1005": 24,
- "_1006": 24,
- "_1007": 72,
- "_1008": 24,
- "_1009": 24,
- "_1010": 72,
- "_1011": 72
+ "_23": 1495,
+ "_70": 1497,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1500,
+ "_476": 1501,
+ "_480": 1500
+ },
+ {
+ "_1498": 34,
+ "_1499": 34
+ },
+ "should_show_o3_mini_high_upsell_banner_free_user_to_plus",
+ "should_show_o3_mini_high_upsell_banner_plus_user",
+ [],
+ [],
+ {
+ "_23": 617,
+ "_70": 619,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1503,
+ "_476": 1505,
+ "_480": 1503
},
- "should_simplify_modal",
- "is_simplified_sharing_modal_enabled",
- "is_social_share_options_enabled",
- "is_update_shared_links_enabled",
- "is_discoverability_toggle_enabled",
- "show_copylink_state_if_no_updates",
- "is_continue_enabled",
- "show_share_button_text",
- "is_meta_improvements_enabled",
- "show_share_button_inline",
- "use_dalle_preview",
- "in_dalle_preview_exp",
[
- 1013
+ 1504
],
{
- "_82": 1014,
- "_84": 118,
- "_86": 99
+ "_77": 634,
+ "_79": 111,
+ "_81": 101
},
- "4038001028",
[],
"1578749296",
{
- "_13": 1016,
- "_71": 1018,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 1020,
- "_692": 1021,
- "_740": 1020
+ "_23": 1506,
+ "_70": 1508,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1510,
+ "_476": 1511,
+ "_480": 1510
},
{
- "_1019": 24
+ "_1509": 34
},
"is_sticky_toggle_off",
[],
[],
- "1630876919",
{
- "_13": 1022,
- "_71": 1024,
- "_531": 1031,
- "_73": 1031,
- "_533": 24,
- "_75": 1032,
- "_692": 1036,
- "_759": 1037,
- "_538": 72,
- "_537": 72,
- "_740": 1038
- },
- {
- "_1025": 72,
- "_1026": 72,
- "_1027": 72,
- "_1028": 72,
- "_1029": 24,
- "_1030": 72
+ "_23": 636,
+ "_70": 1513,
+ "_366": 498,
+ "_72": 498,
+ "_368": 34,
+ "_74": 1514,
+ "_476": 650,
+ "_478": 651,
+ "_374": 71,
+ "_373": 34,
+ "_480": 1516
+ },
+ {
+ "_639": 34,
+ "_640": 34,
+ "_641": 34,
+ "_642": 34,
+ "_643": 34,
+ "_644": 34
},
- "enable_indexing",
- "backfill_completed",
- "enable_local_indexing",
- "enable_ux",
- "enable_us_rollout",
- "enable_ux_rollout",
- "31UyKaWB8PZhFswQt29NlZ",
[
- 1033
+ 1515
],
{
- "_82": 1034,
- "_84": 85,
- "_86": 1035
+ "_77": 648,
+ "_79": 111,
+ "_81": 101
+ },
+ [],
+ {
+ "_23": 653,
+ "_70": 655,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1518,
+ "_476": 1521,
+ "_480": 1518
},
- "2372319800",
- "4NZS9cdXgw2uEnVQCdyNMH:100.00:30",
[
- 1025,
- 1027,
- 1026,
- 1028,
- 1030
+ 1519,
+ 1520
],
- "1028722647",
- [],
- "1696863369",
{
- "_13": 1039,
- "_71": 1041,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 1044,
- "_692": 1051,
- "_740": 1044
+ "_77": 660,
+ "_79": 111,
+ "_81": 661
},
{
- "_1042": 24,
- "_1043": 24
+ "_77": 663,
+ "_79": 111,
+ "_81": 664
+ },
+ [],
+ {
+ "_23": 675,
+ "_70": 677,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1523,
+ "_476": 1525,
+ "_480": 1523
},
- "has_sidekick_access",
- "show_nux_banner",
[
- 1045,
- 1048
+ 1524
],
{
- "_82": 1046,
- "_84": 118,
- "_86": 1047
+ "_77": 683,
+ "_79": 111,
+ "_81": 101
},
- "1938289220",
- "79O8DQPDmTKxnLdAH9loVk",
+ [],
{
- "_82": 1049,
- "_84": 118,
- "_86": 1050
+ "_23": 685,
+ "_70": 687,
+ "_366": 498,
+ "_72": 498,
+ "_368": 34,
+ "_74": 1527,
+ "_476": 693,
+ "_478": 694,
+ "_374": 71,
+ "_373": 34,
+ "_480": 1529
+ },
+ [
+ 1528
+ ],
+ {
+ "_77": 692,
+ "_79": 111,
+ "_81": 101
},
- "2033872549",
- "7dScmNU0bu2UQuzCNtva50",
[],
"1846737571",
{
- "_13": 1052,
- "_71": 1054,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 1056,
- "_692": 1057,
- "_740": 1056
+ "_23": 1530,
+ "_70": 1532,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1534,
+ "_476": 1535,
+ "_480": 1534
},
{
- "_1055": 24
+ "_1533": 34
},
"is_upgrade_button_blue",
[],
[],
- "1914829685",
- {
- "_13": 1058,
- "_71": 1060,
- "_531": 1062,
- "_73": 1062,
- "_533": 72,
- "_75": 1063,
- "_692": 1065,
- "_759": 1066,
- "_538": 24,
- "_537": 24,
- "_740": 1067
- },
{
- "_1061": 72
+ "_23": 696,
+ "_70": 698,
+ "_366": 700,
+ "_72": 700,
+ "_368": 71,
+ "_74": 1537,
+ "_476": 705,
+ "_478": 706,
+ "_374": 34,
+ "_373": 34,
+ "_480": 1539
},
- "forward_to_authapi",
- "2RO4BOrVWPrsxRUPYNKPLe:override",
[
- 1064
+ 1538
],
{
- "_82": 69,
- "_84": 85,
- "_86": 74
+ "_77": 703,
+ "_79": 80,
+ "_81": 704
},
[
- 1061
- ],
- "1856338298",
- [
- 1064
+ 1538
],
"2118136551",
{
- "_13": 1068,
- "_71": 1070,
- "_531": 99,
- "_73": 99,
- "_533": 72,
- "_75": 1072,
- "_692": 1073,
- "_740": 1072
+ "_23": 1540,
+ "_70": 1542,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 1547,
+ "_476": 1548,
+ "_480": 1547
},
{
- "_1071": 24
+ "_1543": 34,
+ "_1544": 34,
+ "_1545": 71,
+ "_1546": 71
},
"show_cookie_banner_if_qualified",
+ "test_dummy",
+ "sign_up_button_has_the_word_free",
+ "show_cookie_banner_auth_login",
[],
[],
"2149763392",
{
- "_13": 1074,
- "_71": 1076,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 1079,
- "_692": 1082,
- "_740": 1079
+ "_23": 1549,
+ "_70": 1551,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1554,
+ "_476": 1557,
+ "_480": 1554
},
{
- "_1077": 24,
- "_1078": 24
+ "_1552": 34,
+ "_1553": 34
},
"show-in-main-composer",
"show-model-picker",
[
- 1080
+ 1555
],
{
- "_82": 1081,
- "_84": 118,
- "_86": 99
+ "_77": 1556,
+ "_79": 111,
+ "_81": 101
},
"4151101559",
[],
- "2152104812",
- {
- "_13": 1083,
- "_71": 1085,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 1088,
- "_692": 1089,
- "_740": 1088
- },
{
- "_1086": 24,
- "_1087": 24
+ "_23": 708,
+ "_70": 710,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1559,
+ "_476": 1560,
+ "_480": 1559
},
- "hide_gpts_if_none",
- "hide_default_gpts",
[],
[],
"2259187367",
{
- "_13": 1090,
- "_71": 1092,
- "_531": 99,
- "_73": 99,
- "_533": 72,
- "_75": 1103,
- "_692": 1104,
- "_740": 1103
+ "_23": 1561,
+ "_70": 1563,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 1574,
+ "_476": 1575,
+ "_480": 1574
},
{
- "_1093": 24,
- "_1094": 1095,
- "_1096": 1097,
- "_1098": 72,
- "_1099": 1100,
- "_1101": 24,
- "_1102": 645
+ "_1564": 34,
+ "_1565": 1566,
+ "_1567": 1568,
+ "_1569": 71,
+ "_1570": 1571,
+ "_1572": 34,
+ "_1573": 1256
},
"enable_nux",
"start_time",
@@ -3032,77 +4563,93 @@
"additional_category",
[],
[],
+ "2505516353",
+ {
+ "_23": 1576,
+ "_70": 1578,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1580,
+ "_476": 1581,
+ "_480": 1580
+ },
+ {
+ "_1579": 71
+ },
+ "android-keyboard-layout",
+ [],
+ [],
"2670443078",
{
- "_13": 1105,
- "_71": 1107,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 1109,
- "_692": 1110,
- "_740": 1109
+ "_23": 1582,
+ "_70": 1584,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1586,
+ "_476": 1587,
+ "_480": 1586
},
{
- "_1108": 72
+ "_1585": 71
},
"is_gating_fix_enabled",
[],
[],
"2716194794",
{
- "_13": 1111,
- "_71": 1113,
- "_531": 532,
- "_73": 532,
- "_533": 24,
- "_75": 1115,
- "_692": 1118,
- "_759": 1119,
- "_538": 72,
- "_537": 24,
- "_740": 1120
+ "_23": 1588,
+ "_70": 1590,
+ "_366": 498,
+ "_72": 498,
+ "_368": 34,
+ "_74": 1591,
+ "_476": 1594,
+ "_478": 1595,
+ "_374": 71,
+ "_373": 34,
+ "_480": 1596
},
{
- "_1114": 24
+ "_750": 34
},
- "show_upsell",
[
- 1116
+ 1592
],
{
- "_82": 1117,
- "_84": 118,
- "_86": 99
+ "_77": 1593,
+ "_79": 111,
+ "_81": 101
},
"2849926832",
[
- 1114
+ 750
],
"2435265903",
[],
"2723963139",
{
- "_13": 1121,
- "_71": 1123,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 1135,
- "_692": 1136,
- "_740": 1135
- },
- {
- "_1124": 24,
- "_1125": 24,
- "_1126": 72,
- "_1127": 72,
- "_1128": 72,
- "_1129": 1130,
- "_1131": 72,
- "_1132": 24,
- "_1133": 24,
- "_1134": 716
+ "_23": 1597,
+ "_70": 1599,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1611,
+ "_476": 1612,
+ "_480": 1611
+ },
+ {
+ "_1600": 34,
+ "_1601": 34,
+ "_1602": 71,
+ "_1603": 71,
+ "_1604": 71,
+ "_1605": 1606,
+ "_1607": 71,
+ "_1608": 34,
+ "_1609": 34,
+ "_1610": 465
},
"is_dynamic_model_enabled",
"show_message_model_info",
@@ -3119,18 +4666,18 @@
[],
"2775247110",
{
- "_13": 1137,
- "_71": 1139,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 1142,
- "_692": 1143,
- "_740": 1142
+ "_23": 1613,
+ "_70": 1615,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1618,
+ "_476": 1619,
+ "_480": 1618
},
{
- "_1140": 24,
- "_1141": 24
+ "_1616": 34,
+ "_1617": 34
},
"show_pro_badge",
"show_plan_type_badge",
@@ -3138,174 +4685,163 @@
[],
"2840731323",
{
- "_13": 1144,
- "_71": 1146,
- "_531": 99,
- "_73": 99,
- "_533": 72,
- "_75": 1148,
- "_692": 1150,
- "_740": 1148
+ "_23": 1620,
+ "_70": 1622,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 1624,
+ "_476": 1626,
+ "_480": 1624
},
{
- "_1006": 72,
- "_1147": 72
+ "_626": 71,
+ "_1623": 71
},
"is_direct_continue_enabled",
[
- 1149
+ 1625
],
{
- "_82": 302,
- "_84": 118,
- "_86": 99
+ "_77": 1031,
+ "_79": 111,
+ "_81": 101
},
[],
"2888142241",
{
- "_13": 1151,
- "_71": 1153,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 1155,
- "_692": 1156,
- "_740": 1155
+ "_23": 1627,
+ "_70": 1629,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1631,
+ "_476": 1632,
+ "_480": 1631
},
{
- "_1154": 72
+ "_1630": 71
},
"is_upgrade_in_settings",
[],
[],
"2932223118",
{
- "_13": 1157,
- "_71": 1159,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 1160,
- "_692": 1161,
- "_740": 1160
+ "_23": 1633,
+ "_70": 1635,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1636,
+ "_476": 1637,
+ "_480": 1636
},
{
- "_840": 72
+ "_538": 71
},
[],
[],
"2972011003",
{
- "_13": 1162,
- "_71": 1164,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 1167,
- "_692": 1168,
- "_740": 1167
+ "_23": 1638,
+ "_70": 1640,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1643,
+ "_476": 1644,
+ "_480": 1643
},
{
- "_1165": 72,
- "_1166": 24
+ "_1641": 71,
+ "_1642": 34
},
"user_context_message_search_tools_default",
"search_tool_holdout_enabled",
[],
[],
- "3048336830",
{
- "_13": 1169,
- "_71": 1171,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 1174,
- "_692": 1179,
- "_740": 1174
+ "_23": 715,
+ "_70": 1646,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1647,
+ "_476": 1651,
+ "_480": 1647
},
{
- "_1172": 72,
- "_1173": 24
+ "_718": 71,
+ "_719": 34
},
- "is-enabled",
- "use-rtl-layout",
[
- 1175,
- 1176
+ 1648,
+ 1649
],
{
- "_82": 477,
- "_84": 118,
- "_86": 479
+ "_77": 723,
+ "_79": 111,
+ "_81": 724
},
{
- "_82": 1177,
- "_84": 118,
- "_86": 1178
+ "_77": 726,
+ "_79": 111,
+ "_81": 1650
},
- "3700615661",
"66covmutTYx82FWVUlZAqF",
[],
"3119715334",
{
- "_13": 1180,
- "_71": 1182,
- "_531": 685,
- "_73": 685,
- "_533": 24,
- "_75": 1185,
- "_692": 1186,
- "_759": 1187,
- "_538": 24,
- "_537": 24,
- "_740": 1188
+ "_23": 1652,
+ "_70": 1654,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1657,
+ "_476": 1658,
+ "_480": 1657
},
{
- "_1183": 24,
- "_1184": 24
+ "_1655": 34,
+ "_1656": 34
},
"should-enable-hojicha",
"should-enable-skip",
[],
- [
- 1184
- ],
- "1556620152",
[],
"3206655705",
{
- "_13": 1189,
- "_71": 1191,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 1193,
- "_692": 1194,
- "_740": 1193
+ "_23": 1659,
+ "_70": 1661,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1663,
+ "_476": 1664,
+ "_480": 1663
},
{
- "_1192": 72
+ "_1662": 71
},
"enable_new_ux",
[],
[],
"3434623093",
{
- "_13": 1195,
- "_71": 1197,
- "_531": 99,
- "_73": 99,
- "_533": 72,
- "_75": 1203,
- "_692": 1212,
- "_740": 1203
+ "_23": 1665,
+ "_70": 1667,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 1673,
+ "_476": 1682,
+ "_480": 1673
},
{
- "_1198": 72,
- "_1199": 1200,
- "_1201": 72,
- "_1202": 72
+ "_1668": 71,
+ "_1669": 1670,
+ "_1671": 71,
+ "_1672": 71
},
"with-attach-upsell",
"labels",
@@ -3313,142 +4849,123 @@
"with-voice-upsell",
"with-reason-upsell",
[
- 1204,
- 1206,
- 1208,
- 1210
+ 1674,
+ 1676,
+ 1678,
+ 1680
],
{
- "_82": 1205,
- "_84": 118,
- "_86": 99
+ "_77": 1675,
+ "_79": 111,
+ "_81": 101
},
"1604099973",
{
- "_82": 1207,
- "_84": 118,
- "_86": 99
+ "_77": 1677,
+ "_79": 111,
+ "_81": 101
},
"470066910",
{
- "_82": 1209,
- "_84": 118,
- "_86": 99
+ "_77": 1679,
+ "_79": 111,
+ "_81": 101
},
"1932133792",
{
- "_82": 1211,
- "_84": 118,
- "_86": 99
+ "_77": 1681,
+ "_79": 111,
+ "_81": 101
},
"4175621034",
[],
- "3436367576",
{
- "_13": 1213,
- "_71": 1215,
- "_531": 532,
- "_73": 532,
- "_533": 24,
- "_75": 1217,
- "_692": 1220,
- "_759": 1221,
- "_538": 72,
- "_537": 24,
- "_740": 1222
- },
- {
- "_1025": 24,
- "_1216": 42,
- "_1028": 24,
- "_1027": 24,
- "_1026": 24
+ "_23": 737,
+ "_70": 1684,
+ "_366": 1686,
+ "_72": 1686,
+ "_368": 34,
+ "_74": 1687,
+ "_476": 744,
+ "_478": 745,
+ "_374": 71,
+ "_373": 71,
+ "_480": 1690
},
- "wave",
- [
- 1218
- ],
{
- "_82": 1219,
- "_84": 118,
- "_86": 99
+ "_639": 71,
+ "_740": 1685,
+ "_642": 71,
+ "_641": 71,
+ "_640": 34
},
- "1221279314",
+ 10,
+ "2FurbaJwwLPFodZHhOZyBO",
[
- 1025,
- 1216,
- 1026,
- 1028,
- 1027
+ 1688
],
- "938456440",
- [],
- "3471271313",
{
- "_13": 1223,
- "_71": 1225,
- "_531": 685,
- "_73": 685,
- "_533": 72,
- "_75": 1226,
- "_692": 1227,
- "_759": 1228,
- "_538": 24,
- "_537": 24,
- "_740": 1229
+ "_77": 743,
+ "_79": 80,
+ "_81": 1689
},
+ "1FzsKf0T7jWwTRKiSrbUld:100.00:4",
+ [],
{
- "_1114": 24
+ "_23": 747,
+ "_70": 749,
+ "_366": 751,
+ "_72": 751,
+ "_368": 71,
+ "_74": 1692,
+ "_476": 753,
+ "_478": 754,
+ "_374": 34,
+ "_373": 34,
+ "_480": 1693
},
[],
- [
- 1114
- ],
- "3021307436",
[],
- "3517133692",
- {
- "_13": 1230,
- "_71": 1232,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 1233,
- "_692": 1234,
- "_740": 1233
- },
{
- "_690": 24
+ "_23": 756,
+ "_70": 758,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1695,
+ "_476": 1696,
+ "_480": 1695
},
[],
[],
"3533083032",
{
- "_13": 1235,
- "_71": 1237,
- "_531": 99,
- "_73": 99,
- "_533": 72,
- "_75": 1259,
- "_692": 1260,
- "_740": 1259
- },
- {
- "_1238": 72,
- "_1239": 72,
- "_1240": 1241,
- "_1242": 24,
- "_1243": 24,
- "_1244": 72,
- "_1245": 24,
- "_1246": 24,
- "_1247": 24,
- "_1248": 24,
- "_1249": 1250,
- "_1251": 1252,
- "_1253": 1254,
- "_1255": 1256,
- "_1257": 1258
+ "_23": 1697,
+ "_70": 1699,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 1722,
+ "_476": 1723,
+ "_480": 1722
+ },
+ {
+ "_1700": 71,
+ "_1701": 71,
+ "_1702": 1703,
+ "_1704": 34,
+ "_1705": 34,
+ "_1706": 71,
+ "_1707": 34,
+ "_1708": 34,
+ "_1709": 34,
+ "_1710": 34,
+ "_1711": 1712,
+ "_1713": 1714,
+ "_1715": 1716,
+ "_1717": 1718,
+ "_1719": 1720,
+ "_1721": 465
},
"enable_new_homepage_anon",
"filter_prompt_by_model",
@@ -3471,22 +4988,35 @@
"INDEX",
"num_completions_to_fetch_from_index",
8,
+ "india_first_prompt",
+ [],
+ [],
+ {
+ "_23": 762,
+ "_70": 764,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1725,
+ "_476": 1726,
+ "_480": 1725
+ },
[],
[],
"3606233934",
{
- "_13": 1261,
- "_71": 1263,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 1267,
- "_692": 1268,
- "_740": 1267
+ "_23": 1727,
+ "_70": 1729,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1733,
+ "_476": 1734,
+ "_480": 1733
},
{
- "_1264": 1265,
- "_1266": 24
+ "_1730": 1731,
+ "_1732": 34
},
"link",
"non",
@@ -3495,244 +5025,205 @@
[],
"3613709240",
{
- "_13": 1269,
- "_71": 1271,
- "_531": 99,
- "_73": 99,
- "_533": 72,
- "_75": 1273,
- "_692": 1274,
- "_740": 1273
+ "_23": 1735,
+ "_70": 1737,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 1739,
+ "_476": 1740,
+ "_480": 1739
},
{
- "_1272": 72
+ "_1738": 71
},
"shouldRefreshAccessToken",
[],
[],
- "3637408529",
{
- "_13": 1275,
- "_71": 1277,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 1303,
- "_692": 1308,
- "_740": 1303
- },
- {
- "_1278": 72,
- "_1279": 24,
- "_1280": 24,
- "_1281": 24,
- "_1282": 1283,
- "_1284": 1285,
- "_1286": 72,
- "_1287": 72,
- "_1288": 72,
- "_1289": 24,
- "_1290": 72,
- "_1291": 24,
- "_1292": 24,
- "_1293": 72,
- "_1294": 24,
- "_1295": 72,
- "_1296": 733,
- "_1297": 1298,
- "_1299": 72,
- "_1300": 1301,
- "_1302": 24
+ "_23": 768,
+ "_70": 770,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1742,
+ "_476": 1745,
+ "_480": 1742
},
- "is_anon_chat_enabled",
- "is_anon_chat_enabled_for_new_users_only",
- "is_try_it_first_on_login_page_enabled",
- "is_no_auth_welcome_modal_enabled",
- "no_auth_soft_rate_limit",
- 5,
- "no_auth_hard_rate_limit",
- 1200,
- "should_show_no_auth_signup_banner",
- "is_no_auth_welcome_back_modal_enabled",
- "is_no_auth_soft_rate_limit_modal_enabled",
- "is_no_auth_gpt4o_modal_enabled",
- "is_login_primary_button",
- "is_desktop_primary_auth_button_on_right",
- "is_primary_btn_blue",
- "should_show_disclaimer_only_once_per_device",
- "is_secondary_banner_button_enabled",
- "is_secondary_auth_banner_button_enabled",
- "no_auth_banner_signup_rate_limit",
- "composer_text",
- "ASK_ANYTHING",
- "is_in_composer_text_exp",
- "no_auth_upsell_wording",
- "NO_CHANGE",
- "should_refresh_access_token_error_take_user_to_no_auth",
[
- 1304,
- 1306
+ 1743,
+ 1744
],
{
- "_82": 1305,
- "_84": 118,
- "_86": 414
+ "_77": 798,
+ "_79": 111,
+ "_81": 159
},
- "3238165271",
{
- "_82": 1307,
- "_84": 118,
- "_86": 414
+ "_77": 800,
+ "_79": 111,
+ "_81": 159
},
- "2983591614",
[],
- "3711177917",
{
- "_13": 1309,
- "_71": 1311,
- "_531": 99,
- "_73": 99,
- "_533": 72,
- "_75": 1314,
- "_692": 1315,
- "_740": 1314
+ "_23": 818,
+ "_70": 820,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 1747,
+ "_476": 1748,
+ "_480": 1747
+ },
+ [],
+ [],
+ "3737571708",
+ {
+ "_23": 1749,
+ "_70": 1751,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 1754,
+ "_476": 1755,
+ "_480": 1754
},
{
- "_1312": 24,
- "_1313": 72
+ "_1752": 1753
},
- "is_summarizer_default_expanded",
- "is_inline_summarizer_enabled",
+ "sidebar_type",
+ "slick",
[],
[],
"3768341700",
{
- "_13": 1316,
- "_71": 1318,
- "_531": 1324,
- "_73": 1324,
- "_533": 24,
- "_75": 1325,
- "_692": 1326,
- "_759": 1327,
- "_538": 72,
- "_537": 72,
- "_740": 1328
- },
- {
- "_842": 24,
- "_1319": 24,
- "_1320": 24,
- "_1321": 72,
- "_1322": 24,
- "_1323": 24
+ "_23": 1756,
+ "_70": 1758,
+ "_366": 1766,
+ "_72": 1766,
+ "_368": 34,
+ "_74": 1767,
+ "_476": 1768,
+ "_478": 1769,
+ "_374": 71,
+ "_373": 71,
+ "_480": 1770
+ },
+ {
+ "_540": 34,
+ "_1759": 34,
+ "_1760": 34,
+ "_1761": 71,
+ "_1762": 71,
+ "_1763": 71,
+ "_1764": 34,
+ "_1765": 34
},
"remove_early_access_upsell",
"is_produce_text_design",
"is_produce_design",
"is_country_selector_enabled",
"is_vat_information_enabled",
- "3v8TWlNAelevRDzhpiuAUB",
+ "is_vat_information_with_amount_enabled",
+ "is_team_pricing_vat_disclaimer_enabled",
+ "65VHFqyIytQJKjgykJm4UQ",
[],
[
- 1323,
- 1322
+ 1763,
+ 1762,
+ 1764,
+ 1765
],
- "3151783455",
+ "2782616826",
[],
"3927927759",
{
- "_13": 1329,
- "_71": 1331,
- "_531": 99,
- "_73": 99,
- "_533": 72,
- "_75": 1332,
- "_692": 1333,
- "_740": 1332
+ "_23": 1771,
+ "_70": 1773,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 1774,
+ "_476": 1775,
+ "_480": 1774
},
{
- "_914": 72
+ "_1454": 71
},
[],
[],
- "3972089454",
- {
- "_13": 1334,
- "_71": 1336,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 1339,
- "_692": 1340,
- "_740": 1339
- },
{
- "_1337": 1338
+ "_23": 825,
+ "_70": 827,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1777,
+ "_476": 1778,
+ "_480": 1777
},
- "search_scoring_dyconfig_name",
- "gizmo_search_score_config",
[],
[],
"4020668365",
{
- "_13": 1341,
- "_71": 1343,
- "_531": 99,
- "_73": 99,
- "_533": 72,
- "_75": 1344,
- "_692": 1345,
- "_740": 1344
+ "_23": 1779,
+ "_70": 1781,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 1782,
+ "_476": 1783,
+ "_480": 1782
},
{
- "_1093": 24,
- "_1094": 1095,
- "_1096": 1097,
- "_1098": 24
+ "_1564": 34,
+ "_1565": 1566,
+ "_1567": 1568,
+ "_1569": 34
},
[],
[],
"4031588851",
{
- "_13": 1346,
- "_71": 1348,
- "_531": 99,
- "_73": 99,
- "_533": 24,
- "_75": 1371,
- "_692": 1375,
- "_740": 1371
- },
- {
- "_1349": 72,
- "_1350": 72,
- "_1351": 72,
- "_1352": 72,
- "_1353": 24,
- "_1354": 24,
- "_1255": 1256,
- "_1355": 1356,
- "_1253": 1254,
- "_1249": 1250,
- "_1240": 1241,
- "_1248": 24,
- "_1357": 24,
- "_1247": 24,
- "_1358": 1359,
- "_1360": 72,
- "_1361": 716,
- "_1244": 72,
- "_1251": 1252,
- "_1362": 24,
- "_1363": 1364,
- "_1257": 1258,
- "_1365": 24,
- "_1366": 24,
- "_1297": 1298,
- "_1367": 24,
- "_1368": 1369,
- "_1370": 72
+ "_23": 1784,
+ "_70": 1786,
+ "_366": 101,
+ "_72": 101,
+ "_368": 34,
+ "_74": 1809,
+ "_476": 1813,
+ "_480": 1809
+ },
+ {
+ "_1787": 71,
+ "_1788": 71,
+ "_1789": 71,
+ "_1790": 71,
+ "_1791": 34,
+ "_1792": 34,
+ "_1717": 1718,
+ "_1793": 1794,
+ "_1715": 1716,
+ "_1711": 1712,
+ "_1702": 1703,
+ "_1710": 34,
+ "_1795": 34,
+ "_1709": 34,
+ "_1796": 1797,
+ "_1798": 71,
+ "_1799": 465,
+ "_1706": 71,
+ "_1713": 1714,
+ "_1800": 34,
+ "_1801": 1802,
+ "_1719": 1720,
+ "_1803": 34,
+ "_1804": 34,
+ "_790": 791,
+ "_1805": 34,
+ "_1806": 1807,
+ "_1808": 71,
+ "_1721": 465
},
"enable_hardcoded_vision_prompts",
"enable_hardcoded_file_document_prompts",
@@ -3757,149 +5248,118 @@
"user_knowledge_memories",
"web-disable",
[
- 1372
+ 1810
],
{
- "_82": 1373,
- "_84": 118,
- "_86": 1374
+ "_77": 1811,
+ "_79": 111,
+ "_81": 1812
},
"4273941502",
"1nGrz4l6GM0LgZvm0pDCtp:2.00:1",
[],
- "4211831761",
{
- "_13": 1376,
- "_71": 1378,
- "_531": 99,
- "_73": 99,
- "_533": 72,
- "_75": 1379,
- "_692": 1380,
- "_740": 1379
- },
- {
- "_561": 24
+ "_23": 832,
+ "_70": 834,
+ "_366": 101,
+ "_72": 101,
+ "_368": 71,
+ "_74": 1815,
+ "_476": 1816,
+ "_480": 1815
},
[],
[],
"4250072504",
{
- "_13": 1381,
- "_71": 1383,
- "_531": 1386,
- "_73": 1386,
- "_533": 24,
- "_75": 1387,
- "_692": 1389,
- "_759": 1390,
- "_538": 24,
- "_537": 24,
- "_740": 1391
+ "_23": 1817,
+ "_70": 1819,
+ "_366": 1822,
+ "_72": 1822,
+ "_368": 34,
+ "_74": 1823,
+ "_476": 1825,
+ "_478": 1826,
+ "_374": 34,
+ "_373": 34,
+ "_480": 1827
},
{
- "_841": 72,
- "_1384": 24,
- "_1385": 24
+ "_539": 71,
+ "_1820": 34,
+ "_1821": 34
},
"is_enterprise_desktop_enabled",
"is_desktop_enterprise_enabled",
"3HX7vpdJsUkuyCUEL4V9cE:override",
[
- 1388
+ 1824
],
{
- "_82": 213,
- "_84": 85,
- "_86": 215
+ "_77": 142,
+ "_79": 80,
+ "_81": 144
},
[
- 841
+ 539
],
"3311396813",
[
- 1388
+ 1824
],
- "sdkParams",
{},
- "has_updates",
- "generator",
- "statsig-node-sdk",
- "sdkInfo",
{
- "_1399": 1400,
- "_1401": 1402
+ "_844": 845,
+ "_846": 847
},
- "sdkType",
- "statsig-node",
- "sdkVersion",
- "5.26.0",
- "time",
- 1741142869938,
- "evaluated_keys",
{
- "_1407": 12,
- "_1408": 1409
+ "_852": 22,
+ "_853": 1831
},
- "userID",
- "user-chatgpt",
{
- "_1410": 1411,
- "_1412": 1411,
- "_1413": 1411
+ "_855": 856,
+ "_857": 856,
+ "_858": 856
},
- "WebAnonymousCookieID",
- "6e9fc67a-0971-43ba-9789-bc5a94c43b9e",
- "DeviceId",
- "stableID",
- "hash_used",
- "djb2",
{
- "_1407": 12,
- "_1417": 60,
- "_1418": 1419,
- "_1408": 1409,
- "_1427": 1428,
- "_1429": 1422,
- "_1430": 1431,
- "_61": 62
+ "_852": 22,
+ "_864": 865,
+ "_866": 1833,
+ "_853": 1831,
+ "_1838": 1839,
+ "_1840": 1836,
+ "_871": 1841,
+ "_60": 61
},
- "country",
- "custom",
{
- "_1420": 72,
- "_1421": 1422,
- "_1423": 24,
- "_1424": 72,
- "_1425": 1426
+ "_1834": 71,
+ "_1835": 1836,
+ "_1837": 34,
+ "_869": 34,
+ "_870": 16
},
"has_logged_in_before",
"user_agent",
- "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0",
+ "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0",
"is_punch_out_user",
- "is_paid",
- "auth_status",
- "logged_in",
"ip",
- "178.236.37.82",
+ "1.1.1.1",
"userAgent",
- "statsigEnvironment",
{
- "_1432": 1433
+ "_873": 874
},
- "tier",
- "production",
- "authStatus",
+ "isNoAuthEnabled",
"userRegion",
"New York",
- "cfConnectingIp",
- "8.8.8.8",
- "34.69220",
+ "US",
+ "cfIpLatitude",
+ null,
"cfIpLongitude",
null,
"cfIpCity",
null,
"isUserInNewCookieConsentFlow",
+ "isUserInPioneerHR",
"isUserEligibleForPioneer",
"isUserEligibleForMaverick",
"isIos",
@@ -3907,13 +5367,17 @@
"isElectron",
"windowStyle",
"cspScriptNonce",
- "f9d7f572-923e-4bf2-87a1-12deab6b9ba7",
+ "20f285f6-3f39-465d-8802-567f078c6c55",
"routes/_conversation",
{
- "_1455": 24,
- "_1456": -7
+ "_1864": 1865,
+ "_1866": -7
},
- "didPrefetchModelsQuery",
+ "rq:[\"models\",\"{\\\"isHistoryDisabled\\\":false}\"]",
+ [
+ "P",
+ 1865
+ ],
"prefetchSearch",
"routes/_conversation._index",
"actionData",
diff --git a/templates/chatgpt_context_2.json b/templates/chatgpt_context_2.json
index 93f4f91..5f2e0b8 100644
--- a/templates/chatgpt_context_2.json
+++ b/templates/chatgpt_context_2.json
@@ -1,48 +1,46 @@
[
{
- "_1461": 1462,
- "_1463": 1464,
- "_1553": 1468
+ "_1871": 1872,
+ "_1873": 1874,
+ "_1964": 43
},
"__type",
"AccountState",
"accountItems",
[
- 1465
+ 1875
],
[
"SingleFetchClassInstance",
- 1466
+ 1876
],
{
- "_7": 1467
+ "_1877": 1878
},
+ "data",
{
- "_11": 1468,
- "_1469": 1470,
- "_1471": 1472,
- "_13": -5,
- "_1473": -5,
- "_1474": -5,
- "_1475": 1476,
- "_1477": 1478,
- "_1479": -5,
- "_1480": 1481,
- "_1482": 24,
- "_1483": 1484,
- "_1509": 1510,
- "_1551": 72,
- "_1552": -5
+ "_21": 43,
+ "_1879": 1880,
+ "_1881": 1882,
+ "_23": -5,
+ "_1883": -5,
+ "_1884": -5,
+ "_46": 47,
+ "_1885": 1886,
+ "_1887": -5,
+ "_1888": 1889,
+ "_1890": 34,
+ "_1891": 1892,
+ "_1918": 1919,
+ "_1962": 71,
+ "_1963": -5
},
- "e8d5afdb-3e65-49ee-8dd2-3877339119d7",
"residencyRegion",
"no_constraint",
"accountUserId",
"user-chatgpt__chatgpt",
"profilePictureId",
"profilePictureUrl",
- "structure",
- "personal",
"role",
"account-owner",
"organizationId",
@@ -51,93 +49,97 @@
"deactivated",
"subscriptionStatus",
{
- "_1485": -5,
- "_1486": 72,
- "_1487": 24,
- "_1488": 1489,
- "_1490": 1491,
- "_1492": 1493,
- "_1494": 1495,
- "_1496": -7,
- "_1497": 72,
- "_1498": 24,
- "_1499": -5,
- "_1500": 1501,
- "_1507": 24,
- "_1508": -5
+ "_1893": 1894,
+ "_1895": 71,
+ "_1896": 34,
+ "_1897": 1898,
+ "_1899": 1900,
+ "_44": 45,
+ "_1901": 1902,
+ "_1903": -7,
+ "_1904": 71,
+ "_1905": 71,
+ "_1906": 1907,
+ "_1908": 1909,
+ "_1915": 34,
+ "_1916": -5,
+ "_1917": 34
},
"billingPeriod",
+ "monthly",
"hasPaidSubscription",
"isActiveSubscriptionGratis",
"billingCurrency",
"USD",
"subscriptionPlan",
"chatgptproplan",
- "planType",
- "pro",
"subscriptionExpiresAt",
"2524579200",
"scheduledPlanChange",
"wasPaidCustomer",
"hasCustomerObject",
"processorEntity",
+ "openai_llc",
"lastActiveSubscription",
{
- "_1502": 1503,
- "_1504": 1505,
- "_1506": 72
+ "_1910": 1911,
+ "_1912": 1913,
+ "_1914": 71
},
"subscription_id",
- "31f9d1fd-e8dd-4c4e-815f-b07ec45ca171",
+ "c3f25801-20a7-436e-a143-b42924a6e5ea",
"purchase_origin_platform",
- "chatgpt_mobile_ios",
+ "chatgpt_web",
"will_renew",
"isResellerHosted",
"discount",
+ "isEligibleForCancellationPromotion",
"features",
[
- 1511,
- 1512,
- 1513,
- 1514,
- 922,
- 1515,
- 1516,
- 1517,
- 1518,
- 1519,
- 1520,
- 1521,
- 1522,
- 1523,
- 1524,
- 1525,
- 1526,
- 1527,
- 1528,
- 1529,
- 1530,
- 1531,
- 1532,
- 23,
- 1533,
- 1534,
- 1535,
- 1536,
- 1537,
- 1538,
- 1539,
- 1540,
- 1541,
- 1542,
- 1543,
- 1544,
- 1545,
- 1546,
- 1547,
- 1548,
- 1549,
- 1550
+ 1920,
+ 1921,
+ 1922,
+ 1923,
+ 1462,
+ 1924,
+ 1925,
+ 1926,
+ 1927,
+ 1928,
+ 1929,
+ 1930,
+ 1931,
+ 1932,
+ 1933,
+ 1934,
+ 1935,
+ 1936,
+ 1937,
+ 1938,
+ 1939,
+ 1940,
+ 1941,
+ 1942,
+ 1943,
+ 33,
+ 1944,
+ 1945,
+ 1946,
+ 1947,
+ 1948,
+ 1949,
+ 1950,
+ 1951,
+ 1952,
+ 1953,
+ 1954,
+ 1955,
+ 1956,
+ 1957,
+ 1958,
+ 1959,
+ 1960,
+ 1961
],
"beta_features",
"bizmo_settings",
@@ -159,7 +161,9 @@
"gizmo_canvas_toggle",
"gizmo_reviews",
"gizmo_support_emails",
+ "gpt_4_5",
"graphite",
+ "image_gen_tool_enabled",
"jawbone_model_access",
"model_ab_use_v2",
"model_switcher",
diff --git a/templates/gpts_context.json b/templates/gpts_context.json
index 7a7793b..ff8674b 100644
--- a/templates/gpts_context.json
+++ b/templates/gpts_context.json
@@ -10,40 +10,47 @@
{
"_5": 6,
"_7": 8,
- "_30": 31,
- "_32": 33,
- "_34": 35,
- "_36": 37,
- "_1411": 1403,
- "_1412": 1413,
- "_1414": 1405,
- "_1415": 1416,
- "_1417": 1418,
- "_1419": -5,
- "_1420": 45,
- "_1421": 20,
- "_1422": 45,
- "_1423": 45,
- "_1424": 1425,
- "_1426": 1427
+ "_9": 10,
+ "_48": 49,
+ "_50": 51,
+ "_52": 53,
+ "_1832": 61,
+ "_1833": -5,
+ "_1834": 855,
+ "_1835": 1829,
+ "_1836": 1837,
+ "_1838": 1839,
+ "_1840": 1841,
+ "_1842": 24,
+ "_1843": 24,
+ "_1844": 24,
+ "_1845": 24,
+ "_1846": 1847,
+ "_1848": 1849
},
+ "authStatus",
+ "logged_in",
"session",
{
- "_7": 8,
- "_23": 24,
- "_25": -7,
- "_26": 27,
- "_28": 29
+ "_9": 10,
+ "_29": 30,
+ "_31": 32,
+ "_38": 39,
+ "_40": 41,
+ "_42": 43
},
"user",
{
- "_9": 10,
"_11": 12,
"_13": 14,
- "_15": 16,
- "_17": 18,
+ "_15": 14,
+ "_16": 17,
+ "_18": 17,
"_19": 20,
- "_21": 22
+ "_21": 22,
+ "_23": 24,
+ "_25": 26,
+ "_27": 28
},
"id",
"user-chatgpt",
@@ -51,6440 +58,7106 @@
"chatgpt",
"email",
"chatgpt@openai.com",
+ "https://s.gravatar.com/avatar/5edae94250bff28c50456d715798421e?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fli.png",
+ "picture",
"idp",
- "windowslive",
+ "auth0",
"iat",
- 1739456365,
+ 1742986864,
"mfa",
false,
+ "groups",
+ [],
"intercom_hash",
- "efe098958490c9cca3d4f82d636824bc94874164d283a2f710651496e41d61c4",
+ "2bfe17418ed9bd0db1924962d30f2ed4adcede4bc9a81ac41ce9d623ab3b4de5",
"expires",
- "2025-06-03T00:59:58.030Z",
+ "2025-06-24T11:02:54.140Z",
"account",
+ {
+ "_11": 33,
+ "_34": 35,
+ "_36": 37
+ },
+ "17904ad0-df88-4a0f-917b-501d958eceda",
+ "planType",
+ "plus",
+ "structure",
+ "personal",
"accessToken",
"",
"authProvider",
"openai",
+ "rumViewTags",
+ {
+ "_44": 45
+ },
+ "light_account",
+ {
+ "_46": 24,
+ "_47": -7
+ },
+ "fetched",
+ "reason",
"cluster",
- "unified-30",
- "userCountry",
- "US",
+ "unified-9",
"locale",
"zh-CN",
"statsig",
{
- "_38": 39
+ "_54": 55,
+ "_865": 866
},
- "payload",
+ "classic",
{
- "_40": 41,
- "_492": 493,
- "_671": 672,
- "_1369": 1370,
- "_1371": 45,
- "_1372": 1373,
- "_1374": 1375,
- "_1380": 1381,
- "_1382": 1383,
- "_1391": 1392,
- "_7": 1393
+ "_56": 57,
+ "_350": 351,
+ "_446": 447,
+ "_827": 828,
+ "_829": 61,
+ "_830": 831,
+ "_832": 833,
+ "_838": 839,
+ "_840": 841,
+ "_851": 852,
+ "_9": 853
},
"feature_gates",
{
- "_42": 43,
- "_50": 51,
- "_63": 64,
- "_68": 69,
- "_71": 72,
+ "_58": 59,
"_76": 77,
- "_80": 81,
- "_88": 89,
- "_100": 101,
- "_104": 105,
- "_108": 109,
- "_113": 114,
- "_116": 117,
- "_120": 121,
- "_126": 127,
- "_129": 130,
+ "_82": 83,
+ "_89": 90,
+ "_103": 104,
+ "_107": 108,
+ "_111": 112,
+ "_115": 116,
+ "_118": 119,
+ "_122": 123,
"_132": 133,
- "_139": 140,
+ "_136": 137,
+ "_140": 141,
"_143": 144,
- "_152": 153,
- "_156": 157,
- "_160": 161,
- "_164": 165,
- "_174": 175,
- "_180": 181,
- "_184": 185,
- "_187": 188,
- "_191": 192,
- "_195": 196,
- "_199": 200,
- "_203": 204,
- "_207": 208,
- "_211": 212,
- "_214": 215,
- "_218": 219,
+ "_147": 148,
+ "_151": 152,
+ "_154": 155,
+ "_158": 159,
+ "_162": 163,
+ "_172": 173,
+ "_175": 176,
+ "_179": 180,
+ "_186": 187,
+ "_189": 190,
+ "_87": 194,
+ "_196": 197,
+ "_206": 207,
+ "_212": 213,
+ "_216": 217,
"_222": 223,
- "_172": 225,
- "_228": 229,
+ "_227": 228,
+ "_184": 230,
"_232": 233,
- "_236": 237,
- "_240": 241,
- "_243": 244,
- "_247": 248,
- "_251": 252,
- "_254": 255,
- "_257": 258,
- "_261": 262,
+ "_235": 236,
+ "_239": 240,
+ "_245": 246,
+ "_248": 249,
+ "_252": 253,
+ "_256": 257,
+ "_260": 261,
"_264": 265,
- "_269": 270,
- "_272": 273,
+ "_268": 269,
+ "_271": 272,
"_275": 276,
- "_278": 279,
- "_75": 282,
+ "_280": 281,
"_284": 285,
"_287": 288,
- "_291": 292,
- "_294": 295,
- "_298": 299,
- "_302": 303,
+ "_293": 294,
+ "_300": 301,
"_306": 307,
- "_310": 311,
+ "_201": 309,
+ "_311": 312,
"_315": 316,
"_319": 320,
- "_268": 323,
- "_325": 326,
- "_328": 329,
- "_333": 334,
- "_337": 338,
- "_341": 342,
- "_344": 345,
- "_348": 349,
- "_351": 352,
- "_355": 356,
- "_361": 362,
- "_365": 366,
- "_370": 371,
- "_374": 375,
- "_381": 382,
- "_385": 386,
- "_389": 390,
- "_392": 393,
- "_395": 396,
- "_399": 400,
- "_402": 403,
- "_405": 406,
- "_409": 410,
- "_412": 413,
- "_416": 417,
- "_419": 420,
- "_423": 424,
- "_426": 427,
- "_429": 430,
- "_432": 433,
- "_436": 437,
- "_439": 440,
- "_443": 444,
- "_92": 447,
- "_449": 450,
- "_457": 458,
- "_461": 462,
- "_465": 466,
- "_468": 469,
- "_471": 472,
- "_475": 476,
- "_479": 480,
- "_482": 483,
- "_485": 486,
- "_489": 490
+ "_94": 322,
+ "_324": 325,
+ "_335": 336,
+ "_333": 339,
+ "_343": 344,
+ "_346": 347
},
- "14938527",
+ "61299031",
{
- "_11": 42,
- "_44": 45,
- "_46": 47,
- "_48": 49
+ "_13": 58,
+ "_60": 61,
+ "_62": 63,
+ "_64": 65
},
"value",
true,
"rule_id",
- "3QgLJ91lKIc7VAOjo5SDz7",
+ "2wrvcqZBGOdzYtk4c8rQxP",
"secondary_exposures",
- [],
- "61299031",
- {
- "_11": 50,
- "_44": 20,
- "_46": 52,
- "_48": 53
- },
- "default",
[
- 54,
- 60
+ 66,
+ 73
],
{
- "_55": 56,
- "_57": 58,
- "_59": 52
+ "_67": 68,
+ "_69": 70,
+ "_71": 72
},
"gate",
"44045625",
"gateValue",
- "false",
+ "true",
"ruleID",
+ "1vGfaAvyQ4VnZ5Y0UnCsbl:100.00:5",
{
- "_55": 61,
- "_57": 58,
- "_59": 62
+ "_67": 74,
+ "_69": 70,
+ "_71": 75
},
"1259585210",
- "3cQqu8Odku3b2Mx7Ba4Lq0",
+ "3cQqufsn9EF8iqIPZFNiE8:100.00:4",
"80186230",
{
- "_11": 63,
- "_44": 20,
- "_46": 52,
- "_48": 65
+ "_13": 76,
+ "_60": 61,
+ "_62": 78,
+ "_64": 79
},
+ "7thMqF7L1NKFaEvg1NsH7E",
[
- 66,
- 67
+ 80,
+ 81
],
{
- "_55": 56,
- "_57": 58,
- "_59": 52
- },
- {
- "_55": 61,
- "_57": 58,
- "_59": 62
+ "_67": 68,
+ "_69": 70,
+ "_71": 72
},
- "156153730",
{
- "_11": 68,
- "_44": 20,
- "_46": 52,
- "_48": 70
+ "_67": 74,
+ "_69": 70,
+ "_71": 75
},
- [],
"174366048",
{
- "_11": 71,
- "_44": 20,
- "_46": 52,
- "_48": 73
+ "_13": 82,
+ "_60": 61,
+ "_62": 84,
+ "_64": 85
},
+ "bhPM7FsN2H1vnBUrxrg6v:100.00:3",
[
- 74
+ 86
],
{
- "_55": 75,
- "_57": 58,
- "_59": 52
+ "_67": 87,
+ "_69": 70,
+ "_71": 88
},
"1923022511",
- "222560275",
- {
- "_11": 76,
- "_44": 20,
- "_46": 78,
- "_48": 79
- },
- "5pv2QpbgXNDB0QnBo3LTti:10.00:1",
- [],
- "223382091",
+ "6VUF6Z1JaUKZF7RS6uSjUu:100.00:6",
+ "232791851",
{
- "_11": 80,
- "_44": 20,
- "_46": 82,
- "_48": 83
+ "_13": 89,
+ "_60": 24,
+ "_62": 91,
+ "_64": 92
},
- "1fKkxDiVebEKfTj8nDAjHe",
+ "default",
[
- 84,
- 86
+ 93,
+ 96,
+ 99
],
{
- "_55": 85,
- "_57": 58,
- "_59": 52
+ "_67": 94,
+ "_69": 70,
+ "_71": 95
},
- "4180060165",
+ "3922476776",
+ "1DS1QvDa6IFq9C1oJfgtU9",
{
- "_55": 87,
- "_57": 58,
- "_59": 52
+ "_67": 97,
+ "_69": 70,
+ "_71": 98
},
- "3765213438",
- "232791851",
+ "749124420",
+ "2MQYHJjfKwcTr14d1bOuVH:100.00:2",
{
- "_11": 88,
- "_44": 20,
- "_46": 52,
- "_48": 90
+ "_67": 100,
+ "_69": 101,
+ "_71": 102
},
- [
- 91,
- 94,
- 96
- ],
+ "566128514",
+ "false",
+ "4P1FctCTa3aaKSskEnEeMt",
+ "374768818",
{
- "_55": 92,
- "_57": 58,
- "_59": 93
+ "_13": 103,
+ "_60": 61,
+ "_62": 105,
+ "_64": 106
},
- "3922476776",
- "PFYAe0Nut4olKWnZ4Hnig:0.00:13",
+ "wA7D0MWpe3uCf9HA5KeEi",
+ [],
+ "491279851",
{
- "_55": 95,
- "_57": 58,
- "_59": 52
+ "_13": 107,
+ "_60": 61,
+ "_62": 109,
+ "_64": 110
},
- "749124420",
+ "4qtiGR7vlvMtZnfSlXM5RN:100.00:12",
+ [],
+ "507664831",
{
- "_55": 97,
- "_57": 98,
- "_59": 99
+ "_13": 111,
+ "_60": 24,
+ "_62": 113,
+ "_64": 114
},
- "566128514",
- "true",
- "5hCRKi4Gs5QJkOanmdVvHU:100.00:4",
- "402391964",
+ "4SZ1s8XXvwaDrAV1l6wIro",
+ [],
+ "645560164",
{
- "_11": 100,
- "_44": 20,
- "_46": 102,
- "_48": 103
+ "_13": 115,
+ "_60": 24,
+ "_62": 91,
+ "_64": 117
},
- "14sAQaGJDosUKVV0DFZsAL",
[],
- "471233253",
+ "773249106",
{
- "_11": 104,
- "_44": 20,
- "_46": 106,
- "_48": 107
+ "_13": 118,
+ "_60": 24,
+ "_62": 120,
+ "_64": 121
},
- "3Yf9H7TxMC122pchwAkoLB",
+ "1kGO9xYmxaBS2V2H3LcQuG",
[],
- "491279851",
+ "989108178",
{
- "_11": 108,
- "_44": 20,
- "_46": 52,
- "_48": 110
+ "_13": 122,
+ "_60": 24,
+ "_62": 124,
+ "_64": 125
},
+ "4sTodKrNyByM4guZ68MORR",
[
- 111
+ 126,
+ 129
],
{
- "_55": 112,
- "_57": 58,
- "_59": 52
+ "_67": 127,
+ "_69": 101,
+ "_71": 128
},
- "2404506894",
- "573184874",
+ "1457171347",
+ "2EjTipm6C4kk4fuvcHMzZe",
{
- "_11": 113,
- "_44": 20,
- "_46": 52,
- "_48": 115
+ "_67": 130,
+ "_69": 70,
+ "_71": 131
},
- [],
- "582612297",
+ "1426009137",
+ "4C2vO0R7mvnCZvl1HDBExp:30.00:5",
+ "1028682714",
{
- "_11": 116,
- "_44": 45,
- "_46": 118,
- "_48": 119
+ "_13": 132,
+ "_60": 61,
+ "_62": 134,
+ "_64": 135
},
- "5censDsCfS2zQeYtTIui2s:100.00:2",
+ "735n03snBvba4AEhd2Qwqu:100.00:3",
[],
- "589604007",
+ "1072178956",
{
- "_11": 120,
- "_44": 20,
- "_46": 52,
- "_48": 122
+ "_13": 136,
+ "_60": 24,
+ "_62": 138,
+ "_64": 139
},
- [
- 123
- ],
+ "4m8JwKa5kCi9HNf1ScZepj",
+ [],
+ "1242184140",
{
- "_55": 124,
- "_57": 98,
- "_59": 125
+ "_13": 140,
+ "_60": 24,
+ "_62": 91,
+ "_64": 142
},
- "633009675",
- "3hRSthtIBD5acnNskGRJjV",
- "614413305",
+ [],
+ "1318146997",
{
- "_11": 126,
- "_44": 20,
- "_46": 52,
- "_48": 128
+ "_13": 143,
+ "_60": 61,
+ "_62": 145,
+ "_64": 146
},
+ "2AclmEgqaQBVFbxz37XKzy:100.00:5",
[],
- "645560164",
+ "1393076427",
{
- "_11": 129,
- "_44": 20,
- "_46": 52,
- "_48": 131
+ "_13": 147,
+ "_60": 61,
+ "_62": 149,
+ "_64": 150
},
+ "disabled",
[],
- "653593316",
+ "1508312659",
{
- "_11": 132,
- "_44": 45,
- "_46": 134,
- "_48": 135
+ "_13": 151,
+ "_60": 24,
+ "_62": 91,
+ "_64": 153
},
- "GJ8pvorFDIe3Z4WonIr2s",
- [
- 136
- ],
+ [],
+ "1578703058",
{
- "_55": 137,
- "_57": 98,
- "_59": 138
+ "_13": 154,
+ "_60": 61,
+ "_62": 156,
+ "_64": 157
},
- "3802510433",
- "6FLEMI2GBFmVWGEsEGyASD:100.00:5",
- "719574156",
+ "2l4nEVMUnPuXkgprUm5zzs:100.00:4",
+ [],
+ "1611573287",
{
- "_11": 139,
- "_44": 45,
- "_46": 141,
- "_48": 142
+ "_13": 158,
+ "_60": 61,
+ "_62": 160,
+ "_64": 161
},
- "52ssVXeI8kfXB7eOtvHcjo:100.00:4",
+ "159rwM3sBnviE9XWH24azn:100.00:2",
[],
- "756982148",
+ "1719651090",
{
- "_11": 143,
- "_44": 45,
- "_46": 145,
- "_48": 146
+ "_13": 162,
+ "_60": 61,
+ "_62": 164,
+ "_64": 165
},
- "3oAWYdzegKPwxhFJjJrGz3",
+ "60QaTyBFJYTakinhLvhAM9",
[
- 147,
- 149
+ 166,
+ 169
],
{
- "_55": 148,
- "_57": 58,
- "_59": 52
+ "_67": 167,
+ "_69": 70,
+ "_71": 168
},
- "1456438623",
+ "1616485584",
+ "2PP6pudW64Hn7katvazhAx:100.00:5",
{
- "_55": 150,
- "_57": 98,
- "_59": 151
+ "_67": 170,
+ "_69": 70,
+ "_71": 171
},
- "3805873235",
- "5KvGWxgOdialy0Dx9IrqmW:100.00:23",
- "756982149",
+ "1034043359",
+ "4bd3o553p0ZCRkFmipROd8",
+ "1804926979",
{
- "_11": 152,
- "_44": 20,
- "_46": 154,
- "_48": 155
+ "_13": 172,
+ "_60": 24,
+ "_62": 91,
+ "_64": 174
},
- "1rXg44we6gmcRqYsiZzfL4:0.00:1",
[],
- "809056127",
+ "1825130190",
{
- "_11": 156,
- "_44": 45,
- "_46": 158,
- "_48": 159
+ "_13": 175,
+ "_60": 61,
+ "_62": 177,
+ "_64": 178
},
- "54ufwSF4KjxPi2AIrjbelh",
+ "Nef2uMceNUF9U3ZYwSbpD",
[],
- "925172880",
+ "1847911009",
+ {
+ "_13": 179,
+ "_60": 24,
+ "_62": 181,
+ "_64": 182
+ },
+ "5OIO2mI7iQiPRReG1jZ4c2:0.00:7",
+ [
+ 183
+ ],
{
- "_11": 160,
- "_44": 45,
- "_46": 162,
- "_48": 163
+ "_67": 184,
+ "_69": 70,
+ "_71": 185
+ },
+ "2304807207",
+ "xhzqzk6zPqMb3Qs4GVvJu:100.00:5",
+ "1855896025",
+ {
+ "_13": 186,
+ "_60": 24,
+ "_62": 91,
+ "_64": 188
},
- "1irABeRvknMrLpD4ae6ZHj:100.00:1",
[],
- "989108178",
+ "1902899872",
{
- "_11": 164,
- "_44": 20,
- "_46": 166,
- "_48": 167
+ "_13": 189,
+ "_60": 61,
+ "_62": 191,
+ "_64": 192
},
- "4sTodKrNyByM4guZ68MORR",
+ "58UOuEcFwyqlorfhrWQLlE",
[
- 168,
- 171
+ 193
],
{
- "_55": 169,
- "_57": 58,
- "_59": 170
+ "_67": 184,
+ "_69": 70,
+ "_71": 185
},
- "1457171347",
- "2EjTipm6C4kk4fuvcHMzZe",
{
- "_55": 172,
- "_57": 98,
- "_59": 173
+ "_13": 87,
+ "_60": 61,
+ "_62": 88,
+ "_64": 195
},
- "1426009137",
- "7D8EAif25E3Y8A3zkg6ljp:100.00:2",
- "989226566",
+ [],
+ "1988730211",
{
- "_11": 174,
- "_44": 45,
- "_46": 176,
- "_48": 177
+ "_13": 196,
+ "_60": 61,
+ "_62": 198,
+ "_64": 199
},
- "6yqqYAWKtmfU8A7QGdiky4",
+ "6B9O1B3eHKElKWCUfbcvBL",
[
- 178,
- 179
+ 200,
+ 203
],
{
- "_55": 169,
- "_57": 58,
- "_59": 170
+ "_67": 201,
+ "_69": 70,
+ "_71": 202
},
+ "3780975974",
+ "48uk8ZYa2RpJzkpIyOmqP0:100.00:5",
{
- "_55": 172,
- "_57": 98,
- "_59": 173
+ "_67": 204,
+ "_69": 70,
+ "_71": 205
},
- "1028682714",
+ "3733089528",
+ "3vtzosKkaPCfPysd7yBTSf",
+ "2044826081",
{
- "_11": 180,
- "_44": 45,
- "_46": 182,
- "_48": 183
+ "_13": 206,
+ "_60": 61,
+ "_62": 208,
+ "_64": 209
},
- "735n03snBvba4AEhd2Qwqu:100.00:3",
- [],
- "1032814809",
+ "6MpInoEzkXvXVvodNQCQWs",
+ [
+ 210,
+ 211
+ ],
{
- "_11": 184,
- "_44": 20,
- "_46": 52,
- "_48": 186
+ "_67": 68,
+ "_69": 70,
+ "_71": 72
},
- [],
- "1041874561",
{
- "_11": 187,
- "_44": 45,
- "_46": 189,
- "_48": 190
+ "_67": 74,
+ "_69": 70,
+ "_71": 75
},
- "3QhGbHZgk78rDbdIQis5P7",
- [],
- "1105502266",
+ "2091463435",
{
- "_11": 191,
- "_44": 45,
- "_46": 193,
- "_48": 194
+ "_13": 212,
+ "_60": 61,
+ "_62": 214,
+ "_64": 215
},
- "6aawHEq6J83iPX0WB5PkaS:100.00:1",
+ "5t78GUS68KOn3bHZd8z7ii:100.00:1",
[],
- "1166240779",
+ "2113934735",
{
- "_11": 195,
- "_44": 20,
- "_46": 197,
- "_48": 198
+ "_13": 216,
+ "_60": 24,
+ "_62": 91,
+ "_64": 218
},
- "4UjTXwt2XK975PANdi1Ma6:0.00:2",
- [],
- "1247275182",
+ [
+ 219,
+ 220,
+ 221
+ ],
{
- "_11": 199,
- "_44": 45,
- "_46": 201,
- "_48": 202
+ "_67": 167,
+ "_69": 70,
+ "_71": 168
},
- "6aPwZIGPFAaijvCOysRL6K:100.00:2",
- [],
- "1318146997",
{
- "_11": 203,
- "_44": 45,
- "_46": 205,
- "_48": 206
+ "_67": 170,
+ "_69": 70,
+ "_71": 171
},
- "2AclmEgqaQBVFbxz37XKzy:100.00:5",
- [],
- "1330965306",
{
- "_11": 207,
- "_44": 20,
- "_46": 209,
- "_48": 210
+ "_67": 162,
+ "_69": 70,
+ "_71": 164
},
- "2hgeURIeaW3xVVJbGnrnVw",
- [],
- "1358499025",
+ "2256850471",
{
- "_11": 211,
- "_44": 20,
- "_46": 52,
- "_48": 213
+ "_13": 222,
+ "_60": 61,
+ "_62": 224,
+ "_64": 225
+ },
+ "IqxordbUxF1Fkg4gfExiY:100.00:1",
+ [
+ 226
+ ],
+ {
+ "_67": 175,
+ "_69": 70,
+ "_71": 177
+ },
+ "2293185713",
+ {
+ "_13": 227,
+ "_60": 24,
+ "_62": 91,
+ "_64": 229
},
[],
- "1382475798",
{
- "_11": 214,
- "_44": 45,
- "_46": 216,
- "_48": 217
+ "_13": 184,
+ "_60": 61,
+ "_62": 185,
+ "_64": 231
},
- "3P8OsGy1e5tQlR5dsTIWbL",
[],
- "1416952492",
+ "2311599525",
{
- "_11": 218,
- "_44": 20,
- "_46": 220,
- "_48": 221
+ "_13": 232,
+ "_60": 24,
+ "_62": 91,
+ "_64": 234
},
- "2LD82enCtskHL9Vi2hS6Jq",
[],
- "1422501431",
+ "2335877601",
{
- "_11": 222,
- "_44": 20,
- "_46": 52,
- "_48": 224
+ "_13": 235,
+ "_60": 24,
+ "_62": 237,
+ "_64": 238
},
+ "6NQcdu7pgfp18Sq2tfBC6q",
[],
+ "2454940646",
{
- "_11": 172,
- "_44": 45,
- "_46": 173,
- "_48": 226
+ "_13": 239,
+ "_60": 61,
+ "_62": 241,
+ "_64": 242
},
+ "zol8dYvq8kKfRbOgcM0IF",
[
- 227
+ 243,
+ 244
],
{
- "_55": 169,
- "_57": 58,
- "_59": 170
- },
- "1439437954",
- {
- "_11": 228,
- "_44": 20,
- "_46": 230,
- "_48": 231
+ "_67": 201,
+ "_69": 70,
+ "_71": 202
},
- "11IqDt7xc4mMNiyiSIMy1F",
- [],
- "1456513860",
{
- "_11": 232,
- "_44": 45,
- "_46": 234,
- "_48": 235
+ "_67": 204,
+ "_69": 70,
+ "_71": 205
},
- "jHXkU7q9axp0dXBSyzihH",
- [],
- "1468311859",
+ "2494375100",
{
- "_11": 236,
- "_44": 20,
- "_46": 238,
- "_48": 239
+ "_13": 245,
+ "_60": 24,
+ "_62": 91,
+ "_64": 247
},
- "7tfl8ZUhwr5pzErE3ikBej",
[],
- "1542198993",
+ "2562876640",
{
- "_11": 240,
- "_44": 20,
- "_46": 52,
- "_48": 242
+ "_13": 248,
+ "_60": 61,
+ "_62": 250,
+ "_64": 251
},
+ "326czTZeZ0RX0ypR0c5Bb6:100.00:15",
[],
- "1611573287",
+ "2607001979",
{
- "_11": 243,
- "_44": 45,
- "_46": 245,
- "_48": 246
+ "_13": 252,
+ "_60": 24,
+ "_62": 254,
+ "_64": 255
},
- "159rwM3sBnviE9XWH24azn:100.00:2",
+ "35jfNEnEKwGsryxcwFhAKz",
[],
- "1656345175",
+ "2687575887",
{
- "_11": 247,
- "_44": 45,
- "_46": 249,
- "_48": 250
+ "_13": 256,
+ "_60": 61,
+ "_62": 258,
+ "_64": 259
},
- "2CwIChuIr7SLQ2CyqRegF2",
+ "10cvQmwrcZvpWBFlZgn8pZ",
[],
- "1741586789",
+ "2756095923",
{
- "_11": 251,
- "_44": 20,
- "_46": 52,
- "_48": 253
+ "_13": 260,
+ "_60": 61,
+ "_62": 262,
+ "_64": 263
},
+ "6jPp6nW1wQVJbfY0uwQgmv:100.00:1",
[],
- "1760640904",
+ "2868048419",
{
- "_11": 254,
- "_44": 20,
- "_46": 52,
- "_48": 256
+ "_13": 264,
+ "_60": 24,
+ "_62": 266,
+ "_64": 267
},
+ "7iUNAbafRQfKTvYI2mmFZB",
[],
- "1825130190",
+ "3054422710",
{
- "_11": 257,
- "_44": 45,
- "_46": 259,
- "_48": 260
+ "_13": 268,
+ "_60": 61,
+ "_62": 149,
+ "_64": 270
},
- "Nef2uMceNUF9U3ZYwSbpD",
[],
- "1839283687",
+ "3286474446",
{
- "_11": 261,
- "_44": 20,
- "_46": 52,
- "_48": 263
+ "_13": 271,
+ "_60": 61,
+ "_62": 273,
+ "_64": 274
},
+ "2a7wA6tOQ5GPb7WIr1SU1A:100.00:1",
[],
- "1847911009",
+ "3325813340",
{
- "_11": 264,
- "_44": 20,
- "_46": 52,
- "_48": 266
+ "_13": 275,
+ "_60": 61,
+ "_62": 277,
+ "_64": 278
},
+ "37GsRLj07CqERPyHBn4o5L",
[
- 267
+ 279
],
{
- "_55": 268,
- "_57": 58,
- "_59": 52
+ "_67": 184,
+ "_69": 70,
+ "_71": 185
},
- "2304807207",
- "1860647109",
+ "3342258807",
{
- "_11": 269,
- "_44": 20,
- "_46": 52,
- "_48": 271
+ "_13": 280,
+ "_60": 24,
+ "_62": 282,
+ "_64": 283
},
+ "3m0ycr0cMQOm6eMQQjgyp9",
[],
- "1887864177",
+ "3376455464",
{
- "_11": 272,
- "_44": 20,
- "_46": 52,
- "_48": 274
+ "_13": 284,
+ "_60": 24,
+ "_62": 91,
+ "_64": 286
},
[],
- "1889094680",
+ "3468624635",
{
- "_11": 275,
- "_44": 20,
- "_46": 52,
- "_48": 277
+ "_13": 287,
+ "_60": 24,
+ "_62": 91,
+ "_64": 289
},
- [],
- "1902899872",
+ [
+ 290
+ ],
+ {
+ "_67": 291,
+ "_69": 101,
+ "_71": 292
+ },
+ "2067628123",
+ "3CuBjEMi97tY3EGnq0NA9s",
+ "3544641259",
{
- "_11": 278,
- "_44": 20,
- "_46": 52,
- "_48": 280
+ "_13": 293,
+ "_60": 24,
+ "_62": 91,
+ "_64": 295
},
[
- 281
+ 296,
+ 298
],
{
- "_55": 268,
- "_57": 58,
- "_59": 52
+ "_67": 297,
+ "_69": 101,
+ "_71": 91
},
+ "2856133350",
{
- "_11": 75,
- "_44": 20,
- "_46": 52,
- "_48": 283
+ "_67": 299,
+ "_69": 101,
+ "_71": 91
},
- [],
- "2000076788",
+ "3214154973",
+ "3645668434",
{
- "_11": 284,
- "_44": 20,
- "_46": 52,
- "_48": 286
+ "_13": 300,
+ "_60": 61,
+ "_62": 302,
+ "_64": 303
},
- [],
- "2053937752",
+ "1CWwhBKuOiRAC9V8HRBJRU",
+ [
+ 304
+ ],
{
- "_11": 287,
- "_44": 20,
- "_46": 289,
- "_48": 290
+ "_67": 305,
+ "_69": 70,
+ "_71": 149
+ },
+ "3863445312",
+ "3700195277",
+ {
+ "_13": 306,
+ "_60": 24,
+ "_62": 91,
+ "_64": 308
},
- "2PLQzvwrGPxACRwaEcKbIh",
[],
- "2056761365",
{
- "_11": 291,
- "_44": 20,
- "_46": 52,
- "_48": 293
+ "_13": 201,
+ "_60": 61,
+ "_62": 202,
+ "_64": 310
},
[],
- "2067628123",
+ "3802510433",
{
- "_11": 294,
- "_44": 20,
- "_46": 296,
- "_48": 297
+ "_13": 311,
+ "_60": 61,
+ "_62": 313,
+ "_64": 314
},
- "3CuBjEMi97tY3EGnq0NA9s",
+ "6FLEMI2GBFmVWGEsEGyASD:100.00:5",
[],
- "2091463435",
+ "3822950319",
{
- "_11": 298,
- "_44": 45,
- "_46": 300,
- "_48": 301
+ "_13": 315,
+ "_60": 61,
+ "_62": 317,
+ "_64": 318
},
- "5t78GUS68KOn3bHZd8z7ii:100.00:1",
+ "2CBvDiHjHIK9xlL4ItyXmK:100.00:1",
[],
- "2153043779",
+ "3838495619",
{
- "_11": 302,
- "_44": 45,
- "_46": 304,
- "_48": 305
+ "_13": 319,
+ "_60": 24,
+ "_62": 91,
+ "_64": 321
},
- "DamiTYVoTv9Z9jRFOT5iC",
[],
- "2173548801",
{
- "_11": 306,
- "_44": 45,
- "_46": 308,
- "_48": 309
+ "_13": 94,
+ "_60": 61,
+ "_62": 95,
+ "_64": 323
},
- "22nVhoL17eyMvGWgFrDfZe",
[],
- "2192543539",
+ "3940160259",
{
- "_11": 310,
- "_44": 20,
- "_46": 52,
- "_48": 312
+ "_13": 324,
+ "_60": 61,
+ "_62": 326,
+ "_64": 327
},
+ "2mmE1EmtOqtbWemO2wGuMO:100.00:4",
[
- 313
+ 328,
+ 330,
+ 332
],
{
- "_55": 314,
- "_57": 58,
- "_59": 52
- },
- "4206244917",
- "2232580636",
- {
- "_11": 315,
- "_44": 45,
- "_46": 317,
- "_48": 318
+ "_67": 329,
+ "_69": 101,
+ "_71": 91
},
- "4y4Nd0nF0CFawcrQBbm7Mq:100.00:4",
- [],
- "2281969373",
+ "4180060165",
{
- "_11": 319,
- "_44": 45,
- "_46": 321,
- "_48": 322
+ "_67": 331,
+ "_69": 101,
+ "_71": 91
},
- "6EbVeXErTdGtbchxdqEMTg",
- [],
+ "3765213438",
{
- "_11": 268,
- "_44": 20,
- "_46": 52,
- "_48": 324
+ "_67": 333,
+ "_69": 70,
+ "_71": 334
},
- [],
- "2360528850",
+ "4078831437",
+ "6bgwAROz7oF1OcKWxH4vHm:100.00:6",
+ "3954884439",
{
- "_11": 325,
- "_44": 20,
- "_46": 52,
- "_48": 327
+ "_13": 335,
+ "_60": 61,
+ "_62": 337,
+ "_64": 338
},
+ "5rqjCf7T9KpJtLnaE73Kum:100.00:4",
[],
- "2379988365",
{
- "_11": 328,
- "_44": 20,
- "_46": 52,
- "_48": 330
+ "_13": 333,
+ "_60": 61,
+ "_62": 334,
+ "_64": 340
},
[
- 331
+ 341,
+ 342
],
{
- "_55": 332,
- "_57": 58,
- "_59": 52
+ "_67": 329,
+ "_69": 101,
+ "_71": 91
},
- "2856133350",
- "2411734826",
{
- "_11": 333,
- "_44": 20,
- "_46": 335,
- "_48": 336
+ "_67": 331,
+ "_69": 101,
+ "_71": 91
},
- "33U1igAQgegRumGc4LbaB",
- [],
- "2445152477",
+ "4207619515",
{
- "_11": 337,
- "_44": 45,
- "_46": 339,
- "_48": 340
- },
- "5qtlunRMswJX2JGoF8GikC",
- [],
- "2494375100",
- {
- "_11": 341,
- "_44": 20,
- "_46": 52,
- "_48": 343
+ "_13": 343,
+ "_60": 24,
+ "_62": 91,
+ "_64": 345
},
[],
- "2562876640",
+ "4226692983",
{
- "_11": 344,
- "_44": 45,
- "_46": 346,
- "_48": 347
+ "_13": 346,
+ "_60": 61,
+ "_62": 348,
+ "_64": 349
},
- "326czTZeZ0RX0ypR0c5Bb6:100.00:15",
+ "6sEu91zwlBGSKOqFiNpGlA:100.00:2",
[],
- "2569731042",
+ "dynamic_configs",
{
- "_11": 348,
- "_44": 20,
- "_46": 52,
- "_48": 350
+ "_352": 353,
+ "_365": 366,
+ "_371": 372,
+ "_375": 376,
+ "_387": 388,
+ "_393": 394,
+ "_411": 412,
+ "_416": 417,
+ "_421": 422,
+ "_426": 427,
+ "_430": 431,
+ "_436": 437
},
- [],
- "2607001979",
+ "357305500",
{
- "_11": 351,
- "_44": 20,
- "_46": 353,
- "_48": 354
+ "_13": 352,
+ "_60": 354,
+ "_356": 357,
+ "_62": 357,
+ "_358": 24,
+ "_64": 359,
+ "_363": 24,
+ "_364": 24
},
- "35jfNEnEKwGsryxcwFhAKz",
- [],
- "2634628831",
{
- "_11": 355,
- "_44": 45,
- "_46": 357,
- "_48": 358
+ "_355": 61
},
- "6LfSag7ByiH0gGcqoFHHBe",
+ "can_see_upsell",
+ "group",
+ "launchedGroup",
+ "is_device_based",
[
- 359,
360
],
{
- "_55": 148,
- "_57": 58,
- "_59": 52
+ "_67": 361,
+ "_69": 70,
+ "_71": 362
},
+ "317829697",
+ "598ORr5O5ZardhhzMhz8k0:100.00:11",
+ "is_user_in_experiment",
+ "is_experiment_active",
+ "954359911",
{
- "_55": 150,
- "_57": 98,
- "_59": 151
+ "_13": 365,
+ "_60": 367,
+ "_356": 369,
+ "_62": 369,
+ "_358": 24,
+ "_64": 370,
+ "_363": 61,
+ "_364": 61
},
- "2637918557",
{
- "_11": 361,
- "_44": 20,
- "_46": 363,
- "_48": 364
+ "_368": 24
},
- "2XNTwszL419o7DMxzSa0vz",
+ "enabled",
+ "5zN2l0bhNBO2gpivWHXwRY",
[],
- "2712556596",
- {
- "_11": 365,
- "_44": 20,
- "_46": 52,
- "_48": 367
- },
- [
- 368
- ],
+ "1001765573",
{
- "_55": 369,
- "_57": 58,
- "_59": 52
+ "_13": 371,
+ "_60": 373,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 374
},
- "135448051",
- "2756095923",
+ {},
+ [],
+ "1146308370",
{
- "_11": 370,
- "_44": 45,
- "_46": 372,
- "_48": 373
+ "_13": 375,
+ "_60": 377,
+ "_356": 379,
+ "_62": 379,
+ "_358": 24,
+ "_64": 380,
+ "_363": 61,
+ "_364": 61
},
- "6jPp6nW1wQVJbfY0uwQgmv:100.00:1",
- [],
- "2813404493",
{
- "_11": 374,
- "_44": 20,
- "_46": 376,
- "_48": 377
+ "_378": 61
},
- "4jCRuoOxK8tLEGn9ngylXq",
+ "enable-copy-and-open",
+ "4jQR01pTnwmjITqDD8PD2s",
[
- 378
+ 381,
+ 384
],
{
- "_55": 379,
- "_57": 58,
- "_59": 380
+ "_67": 382,
+ "_69": 70,
+ "_71": 383
},
- "1074323483",
- "disabled",
- "2833534668",
+ "303767167",
+ "4kquVSCZpyFb5Sqki2BagX:100.00:6",
{
- "_11": 381,
- "_44": 45,
- "_46": 383,
- "_48": 384
+ "_67": 385,
+ "_69": 70,
+ "_71": 386
},
- "7uYkibMYlCPSnoWmmYNanm",
- [],
- "2848981774",
+ "3284359640",
+ "1E2e7sRUWkvJybjXfbiuoB",
+ "1165680819",
{
- "_11": 385,
- "_44": 45,
- "_46": 387,
- "_48": 388
+ "_13": 387,
+ "_60": 389,
+ "_356": 391,
+ "_62": 391,
+ "_358": 24,
+ "_64": 392,
+ "_363": 61,
+ "_364": 61
},
- "5dVXUFBOO6D3U79Cr9nBEF:100.00:1",
- [],
- "2912660649",
{
- "_11": 389,
- "_44": 20,
- "_46": 52,
- "_48": 391
+ "_390": 61
},
+ "show_new_banner",
+ "VVjatl8N5mxurs3Cje5TV",
[],
- "2935021756",
+ "1967546325",
{
- "_11": 392,
- "_44": 20,
- "_46": 52,
- "_48": 394
+ "_13": 393,
+ "_60": 395,
+ "_356": 408,
+ "_62": 408,
+ "_358": 24,
+ "_64": 409
},
- [],
- "3058498100",
{
- "_11": 395,
- "_44": 20,
- "_46": 52,
- "_48": 397
- },
+ "_396": 61,
+ "_397": 61,
+ "_398": 24,
+ "_399": 24,
+ "_400": 61,
+ "_401": 61,
+ "_402": 403,
+ "_404": 403,
+ "_405": 406,
+ "_407": 61
+ },
+ "gdrivePicker",
+ "o365Picker",
+ "gdriveLink",
+ "o365Link",
+ "o365PersonalLink",
+ "o365BusinessLink",
+ "gdrivePercentage",
+ 100,
+ "o365Percentage",
+ "loadTestPercentage",
+ 0,
+ "showWorkspaceSettings",
+ "2bcszlc7CFHdfdCdq7jXNb:100.00:5",
[
- 398
+ 410
],
{
- "_55": 369,
- "_57": 58,
- "_59": 52
+ "_67": 297,
+ "_69": 101,
+ "_71": 91
},
- "3241763787",
+ "2043237793",
{
- "_11": 399,
- "_44": 20,
- "_46": 52,
- "_48": 401
+ "_13": 411,
+ "_60": 413,
+ "_356": 357,
+ "_62": 357,
+ "_358": 24,
+ "_64": 415,
+ "_363": 24,
+ "_364": 24
},
- [],
- "3291247717",
{
- "_11": 402,
- "_44": 20,
- "_46": 52,
- "_48": 404
+ "_414": 60
},
+ "bucket",
[],
- "3325813340",
- {
- "_11": 405,
- "_44": 20,
- "_46": 52,
- "_48": 407
- },
- [
- 408
- ],
- {
- "_55": 268,
- "_57": 58,
- "_59": 52
- },
- "3376455464",
+ "2513291161",
{
- "_11": 409,
- "_44": 20,
- "_46": 52,
- "_48": 411
+ "_13": 416,
+ "_60": 418,
+ "_356": 419,
+ "_62": 419,
+ "_358": 24,
+ "_64": 420,
+ "_363": 61,
+ "_364": 61
},
- [],
- "3435450078",
{
- "_11": 412,
- "_44": 45,
- "_46": 414,
- "_48": 415
+ "_368": 24
},
- "2qCdHpFuWOOkibzLRL0zgn",
+ "2FTh6vlZcd8ha1OXcdnD3J",
[],
- "3472722167",
+ "3159301283",
{
- "_11": 416,
- "_44": 20,
- "_46": 52,
- "_48": 418
+ "_13": 421,
+ "_60": 423,
+ "_356": 424,
+ "_62": 424,
+ "_358": 24,
+ "_64": 425,
+ "_363": 61,
+ "_364": 61
},
- [],
- "3664702598",
{
- "_11": 419,
- "_44": 20,
- "_46": 421,
- "_48": 422
+ "_368": 61
},
- "7x9wS41bRDCji9ns8x5Oej",
+ "3Cce6z1hcoF2UBYwyupFck",
[],
- "3678527908",
+ "3217984440",
{
- "_11": 423,
- "_44": 20,
- "_46": 52,
- "_48": 425
+ "_13": 426,
+ "_60": 428,
+ "_356": 357,
+ "_62": 357,
+ "_358": 24,
+ "_64": 429,
+ "_363": 24,
+ "_364": 24
},
- [],
- "3700195277",
{
- "_11": 426,
- "_44": 20,
- "_46": 52,
- "_48": 428
+ "_368": 61
},
[],
- "3728856343",
+ "3230069703",
{
- "_11": 429,
- "_44": 20,
- "_46": 52,
- "_48": 431
+ "_13": 430,
+ "_60": 432,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 435
},
- [],
- "3779321121",
{
- "_11": 432,
- "_44": 20,
- "_46": 434,
- "_48": 435
+ "_433": 434
},
- "4pwIwdJTTCm4UQZFwxrODS:10.00:3",
+ "expirySeconds",
+ 15,
[],
- "3799260860",
+ "4198227845",
{
- "_11": 436,
- "_44": 20,
- "_46": 52,
- "_48": 438
+ "_13": 436,
+ "_60": 438,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 445
},
- [],
- "3910241726",
{
- "_11": 439,
- "_44": 45,
- "_46": 441,
- "_48": 442
+ "_439": 24,
+ "_440": 24,
+ "_441": 24,
+ "_442": 24,
+ "_443": 24,
+ "_444": 24
},
- "1ItyvFbGou4epQp9HviAsm",
+ "enabled_for_platform_override",
+ "enabled_for_platform_new",
+ "enabled_for_platform_existing",
+ "enabled_for_chat_override",
+ "enabled_for_chat_new",
+ "enabled_for_chat_existing",
[],
- "3922145230",
+ "layer_configs",
{
- "_11": 443,
- "_44": 20,
- "_46": 445,
- "_48": 446
+ "_448": 449,
+ "_472": 473,
+ "_477": 478,
+ "_483": 484,
+ "_495": 496,
+ "_501": 502,
+ "_506": 507,
+ "_517": 518,
+ "_551": 552,
+ "_558": 559,
+ "_571": 572,
+ "_577": 578,
+ "_583": 584,
+ "_592": 593,
+ "_607": 608,
+ "_626": 627,
+ "_643": 644,
+ "_656": 657,
+ "_665": 666,
+ "_675": 676,
+ "_686": 687,
+ "_698": 699,
+ "_705": 706,
+ "_719": 720,
+ "_727": 728,
+ "_737": 738,
+ "_746": 747,
+ "_752": 753,
+ "_758": 759,
+ "_792": 793,
+ "_808": 809,
+ "_815": 816,
+ "_822": 823
},
- "14DZA2LumaPqAdCo52CrUB",
- [],
+ "16152997",
{
- "_11": 92,
- "_44": 20,
- "_46": 93,
- "_48": 448
+ "_13": 448,
+ "_60": 450,
+ "_356": 461,
+ "_62": 461,
+ "_358": 24,
+ "_64": 462,
+ "_466": 467,
+ "_468": 469,
+ "_364": 24,
+ "_363": 24,
+ "_470": 471
},
- [],
- "3940160259",
{
- "_11": 449,
- "_44": 20,
- "_46": 451,
- "_48": 452
+ "_451": 61,
+ "_452": 24,
+ "_453": 61,
+ "_454": 455,
+ "_456": 455,
+ "_457": 406,
+ "_458": 24,
+ "_459": 61,
+ "_460": 24
},
- "2mmE1HGyJ0Maz3sFeMxLoS",
+ "show_preview_when_collapsed",
+ "expand_by_default",
+ "is_enabled",
+ "summarizer_system_prompt",
+ "",
+ "summarizer_chunk_template",
+ "summarizer_chunk_char_limit",
+ "enable_o3_mini_retrieval",
+ "override_o3_mini_to_high",
+ "enable_reason_by_default",
+ "6DaNqHbUdaQZCJTtuXMn3l:override",
[
- 453,
- 454,
- 455
+ 463
],
{
- "_55": 85,
- "_57": 58,
- "_59": 52
+ "_67": 464,
+ "_69": 70,
+ "_71": 465
},
+ "747145983",
+ "1yBei0bniPE2f1TkI3MLWa",
+ "explicit_parameters",
+ [
+ 451,
+ 452,
+ 453
+ ],
+ "allocated_experiment_name",
+ "1630255509",
+ "undelegated_secondary_exposures",
+ [
+ 463
+ ],
+ "40440673",
{
- "_55": 87,
- "_57": 58,
- "_59": 52
+ "_13": 472,
+ "_60": 474,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 475,
+ "_466": 476,
+ "_470": 475
},
+ {},
+ [],
+ [],
+ "51287004",
{
- "_55": 456,
- "_57": 58,
- "_59": 52
+ "_13": 477,
+ "_60": 479,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 481,
+ "_466": 482,
+ "_470": 481
},
- "4078831437",
- "3940529303",
{
- "_11": 457,
- "_44": 45,
- "_46": 459,
- "_48": 460
+ "_480": 61
},
- "17mkpeWbaWfCeMrpE67FOc",
+ "enable",
[],
- "3954884439",
- {
- "_11": 461,
- "_44": 45,
- "_46": 463,
- "_48": 464
- },
- "5rqjCf7T9KpJtLnaE73Kum:100.00:4",
[],
- "3993182790",
+ "183390215",
{
- "_11": 465,
- "_44": 20,
- "_46": 52,
- "_48": 467
+ "_13": 483,
+ "_60": 485,
+ "_356": 488,
+ "_62": 488,
+ "_358": 61,
+ "_64": 489,
+ "_466": 492,
+ "_468": 493,
+ "_364": 61,
+ "_363": 24,
+ "_470": 494
},
- [],
- "4012051055",
{
- "_11": 468,
- "_44": 20,
- "_46": 52,
- "_48": 470
+ "_486": 24,
+ "_487": 24
},
- [],
- "4141006638",
+ "signup_allow_phone",
+ "in_phone_signup_holdout",
+ "targetingGate",
+ [
+ 490
+ ],
{
- "_11": 471,
- "_44": 20,
- "_46": 473,
- "_48": 474
+ "_67": 491,
+ "_69": 101,
+ "_71": 91
},
- "6v4Q2eufBTFCb2P3fGZwPo",
+ "3874938189",
+ [
+ 486,
+ 487
+ ],
+ "4005636946",
[],
- "4168663601",
+ "190694971",
{
- "_11": 475,
- "_44": 45,
- "_46": 477,
- "_48": 478
+ "_13": 495,
+ "_60": 497,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 499,
+ "_466": 500,
+ "_470": 499
},
- "3TjvSiR2kSXeEdOTF9iYyZ",
- [],
- "4192239497",
{
- "_11": 479,
- "_44": 20,
- "_46": 52,
- "_48": 481
+ "_498": 24
},
+ "show_nux",
[],
- "4206189746",
- {
- "_11": 482,
- "_44": 20,
- "_46": 52,
- "_48": 484
- },
[],
- "4226692983",
+ "229662723",
{
- "_11": 485,
- "_44": 45,
- "_46": 487,
- "_48": 488
+ "_13": 501,
+ "_60": 503,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 504,
+ "_466": 505,
+ "_470": 504
},
- "6sEu91zwlBGSKOqFiNpGlA:100.00:2",
+ {},
[],
- "4239853523",
- {
- "_11": 489,
- "_44": 20,
- "_46": 52,
- "_48": 491
- },
[],
- "dynamic_configs",
+ "387752763",
{
- "_494": 495,
- "_505": 506,
- "_513": 514,
- "_518": 519,
- "_524": 525,
- "_530": 531,
- "_545": 546,
- "_598": 599,
- "_604": 605,
- "_608": 609,
- "_642": 643,
- "_648": 649,
- "_653": 654,
- "_661": 662
+ "_13": 506,
+ "_60": 508,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 511,
+ "_466": 516,
+ "_470": 511
},
- "357305500",
{
- "_11": 494,
- "_44": 496,
- "_497": 498,
- "_46": 498,
- "_499": 20,
- "_48": 500,
- "_503": 20,
- "_504": 20
+ "_509": 61,
+ "_510": 61
},
- {},
- "group",
- "targetingGate",
- "is_device_based",
+ "enable_slash_commands",
+ "enable_rich_text_composer",
[
- 501
+ 512,
+ 513,
+ 514
],
{
- "_55": 502,
- "_57": 58,
- "_59": 52
+ "_67": 97,
+ "_69": 70,
+ "_71": 98
},
- "317829697",
- "is_user_in_experiment",
- "is_experiment_active",
- "550560761",
{
- "_11": 505,
- "_44": 507,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 512
+ "_67": 100,
+ "_69": 101,
+ "_71": 102
},
{
- "_508": 509,
- "_510": 511
+ "_67": 515,
+ "_69": 101,
+ "_71": 91
},
- "history_results_limit",
- 6,
- "local_results_limit",
- 2,
+ "1410082514",
[],
- "1054486462",
+ "468168202",
{
- "_11": 513,
- "_44": 515,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 517
+ "_13": 517,
+ "_60": 519,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 547,
+ "_466": 550,
+ "_470": 547
+ },
+ {
+ "_520": 61,
+ "_521": 24,
+ "_522": 61,
+ "_523": 61,
+ "_524": 24,
+ "_525": 24,
+ "_526": 24,
+ "_527": 24,
+ "_528": 24,
+ "_529": 24,
+ "_530": 24,
+ "_531": 24,
+ "_532": 24,
+ "_533": 24,
+ "_534": 61,
+ "_535": 61,
+ "_536": 24,
+ "_537": 61,
+ "_538": 61,
+ "_539": 540,
+ "_541": 542,
+ "_543": 24,
+ "_544": 545,
+ "_546": 24
},
+ "is_team_enabled",
+ "is_yearly_plus_subscription_enabled",
+ "is_split_between_personal_and_business_enabled",
+ "is_modal_fullscreen",
+ "is_v2_toggle_labels_enabled",
+ "is_bw",
+ "is_produce_colors",
+ "is_produce_color_scheme",
+ "is_mobile_web_toggle_enabled",
+ "is_enterprise_enabled",
+ "is_produce_text",
+ "is_optimized_checkout",
+ "is_save_stripe_payment_info_enabled",
+ "is_auto_save_stripe_payment_info_enabled",
+ "does_manage_my_subscription_link_take_user_to_subscription_settings",
+ "should_open_cancellation_survey_after_canceling",
+ "should_cancel_button_take_user_to_stripe",
+ "should_show_manage_my_subscription_link",
+ "is_stripe_manage_subscription_link_enabled",
+ "cancellation_modal_cancel_button_color",
+ "danger",
+ "cancellation_modal_go_back_button_color",
+ "secondary",
+ "should_show_cp",
+ "cp_eligibility_months",
+ 3,
+ "should_offer_paypal_when_eligible",
+ [
+ 548
+ ],
{
- "_516": 20
+ "_67": 549,
+ "_69": 101,
+ "_71": 91
},
- "sidebar_enabled",
+ "1847092144",
[],
- "1165680818",
+ "668322707",
{
- "_11": 518,
- "_44": 520,
- "_497": 522,
- "_46": 522,
- "_499": 20,
- "_48": 523,
- "_503": 45,
- "_504": 45
+ "_13": 551,
+ "_60": 553,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 556,
+ "_466": 557,
+ "_470": 556
},
{
- "_521": 20
+ "_554": 61,
+ "_555": 61
},
- "show_banner",
- "6bTpQafLU9PMzWkCp68hYI",
+ "show_citations_with_title",
+ "use_chip_style_citations",
[],
- "1535013773",
+ [],
+ "871635014",
{
- "_11": 524,
- "_44": 526,
- "_497": 528,
- "_46": 528,
- "_499": 20,
- "_48": 529,
- "_503": 45,
- "_504": 45
+ "_13": 558,
+ "_60": 560,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 569,
+ "_466": 570,
+ "_470": 569
},
{
- "_527": 20
+ "_561": 24,
+ "_562": 61,
+ "_563": 24,
+ "_564": 565,
+ "_566": 91,
+ "_567": 24,
+ "_568": 24
},
- "enabled",
- "1WI6pUFxdAZvczWhP9zEHH",
+ "snowflake_composer_entry_point",
+ "use_broad_rate_limit_language",
+ "voice_holdout",
+ "krisp_noise_filter",
+ "none",
+ "voice_entry_point_style",
+ "show_label_on_button",
+ "voice_only",
[],
- "1682643554",
+ [],
+ "1170120107",
{
- "_11": 530,
- "_44": 532,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 544
+ "_13": 571,
+ "_60": 573,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 575,
+ "_466": 576,
+ "_470": 575
},
{
- "_533": 534
+ "_574": 24
},
- "school_configurations",
+ "is_whisper_enabled",
+ [],
+ [],
+ "1238742812",
{
- "_535": 536
+ "_13": 577,
+ "_60": 579,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 581,
+ "_466": 582,
+ "_470": 581
},
- "openai_1signup_for_1",
{
- "_537": 538,
- "_539": 540,
- "_541": 542
+ "_580": 24
},
- "display_name",
- "OpenAI",
- "promotion_campaign_id",
- "students-2025-one-month-free",
- "domains",
- [
- 543
- ],
- "gmail.com",
+ "should_enable_zh_tw",
[],
- "1919164330",
+ [],
+ "1320801051",
{
- "_11": 545,
- "_44": 547,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 597
+ "_13": 583,
+ "_60": 585,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 590,
+ "_466": 591,
+ "_470": 590
},
{
- "_533": 548
+ "_586": 24,
+ "_587": 24,
+ "_588": 61,
+ "_589": 24
},
+ "hide_new_at_workspace_section",
+ "hide_section_new_at_workspace",
+ "gpt_discovery_experiment_enabled",
+ "popular_at_my_workspace_enabled",
+ [],
+ [],
+ "1346366956",
{
- "_549": 550,
- "_554": 555,
- "_559": 560,
- "_564": 565,
- "_569": 570,
- "_575": 576,
- "_580": 581,
- "_586": 587,
- "_592": 593
+ "_13": 592,
+ "_60": 594,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 605,
+ "_466": 606,
+ "_470": 605
+ },
+ {
+ "_595": 24,
+ "_596": 597,
+ "_598": 24,
+ "_486": 24,
+ "_599": 24,
+ "_600": 24,
+ "_601": 24,
+ "_602": 24,
+ "_603": 604
},
- "oregonstate",
+ "use_email_otp",
+ "signup_cta_copy",
+ "SIGN_UP",
+ "login_allow_phone",
+ "forwardToAuthApi",
+ "use_new_phone_ui",
+ "in_signup_allow_phone_hold_out",
+ "use_formatted_national_number",
+ "continue_with_email_phone_placement",
+ "after_sso",
+ [],
+ [],
+ "1547743984",
{
- "_537": 551,
- "_539": 540,
- "_541": 552
+ "_13": 607,
+ "_60": 609,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 622,
+ "_466": 625,
+ "_470": 622
+ },
+ {
+ "_610": 24,
+ "_611": 24,
+ "_612": 24,
+ "_613": 24,
+ "_614": 24,
+ "_615": 24,
+ "_616": 24,
+ "_617": 61,
+ "_618": 24,
+ "_619": 24,
+ "_620": 61,
+ "_621": 61
},
- "Oregon State University",
- [
- 553
- ],
- "oregonstate.edu",
- "universityofcentralflorida",
- {
- "_537": 556,
- "_539": 540,
- "_541": 557
- },
- "University of Central Florida",
+ "should_simplify_modal",
+ "is_simplified_sharing_modal_enabled",
+ "is_social_share_options_enabled",
+ "is_update_shared_links_enabled",
+ "is_discoverability_toggle_enabled",
+ "show_copylink_state_if_no_updates",
+ "is_continue_enabled",
+ "show_share_button_text",
+ "is_meta_improvements_enabled",
+ "show_share_button_inline",
+ "use_dalle_preview",
+ "in_dalle_preview_exp",
[
- 558
+ 623
],
- "ucf.edu",
- "universityofsouthflorida",
{
- "_537": 561,
- "_539": 540,
- "_541": 562
+ "_67": 624,
+ "_69": 101,
+ "_71": 91
},
- "University of South Florida",
- [
- 563
- ],
- "usf.edu",
- "jumbo",
+ "4038001028",
+ [],
+ "1630876919",
{
- "_537": 566,
- "_539": 540,
- "_541": 567
+ "_13": 626,
+ "_60": 628,
+ "_356": 635,
+ "_62": 635,
+ "_358": 24,
+ "_64": 636,
+ "_466": 640,
+ "_468": 641,
+ "_364": 61,
+ "_363": 61,
+ "_470": 642
+ },
+ {
+ "_629": 61,
+ "_630": 61,
+ "_631": 61,
+ "_632": 61,
+ "_633": 24,
+ "_634": 61
},
- "Tufts University",
+ "enable_indexing",
+ "backfill_completed",
+ "enable_local_indexing",
+ "enable_ux",
+ "enable_us_rollout",
+ "enable_ux_rollout",
+ "31UyKaWB8PZhFswQt29NlZ",
[
- 568
+ 637
],
- "tufts.edu",
- "michiganstate",
{
- "_537": 571,
- "_539": 572,
- "_541": 573
+ "_67": 638,
+ "_69": 70,
+ "_71": 639
},
- "Michigan State",
- "students-2025-three-month-free",
+ "2372319800",
+ "4NZS9cdXgw2uEnVQCdyNMH:100.00:30",
[
- 574
+ 629,
+ 631,
+ 630,
+ 632,
+ 634
],
- "msu.edu",
- "georgewashington",
+ "1028722647",
+ [],
+ "1696863369",
{
- "_537": 577,
- "_539": 572,
- "_541": 578
+ "_13": 643,
+ "_60": 645,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 648,
+ "_466": 655,
+ "_470": 648
},
- "George Washington University",
- [
- 579
- ],
- "gwmail.gwu.edu",
- "westernuniversity",
{
- "_537": 582,
- "_539": 583,
- "_541": 584
+ "_646": 24,
+ "_647": 24
},
- "Western University",
- "students-2025-one-month-discount",
+ "has_sidekick_access",
+ "show_nux_banner",
[
- 585
+ 649,
+ 652
],
- "uwo.ca",
- "queensuniversity",
{
- "_537": 588,
- "_539": 589,
- "_541": 590
+ "_67": 650,
+ "_69": 101,
+ "_71": 651
},
- "Queen's University",
- "students-2025-three-month-discount",
- [
- 591
- ],
- "queensu.ca",
- "openai_internal_test",
+ "1938289220",
+ "79O8DQPDmTKxnLdAH9loVk",
{
- "_537": 538,
- "_539": 589,
- "_541": 594
+ "_67": 653,
+ "_69": 101,
+ "_71": 654
},
- [
- 595,
- 596
- ],
- "mail.openai.com",
- "openai.com",
+ "2033872549",
+ "7dScmNU0bu2UQuzCNtva50",
[],
- "2043237793",
+ "1697140512",
{
- "_11": 598,
- "_44": 600,
- "_497": 498,
- "_46": 498,
- "_499": 20,
- "_48": 601,
- "_503": 20,
- "_504": 45
+ "_13": 656,
+ "_60": 658,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 660,
+ "_466": 664,
+ "_470": 660
},
- {},
+ {
+ "_647": 24,
+ "_659": 24
+ },
+ "can_download_sidetron",
[
- 602
+ 661
],
{
- "_55": 603,
- "_57": 58,
- "_59": 52
+ "_67": 662,
+ "_69": 101,
+ "_71": 663
+ },
+ "2919213474",
+ "6HLlb6nSjJk5ADynHucWgP",
+ [],
+ "1704793646",
+ {
+ "_13": 665,
+ "_60": 667,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 671,
+ "_466": 674,
+ "_470": 671
},
- "2033346301",
- "2343547499",
{
- "_11": 604,
- "_44": 606,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 607
+ "_668": 24,
+ "_669": 670
},
+ "greeting_web",
+ "name_char_limit",
+ 20,
+ [
+ 672
+ ],
{
- "_553": 549,
- "_558": 554,
- "_563": 559,
- "_568": 564,
- "_585": 580,
- "_591": 586,
- "_574": 569,
- "_579": 575,
- "_595": 592
+ "_67": 673,
+ "_69": 101,
+ "_71": 91
},
+ "331938894",
[],
- "2821602598",
+ "1780960461",
{
- "_11": 608,
- "_44": 610,
- "_497": 52,
- "_46": 52,
- "_499": 45,
- "_48": 641
+ "_13": 675,
+ "_60": 677,
+ "_356": 488,
+ "_62": 488,
+ "_358": 24,
+ "_64": 680,
+ "_466": 683,
+ "_468": 684,
+ "_364": 61,
+ "_363": 24,
+ "_470": 685
},
{
- "_611": 612
+ "_678": 24,
+ "_679": 24,
+ "_668": 24
},
- "Football",
+ "mobile",
+ "web",
[
- 613
+ 681
],
{
- "_614": 611,
- "_615": 616
+ "_67": 682,
+ "_69": 101,
+ "_71": 91
},
- "title",
- "templates",
+ "3074373870",
[
- 617,
- 627,
- 634
+ 678,
+ 679
],
+ "2198260923",
+ [],
+ "1914829685",
{
- "_618": 619,
- "_620": 621
+ "_13": 686,
+ "_60": 688,
+ "_356": 690,
+ "_62": 690,
+ "_358": 61,
+ "_64": 691,
+ "_466": 695,
+ "_468": 696,
+ "_364": 24,
+ "_363": 24,
+ "_470": 697
},
- "text",
- "The [input] are down [input] with [input] left in the [input] quarter. What are their odds they [input]?",
- "suggestions",
- [
- 622,
- 623,
- 624,
- 625,
- 626
- ],
- "KC Chiefs",
- "27 - 10",
- "5 minutes",
- "4th",
- "win",
{
- "_618": 628,
- "_620": 629
+ "_689": 61
},
- "I'm [input], played [input] and work out [input]. Help me train like a [input].",
+ "forward_to_authapi",
+ "2RO4BOrVWPrsxRUPYNKPLe:override",
[
- 630,
- 631,
- 632,
- 633
+ 692
],
- "29",
- "football",
- "3 days a week",
- "NFL running back",
{
- "_618": 635,
- "_620": 636
+ "_67": 693,
+ "_69": 70,
+ "_71": 694
},
- "Write me a [input]. Include [input], [input], and [input].",
+ "14938527",
+ "3QgLJ91lKIc7VAOjo5SDz7",
[
- 637,
- 638,
- 639,
- 640
+ 689
],
- "perfect halftime show song",
- "dancing",
- "fireworks",
- "being super fierce",
- [],
- "3230069703",
+ "1856338298",
+ [
+ 692
+ ],
+ "2152104812",
{
- "_11": 642,
- "_44": 644,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 647
+ "_13": 698,
+ "_60": 700,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 703,
+ "_466": 704,
+ "_470": 703
},
{
- "_645": 646
+ "_701": 24,
+ "_702": 24
},
- "expirySeconds",
- 15,
+ "hide_gpts_if_none",
+ "hide_default_gpts",
[],
- "3519108196",
- {
- "_11": 648,
- "_44": 650,
- "_497": 651,
- "_46": 651,
- "_499": 20,
- "_48": 652,
- "_503": 20,
- "_504": 20
- },
- {},
- "prestart",
[],
- "3983984123",
+ "3048336830",
{
- "_11": 653,
- "_44": 655,
- "_497": 651,
- "_46": 651,
- "_499": 20,
- "_48": 657,
- "_658": 659,
- "_503": 20,
- "_504": 20,
- "_660": 45
+ "_13": 705,
+ "_60": 707,
+ "_356": 710,
+ "_62": 710,
+ "_358": 24,
+ "_64": 711,
+ "_466": 718,
+ "_470": 711
},
{
- "_656": 20
+ "_708": 61,
+ "_709": 24
},
- "is_memory_undo_enabled",
- [],
- "explicit_parameters",
+ "is-enabled",
+ "use-rtl-layout",
+ "localization-april Nzc6Xnht6tIVmb48Ejg1T:override",
[
- 656
+ 712,
+ 715
],
- "is_in_layer",
- "4198227845",
{
- "_11": 661,
- "_44": 663,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 670
+ "_67": 713,
+ "_69": 101,
+ "_71": 714
},
+ "3922145230",
+ "14DZA2LumaPqAdCo52CrUB",
{
- "_664": 20,
- "_665": 20,
- "_666": 20,
- "_667": 20,
- "_668": 20,
- "_669": 20
+ "_67": 716,
+ "_69": 70,
+ "_71": 717
},
- "enabled_for_platform_override",
- "enabled_for_platform_new",
- "enabled_for_platform_existing",
- "enabled_for_chat_override",
- "enabled_for_chat_new",
- "enabled_for_chat_existing",
+ "3700615661",
+ "66covjaoZoe9pQR4I68jOB",
[],
- "layer_configs",
+ "3178812292",
{
- "_673": 674,
- "_707": 708,
- "_729": 730,
- "_734": 735,
- "_740": 741,
- "_753": 754,
- "_763": 764,
- "_768": 769,
- "_779": 780,
- "_787": 788,
- "_796": 797,
- "_829": 830,
- "_837": 838,
- "_843": 844,
- "_866": 867,
- "_876": 877,
- "_895": 896,
- "_910": 911,
- "_916": 917,
- "_922": 923,
- "_931": 932,
- "_950": 951,
- "_961": 962,
- "_967": 968,
- "_986": 987,
- "_992": 993,
- "_1007": 1008,
- "_1020": 1021,
- "_1026": 1027,
- "_1036": 1037,
- "_1042": 1043,
- "_1051": 1052,
- "_1058": 1059,
- "_1073": 1074,
- "_1079": 1080,
- "_1089": 1090,
- "_1105": 1106,
- "_1115": 1116,
- "_1122": 1123,
- "_1128": 1129,
- "_1133": 1134,
- "_1145": 1146,
- "_1156": 1157,
- "_1163": 1164,
- "_1169": 1170,
- "_1187": 1188,
- "_1200": 1201,
- "_1207": 1208,
- "_1212": 1213,
- "_1238": 1239,
- "_1246": 1247,
- "_1252": 1253,
- "_1286": 1287,
- "_1293": 1294,
- "_1306": 1307,
- "_1311": 1312,
- "_1318": 1319,
- "_1323": 1324,
- "_1353": 1354,
- "_1358": 1359
+ "_13": 719,
+ "_60": 721,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 723,
+ "_466": 726,
+ "_470": 723
},
- "109457",
{
- "_11": 673,
- "_44": 675,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 704,
- "_658": 705,
- "_706": 704
- },
- {
- "_676": 20,
- "_677": 20,
- "_678": 20,
- "_679": 20,
- "_680": 20,
- "_681": 682,
- "_683": 20,
- "_684": 20,
- "_685": 20,
- "_686": 682,
- "_687": 20,
- "_688": 689,
- "_690": 20,
- "_691": 20,
- "_692": 20,
- "_693": 20,
- "_694": 20,
- "_695": 696,
- "_697": 20,
- "_698": 699,
- "_700": 701,
- "_702": 701,
- "_703": 20
+ "_722": 24
},
- "is_starter_prompt_popular",
- "is_starter_prompt_top_performer",
- "is_starter_prompt_back_and_forth",
- "use_starter_prompt_help_how_to",
- "model_talks_first",
- "model_talks_first_kind",
- "",
- "model_talks_first_augment_system_prompt",
- "is_starter_prompt_enabled_for_new_users_only",
- "add_system_prompt_during_onboarding",
- "onboarding_system_prompt_type",
- "enable_new_onboarding_flow",
- "new_onboarding_flow_qualified_start_date",
- "2099-11-04T00:00:00Z",
- "personalized_onboarding",
- "onboarding_show_custom_instructions_page",
- "write_custom_instructions_in_onboarding",
- "keep_onboarding_after_dismiss",
- "onboarding_dynamic_steps_based_on_main_usage",
- "onboarding_style",
- "NONE",
- "onboarding_show_followups",
- "onboarding_inject_cards_position",
- 3,
- "ONBOARDING_EXAMPLES_PROMPT_ID",
- "convo_gen_examples_v2",
- "onboarding_gen_examples_prompt_type",
- "show_new_chat_nux",
- [],
+ "use_f_convo",
+ [
+ 724
+ ],
+ {
+ "_67": 725,
+ "_69": 101,
+ "_71": 91
+ },
+ "3799260860",
[],
- "undelegated_secondary_exposures",
- "16152997",
+ "3436367576",
{
- "_11": 707,
- "_44": 709,
- "_497": 720,
- "_46": 720,
- "_499": 20,
- "_48": 721,
- "_658": 725,
- "_726": 727,
- "_504": 45,
- "_503": 45,
- "_706": 728
- },
- {
- "_710": 45,
- "_711": 20,
- "_712": 45,
- "_713": 682,
- "_714": 682,
- "_715": 716,
- "_717": 20,
- "_718": 45,
- "_719": 20
+ "_13": 727,
+ "_60": 729,
+ "_356": 488,
+ "_62": 488,
+ "_358": 24,
+ "_64": 731,
+ "_466": 734,
+ "_468": 735,
+ "_364": 61,
+ "_363": 24,
+ "_470": 736
+ },
+ {
+ "_629": 24,
+ "_730": 406,
+ "_632": 24,
+ "_631": 24,
+ "_630": 24
},
- "show_preview_when_collapsed",
- "expand_by_default",
- "is_enabled",
- "summarizer_system_prompt",
- "summarizer_chunk_template",
- "summarizer_chunk_char_limit",
- 0,
- "enable_o3_mini_retrieval",
- "override_o3_mini_to_high",
- "enable_reason_by_default",
- "1hSTHseZKMxDqmUQocEaTX",
+ "wave",
[
- 722
+ 732
],
{
- "_55": 723,
- "_57": 98,
- "_59": 724
+ "_67": 733,
+ "_69": 101,
+ "_71": 91
},
- "634636705",
- "38JmXIEAhtufyAE1NWp5q4:100.00:1",
+ "1221279314",
[
- 712,
- 711,
- 710,
- 717,
- 718,
- 719
+ 629,
+ 730,
+ 630,
+ 632,
+ 631
],
- "allocated_experiment_name",
- "3756684173",
+ "938456440",
[],
- "40440673",
+ "3471271313",
{
- "_11": 729,
- "_44": 731,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 732,
- "_658": 733,
- "_706": 732
+ "_13": 737,
+ "_60": 739,
+ "_356": 741,
+ "_62": 741,
+ "_358": 61,
+ "_64": 742,
+ "_466": 743,
+ "_468": 744,
+ "_364": 24,
+ "_363": 24,
+ "_470": 745
},
- {},
+ {
+ "_740": 24
+ },
+ "show_upsell",
+ "prestart",
[],
+ [
+ 740
+ ],
+ "3021307436",
[],
- "51287004",
+ "3517133692",
{
- "_11": 734,
- "_44": 736,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 738,
- "_658": 739,
- "_706": 738
+ "_13": 746,
+ "_60": 748,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 750,
+ "_466": 751,
+ "_470": 750
},
{
- "_737": 45
+ "_749": 24
},
- "enable",
+ "is_memory_undo_enabled",
[],
[],
- "183390215",
+ "3590606857",
{
- "_11": 740,
- "_44": 742,
- "_497": 745,
- "_46": 745,
- "_499": 45,
- "_48": 746,
- "_658": 750,
- "_726": 751,
- "_504": 45,
- "_503": 45,
- "_706": 752
+ "_13": 752,
+ "_60": 754,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 756,
+ "_466": 757,
+ "_470": 756
},
{
- "_743": 20,
- "_744": 20
+ "_755": 24
},
- "signup_allow_phone",
- "in_phone_signup_holdout",
- "6jCiq8iq6MBNMsvsrJCUMD",
- [
- 747
- ],
+ "should_offer_paypal",
+ [],
+ [],
+ "3637408529",
{
- "_55": 748,
- "_57": 98,
- "_59": 749
+ "_13": 758,
+ "_60": 760,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 786,
+ "_466": 791,
+ "_470": 786
+ },
+ {
+ "_761": 61,
+ "_762": 24,
+ "_763": 24,
+ "_764": 24,
+ "_765": 766,
+ "_767": 768,
+ "_769": 61,
+ "_770": 61,
+ "_771": 61,
+ "_772": 24,
+ "_773": 61,
+ "_774": 24,
+ "_775": 24,
+ "_776": 61,
+ "_777": 24,
+ "_778": 61,
+ "_779": 545,
+ "_780": 781,
+ "_782": 61,
+ "_783": 784,
+ "_785": 24
},
- "2694066659",
- "22eNo1SwrDbVQz4YdMv3p1",
+ "is_anon_chat_enabled",
+ "is_anon_chat_enabled_for_new_users_only",
+ "is_try_it_first_on_login_page_enabled",
+ "is_no_auth_welcome_modal_enabled",
+ "no_auth_soft_rate_limit",
+ 5,
+ "no_auth_hard_rate_limit",
+ 1200,
+ "should_show_no_auth_signup_banner",
+ "is_no_auth_welcome_back_modal_enabled",
+ "is_no_auth_soft_rate_limit_modal_enabled",
+ "is_no_auth_gpt4o_modal_enabled",
+ "is_login_primary_button",
+ "is_desktop_primary_auth_button_on_right",
+ "is_primary_btn_blue",
+ "should_show_disclaimer_only_once_per_device",
+ "is_secondary_banner_button_enabled",
+ "is_secondary_auth_banner_button_enabled",
+ "no_auth_banner_signup_rate_limit",
+ "composer_text",
+ "ASK_ANYTHING",
+ "is_in_composer_text_exp",
+ "no_auth_upsell_wording",
+ "NO_CHANGE",
+ "should_refresh_access_token_error_take_user_to_no_auth",
[
- 743
+ 787,
+ 789
],
- "1111393717",
+ {
+ "_67": 788,
+ "_69": 101,
+ "_71": 149
+ },
+ "3238165271",
+ {
+ "_67": 790,
+ "_69": 101,
+ "_71": 149
+ },
+ "2983591614",
[],
- "190694971",
+ "3647926857",
{
- "_11": 753,
- "_44": 755,
- "_497": 498,
- "_46": 498,
- "_499": 20,
- "_48": 757,
- "_658": 760,
- "_726": 761,
- "_504": 45,
- "_503": 20,
- "_706": 762
+ "_13": 792,
+ "_60": 794,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 802,
+ "_466": 807,
+ "_470": 802
},
{
- "_756": 20
+ "_795": 61,
+ "_796": 24,
+ "_797": 798,
+ "_799": 24,
+ "_800": 24,
+ "_801": 565
},
- "show_nux",
+ "unified_architecture",
+ "ux_updates",
+ "inference_debounce_ms",
+ 400,
+ "autoswitcher_enabled",
+ "copy-and-link",
+ "reasoning_slider",
[
- 758
+ 803,
+ 805
],
{
- "_55": 759,
- "_57": 58,
- "_59": 52
+ "_67": 804,
+ "_69": 101,
+ "_71": 91
},
- "6002337",
- [
- 756
- ],
- "1090508242",
- [],
- "229662723",
+ "850280859",
{
- "_11": 763,
- "_44": 765,
- "_497": 52,
- "_46": 52,
- "_499": 45,
- "_48": 766,
- "_658": 767,
- "_706": 766
+ "_67": 806,
+ "_69": 101,
+ "_71": 91
},
- {},
- [],
+ "13512905",
[],
- "387752763",
+ "3711177917",
{
- "_11": 768,
- "_44": 770,
- "_497": 773,
- "_46": 773,
- "_499": 45,
- "_48": 774,
- "_658": 777,
- "_726": 768,
- "_504": 20,
- "_503": 20,
- "_706": 778
+ "_13": 808,
+ "_60": 810,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 813,
+ "_466": 814,
+ "_470": 813
},
{
- "_771": 45,
- "_772": 45
- },
- "enable_slash_commands",
- "enable_rich_text_composer",
- "5UE8g4T56yxUBUYancL7KB:override",
- [
- 775,
- 776
- ],
- {
- "_55": 95,
- "_57": 58,
- "_59": 52
+ "_811": 24,
+ "_812": 61
},
+ "is_summarizer_default_expanded",
+ "is_inline_summarizer_enabled",
+ [],
+ [],
+ "3972089454",
{
- "_55": 97,
- "_57": 98,
- "_59": 99
+ "_13": 815,
+ "_60": 817,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 820,
+ "_466": 821,
+ "_470": 820
},
- [
- 772,
- 771
- ],
- [
- 775,
- 776
- ],
- "415386882",
{
- "_11": 779,
- "_44": 781,
- "_497": 52,
- "_46": 52,
- "_499": 45,
- "_48": 783,
- "_658": 786,
- "_706": 783
+ "_818": 819
},
+ "search_scoring_dyconfig_name",
+ "gizmo_search_score_config",
+ [],
+ [],
+ "4211831761",
{
- "_782": 20
+ "_13": 822,
+ "_60": 824,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 825,
+ "_466": 826,
+ "_470": 825
},
- "is_voice_mode_entry_point_enabled",
- [
- 784
- ],
{
- "_55": 785,
- "_57": 58,
- "_59": 52
+ "_368": 24
},
- "1644396868",
[],
- "453021389",
+ [],
+ "sdkParams",
+ {},
+ "has_updates",
+ "generator",
+ "statsig-node-sdk",
+ "sdkInfo",
{
- "_11": 787,
- "_44": 789,
- "_497": 52,
- "_46": 52,
- "_499": 45,
- "_48": 792,
- "_658": 795,
- "_706": 792
+ "_834": 835,
+ "_836": 837
},
+ "sdkType",
+ "statsig-node",
+ "sdkVersion",
+ "5.26.0",
+ "time",
+ 1742979946815,
+ "evaluated_keys",
{
- "_790": 20,
- "_791": 20
+ "_842": 12,
+ "_843": 844
},
- "enable-block-animations",
- "enable-word-animations",
- [
- 793
- ],
+ "userID",
+ "user-chatgpt",
{
- "_55": 794,
- "_57": 58,
- "_59": 52
+ "_845": 846,
+ "_847": 846,
+ "_848": 846,
+ "_849": 33,
+ "_850": 33
},
- "3016192915",
- [],
- "468168202",
+ "WebAnonymousCookieID",
+ "f10eee0a-3567-4980-ad81-98da119a5c6b",
+ "DeviceId",
+ "stableID",
+ "workspace_id",
+ "account_id",
+ "hash_used",
+ "djb2",
{
- "_11": 796,
- "_44": 798,
- "_497": 824,
- "_46": 824,
- "_499": 20,
- "_48": 825,
- "_658": 826,
- "_726": 827,
- "_504": 45,
- "_503": 45,
- "_706": 828
- },
- {
- "_799": 45,
- "_800": 20,
- "_801": 45,
- "_802": 45,
- "_803": 20,
- "_804": 20,
- "_805": 20,
- "_806": 20,
- "_807": 20,
- "_808": 20,
- "_809": 20,
- "_810": 20,
- "_811": 20,
- "_812": 20,
- "_813": 45,
- "_814": 45,
- "_815": 20,
- "_816": 45,
- "_817": 45,
- "_818": 819,
- "_820": 821,
- "_822": 20,
- "_823": 699
+ "_842": 12,
+ "_854": 855,
+ "_856": 857,
+ "_50": 51,
+ "_843": 844,
+ "_861": 862
},
- "is_team_enabled",
- "is_yearly_plus_subscription_enabled",
- "is_split_between_personal_and_business_enabled",
- "is_modal_fullscreen",
- "is_v2_toggle_labels_enabled",
- "is_bw",
- "is_produce_colors",
- "is_produce_color_scheme",
- "is_mobile_web_toggle_enabled",
- "is_enterprise_enabled",
- "is_produce_text",
- "is_optimized_checkout",
- "is_save_stripe_payment_info_enabled",
- "is_auto_save_stripe_payment_info_enabled",
- "does_manage_my_subscription_link_take_user_to_subscription_settings",
- "should_open_cancellation_survey_after_canceling",
- "should_cancel_button_take_user_to_stripe",
- "should_show_manage_my_subscription_link",
- "is_stripe_manage_subscription_link_enabled",
- "cancellation_modal_cancel_button_color",
- "danger",
- "cancellation_modal_go_back_button_color",
- "secondary",
- "should_show_cp",
- "cp_eligibility_months",
- "1R1OTAoPRlIVIbWb9sM0Em",
- [],
- [
- 818,
- 820
- ],
- "2517852108",
- [],
- "474444727",
+ "country",
+ "SG",
+ "custom",
{
- "_11": 829,
- "_44": 831,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 835,
- "_658": 836,
- "_706": 835
+ "_858": 35,
+ "_849": 33,
+ "_850": 33,
+ "_859": 61,
+ "_860": 6
},
+ "plan_type",
+ "is_paid",
+ "auth_status",
+ "statsigEnvironment",
{
- "_832": 45,
- "_833": 834
+ "_863": 864
},
- "show_custom_instr_message",
- "custom_instr_message_timeout_duration",
- 1500,
- [],
- [],
- "590557768",
- {
- "_11": 837,
- "_44": 839,
- "_497": 52,
- "_46": 52,
- "_499": 45,
- "_48": 841,
- "_658": 842,
- "_706": 841
+ "tier",
+ "production",
+ "experimental",
+ {
+ "_56": 867,
+ "_350": 1190,
+ "_446": 1293,
+ "_827": 1818,
+ "_829": 61,
+ "_830": 831,
+ "_832": 1819,
+ "_838": 839,
+ "_840": 1820,
+ "_851": 852,
+ "_9": 1822
+ },
+ {
+ "_693": 868,
+ "_870": 871,
+ "_873": 874,
+ "_877": 878,
+ "_883": 884,
+ "_887": 888,
+ "_891": 892,
+ "_895": 896,
+ "_898": 899,
+ "_902": 903,
+ "_905": 906,
+ "_910": 911,
+ "_914": 915,
+ "_918": 919,
+ "_927": 928,
+ "_931": 932,
+ "_935": 936,
+ "_939": 940,
+ "_943": 944,
+ "_947": 948,
+ "_132": 954,
+ "_956": 957,
+ "_959": 960,
+ "_962": 963,
+ "_965": 966,
+ "_968": 969,
+ "_973": 974,
+ "_977": 978,
+ "_981": 982,
+ "_985": 986,
+ "_988": 989,
+ "_992": 993,
+ "_996": 997,
+ "_1000": 1001,
+ "_1003": 1004,
+ "_1007": 1008,
+ "_1010": 1011,
+ "_1014": 1015,
+ "_1018": 1019,
+ "_1021": 1022,
+ "_1024": 1025,
+ "_1027": 1028,
+ "_1031": 1032,
+ "_291": 1034,
+ "_1036": 1037,
+ "_1039": 1040,
+ "_1043": 1044,
+ "_1047": 1048,
+ "_1053": 1054,
+ "_1057": 1058,
+ "_1061": 1062,
+ "_1065": 1066,
+ "_1068": 1069,
+ "_1072": 1073,
+ "_1076": 1077,
+ "_1080": 1081,
+ "_1086": 1087,
+ "_1090": 1091,
+ "_1096": 1097,
+ "_1101": 1102,
+ "_1105": 1106,
+ "_1108": 1109,
+ "_1111": 1112,
+ "_1114": 1115,
+ "_1117": 1118,
+ "_1120": 1121,
+ "_1124": 1125,
+ "_1127": 1128,
+ "_1131": 1132,
+ "_293": 1134,
+ "_1138": 1139,
+ "_1142": 1143,
+ "_1146": 1147,
+ "_1149": 1150,
+ "_1152": 1153,
+ "_1156": 1157,
+ "_713": 1160,
+ "_1162": 1163,
+ "_1166": 1167,
+ "_1169": 1170,
+ "_1172": 1173,
+ "_1176": 1177,
+ "_1180": 1181,
+ "_1183": 1184,
+ "_1186": 1187
},
{
- "_840": 20
+ "_13": 693,
+ "_60": 61,
+ "_62": 694,
+ "_64": 869
},
- "should_show_return_home_btn",
[],
+ "156153730",
+ {
+ "_13": 870,
+ "_60": 24,
+ "_62": 91,
+ "_64": 872
+ },
[],
- "660512088",
+ "222560275",
{
- "_11": 843,
- "_44": 845,
- "_497": 52,
- "_46": 52,
- "_499": 45,
- "_48": 853,
- "_658": 865,
- "_706": 853
+ "_13": 873,
+ "_60": 24,
+ "_62": 875,
+ "_64": 876
},
+ "5pv2QpbgXNDB0QnBo3LTti:10.00:1",
+ [],
+ "223382091",
{
- "_846": 20,
- "_847": 45,
- "_848": 20,
- "_849": 20,
- "_850": 20,
- "_851": 20,
- "_852": 20
+ "_13": 877,
+ "_60": 24,
+ "_62": 879,
+ "_64": 880
},
- "enable_arch_updates",
- "include_legacy_sidebar_contents",
- "include_floating_state",
- "include_share_on_mobile",
- "include_account_settings_move",
- "include_scrolling_behavior_update",
- "include_revised_sidebar_ia",
+ "1fKkxDiVebEKfTj8nDAjHe",
[
- 854,
- 856,
- 859,
- 862
+ 881,
+ 882
],
{
- "_55": 855,
- "_57": 58,
- "_59": 52
+ "_67": 329,
+ "_69": 101,
+ "_71": 91
},
- "2558701922",
{
- "_55": 857,
- "_57": 58,
- "_59": 858
+ "_67": 331,
+ "_69": 101,
+ "_71": 91
},
- "735930678",
- "6nGV45RQYtcIGTbPzppBhS",
+ "402391964",
{
- "_55": 860,
- "_57": 58,
- "_59": 861
+ "_13": 883,
+ "_60": 24,
+ "_62": 885,
+ "_64": 886
},
- "3011415004",
- "7pUMK6uci7sslAj8bP7VEA",
+ "14sAQaGJDosUKVV0DFZsAL",
+ [],
+ "471233253",
{
- "_55": 863,
- "_57": 58,
- "_59": 864
+ "_13": 887,
+ "_60": 24,
+ "_62": 889,
+ "_64": 890
},
- "854062205",
- "66y6sNojVqOdoNf0CX0JYC",
+ "3Yf9H7TxMC122pchwAkoLB",
[],
- "685344542",
+ "550432558",
{
- "_11": 866,
- "_44": 868,
- "_497": 870,
- "_46": 870,
- "_499": 20,
- "_48": 871,
- "_658": 873,
- "_726": 874,
- "_504": 20,
- "_503": 20,
- "_706": 875
+ "_13": 891,
+ "_60": 61,
+ "_62": 893,
+ "_64": 894
},
+ "4XbSwfoqBmVtxwz32sweLb",
+ [],
+ "573184874",
{
- "_869": 20,
- "_808": 45
+ "_13": 895,
+ "_60": 24,
+ "_62": 91,
+ "_64": 897
},
- "is_mobile_enterprise_enabled",
- "3INu3qkV6QoN42TYoP3gja:override",
- [
- 872
- ],
+ [],
+ "582612297",
{
- "_55": 180,
- "_57": 98,
- "_59": 182
+ "_13": 898,
+ "_60": 61,
+ "_62": 900,
+ "_64": 901
},
- [
- 808
- ],
- "1388643772",
- [
- 872
- ],
- "717266490",
+ "5censDsCfS2zQeYtTIui2s:100.00:2",
+ [],
+ "614413305",
{
- "_11": 876,
- "_44": 878,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 893,
- "_658": 894,
- "_706": 893
- },
- {
- "_879": 45,
- "_880": 45,
- "_881": 45,
- "_688": 689,
- "_687": 20,
- "_882": 20,
- "_690": 20,
- "_693": 20,
- "_692": 20,
- "_883": 716,
- "_884": 20,
- "_691": 20,
- "_885": 20,
- "_886": 45,
- "_887": 20,
- "_888": 889
+ "_13": 902,
+ "_60": 24,
+ "_62": 91,
+ "_64": 904
},
- "optimize_initial_modals",
- "defer_memory_modal",
- "enable_v2_cleanup",
- "use_plus_rl_during_onboarding",
- "plus_rl_during_onboarding_minutes_after_creation",
- "enable_mobile_app_upsell_banner",
- "one_tooltip_per_session",
- "one_announcement_tooltip_per_session",
- "onboarding_show_other_option",
- "onboarding_flow_tool_steps",
+ [],
+ "653593316",
+ {
+ "_13": 905,
+ "_60": 61,
+ "_62": 907,
+ "_64": 908
+ },
+ "GJ8pvorFDIe3Z4WonIr2s",
[
- 890,
- 891,
- 892
+ 909
],
- "dalle",
- "file_upload",
- "canvas",
- [],
+ {
+ "_67": 311,
+ "_69": 70,
+ "_71": 313
+ },
+ "706943082",
+ {
+ "_13": 910,
+ "_60": 61,
+ "_62": 912,
+ "_64": 913
+ },
+ "X9mJLzEwXwKo3p0LSSQIL",
[],
- "871635014",
+ "727502549",
{
- "_11": 895,
- "_44": 897,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 906,
- "_658": 909,
- "_706": 906
+ "_13": 914,
+ "_60": 61,
+ "_62": 916,
+ "_64": 917
},
+ "6EYbmM9CyqCRO6U6k3dROA",
+ [],
+ "756982148",
{
- "_898": 20,
- "_899": 45,
- "_900": 20,
- "_901": 902,
- "_903": 52,
- "_904": 20,
- "_905": 20
+ "_13": 918,
+ "_60": 61,
+ "_62": 920,
+ "_64": 921
},
- "snowflake_composer_entry_point",
- "use_broad_rate_limit_language",
- "voice_holdout",
- "krisp_noise_filter",
- "none",
- "voice_entry_point_style",
- "show_label_on_button",
- "voice_only",
+ "3oAWYdzegKPwxhFJjJrGz3",
[
- 907
+ 922,
+ 924
],
{
- "_55": 908,
- "_57": 58,
- "_59": 52
+ "_67": 923,
+ "_69": 101,
+ "_71": 91
},
- "4009046524",
- [],
- "1170120107",
+ "1456438623",
{
- "_11": 910,
- "_44": 912,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 914,
- "_658": 915,
- "_706": 914
+ "_67": 925,
+ "_69": 70,
+ "_71": 926
},
+ "3805873235",
+ "5KvGWxgOdialy0Dx9IrqmW:100.00:23",
+ "756982149",
{
- "_913": 20
+ "_13": 927,
+ "_60": 24,
+ "_62": 929,
+ "_64": 930
},
- "is_whisper_enabled",
+ "1rXg44we6gmcRqYsiZzfL4:0.00:1",
[],
+ "795789557",
+ {
+ "_13": 931,
+ "_60": 24,
+ "_62": 933,
+ "_64": 934
+ },
+ "2GzNaY2UIV2RYDjl4grJNG:0.00:1",
[],
- "1238742812",
+ "809056127",
{
- "_11": 916,
- "_44": 918,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 920,
- "_658": 921,
- "_706": 920
+ "_13": 935,
+ "_60": 61,
+ "_62": 937,
+ "_64": 938
},
+ "54ufwSF4KjxPi2AIrjbelh",
+ [],
+ "810701024",
{
- "_919": 20
+ "_13": 939,
+ "_60": 61,
+ "_62": 941,
+ "_64": 942
},
- "should_enable_zh_tw",
+ "6U8ODe5JvFov5zs1rOzJjD",
[],
+ "891514942",
+ {
+ "_13": 943,
+ "_60": 24,
+ "_62": 945,
+ "_64": 946
+ },
+ "aWUpylPDtFgWWhTxEsfCx",
[],
- "1320801051",
+ "989226566",
{
- "_11": 922,
- "_44": 924,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 929,
- "_658": 930,
- "_706": 929
+ "_13": 947,
+ "_60": 61,
+ "_62": 949,
+ "_64": 950
},
+ "6yqqYAWKtmfU8A7QGdiky4",
+ [
+ 951,
+ 952
+ ],
{
- "_925": 20,
- "_926": 20,
- "_927": 45,
- "_928": 20
+ "_67": 127,
+ "_69": 101,
+ "_71": 128
},
- "hide_new_at_workspace_section",
- "hide_section_new_at_workspace",
- "gpt_discovery_experiment_enabled",
- "popular_at_my_workspace_enabled",
- [],
- [],
- "1346366956",
{
- "_11": 931,
- "_44": 933,
- "_497": 498,
- "_46": 498,
- "_499": 45,
- "_48": 944,
- "_658": 947,
- "_726": 948,
- "_504": 45,
- "_503": 20,
- "_706": 949
+ "_67": 130,
+ "_69": 70,
+ "_71": 953
},
+ "7D8EAif25E3Y8A3zkg6ljp:100.00:2",
{
- "_934": 20,
- "_935": 936,
- "_937": 20,
- "_743": 20,
- "_938": 20,
- "_939": 20,
- "_940": 20,
- "_941": 20,
- "_942": 943
+ "_13": 132,
+ "_60": 61,
+ "_62": 134,
+ "_64": 955
},
- "use_email_otp",
- "signup_cta_copy",
- "SIGN_UP",
- "login_allow_phone",
- "forwardToAuthApi",
- "use_new_phone_ui",
- "in_signup_allow_phone_hold_out",
- "use_formatted_national_number",
- "continue_with_email_phone_placement",
- "after_sso",
- [
- 945
- ],
+ [],
+ "1032814809",
{
- "_55": 946,
- "_57": 58,
- "_59": 52
+ "_13": 956,
+ "_60": 24,
+ "_62": 91,
+ "_64": 958
},
- "662147245",
- [
- 939,
- 743,
- 941,
- 942
- ],
- "2491945013",
[],
- "1358188185",
+ "1064007944",
{
- "_11": 950,
- "_44": 952,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 957,
- "_658": 960,
- "_706": 957
+ "_13": 959,
+ "_60": 24,
+ "_62": 91,
+ "_64": 961
},
+ [],
+ "1099124727",
{
- "_953": 20,
- "_954": 20,
- "_955": 956
+ "_13": 962,
+ "_60": 24,
+ "_62": 91,
+ "_64": 964
},
- "local-cache",
- "prefetch-models",
- "local-cache-keys",
[],
- [
- 958
- ],
+ "1154002920",
{
- "_55": 959,
- "_57": 58,
- "_59": 52
+ "_13": 965,
+ "_60": 24,
+ "_62": 91,
+ "_64": 967
},
- "542939804",
[],
- "1358849452",
+ "1166240779",
{
- "_11": 961,
- "_44": 963,
- "_497": 52,
- "_46": 52,
- "_499": 45,
- "_48": 965,
- "_658": 966,
- "_706": 965
+ "_13": 968,
+ "_60": 61,
+ "_62": 970,
+ "_64": 971
},
+ "4UjTXwt2XK975PANdi1Ma6:25.00:5",
+ [
+ 972
+ ],
{
- "_964": 20
+ "_67": 299,
+ "_69": 101,
+ "_71": 91
},
- "disable-ssr",
- [],
+ "1214379119",
+ {
+ "_13": 973,
+ "_60": 24,
+ "_62": 975,
+ "_64": 976
+ },
+ "3Da3vJtBawdpcHFOEpjzZA:10.00:2",
[],
- "1547743984",
+ "1382475798",
{
- "_11": 967,
- "_44": 969,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 982,
- "_658": 985,
- "_706": 982
- },
- {
- "_970": 20,
- "_971": 20,
- "_972": 20,
- "_973": 20,
- "_974": 20,
- "_975": 20,
- "_976": 20,
- "_977": 45,
- "_978": 20,
- "_979": 20,
- "_980": 45,
- "_981": 45
+ "_13": 977,
+ "_60": 61,
+ "_62": 979,
+ "_64": 980
},
- "should_simplify_modal",
- "is_simplified_sharing_modal_enabled",
- "is_social_share_options_enabled",
- "is_update_shared_links_enabled",
- "is_discoverability_toggle_enabled",
- "show_copylink_state_if_no_updates",
- "is_continue_enabled",
- "show_share_button_text",
- "is_meta_improvements_enabled",
- "show_share_button_inline",
- "use_dalle_preview",
- "in_dalle_preview_exp",
- [
- 983
- ],
- {
- "_55": 984,
- "_57": 58,
- "_59": 52
- },
- "4038001028",
- [],
- "1578749296",
- {
- "_11": 986,
- "_44": 988,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 990,
- "_658": 991,
- "_706": 990
- },
- {
- "_989": 20
- },
- "is_sticky_toggle_off",
- [],
- [],
- "1630876919",
- {
- "_11": 992,
- "_44": 994,
- "_497": 498,
- "_46": 498,
- "_499": 20,
- "_48": 1001,
- "_658": 1004,
- "_726": 1005,
- "_504": 45,
- "_503": 20,
- "_706": 1006
- },
- {
- "_995": 20,
- "_996": 20,
- "_997": 20,
- "_998": 20,
- "_999": 20,
- "_1000": 20
- },
- "enable_indexing",
- "backfill_completed",
- "enable_local_indexing",
- "enable_ux",
- "enable_us_rollout",
- "enable_ux_rollout",
- [
- 1002
- ],
- {
- "_55": 1003,
- "_57": 58,
- "_59": 52
- },
- "2372319800",
- [
- 995,
- 997,
- 996,
- 998,
- 1000
- ],
- "1028722647",
- [],
- "1696863369",
- {
- "_11": 1007,
- "_44": 1009,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 1012,
- "_658": 1019,
- "_706": 1012
- },
- {
- "_1010": 20,
- "_1011": 20
- },
- "has_sidekick_access",
- "show_nux_banner",
- [
- 1013,
- 1016
- ],
- {
- "_55": 1014,
- "_57": 58,
- "_59": 1015
- },
- "1938289220",
- "79O8DQPDmTKxnLdAH9loVk",
- {
- "_55": 1017,
- "_57": 58,
- "_59": 1018
- },
- "2033872549",
- "7dScmNU0bu2UQuzCNtva50",
- [],
- "1846737571",
- {
- "_11": 1020,
- "_44": 1022,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 1024,
- "_658": 1025,
- "_706": 1024
- },
- {
- "_1023": 20
- },
- "is_upgrade_button_blue",
- [],
- [],
- "1914829685",
- {
- "_11": 1026,
- "_44": 1028,
- "_497": 1030,
- "_46": 1030,
- "_499": 45,
- "_48": 1031,
- "_658": 1033,
- "_726": 1034,
- "_504": 20,
- "_503": 20,
- "_706": 1035
- },
- {
- "_1029": 45
- },
- "forward_to_authapi",
- "2RO4BOrVWPrsxRUPYNKPLe:override",
- [
- 1032
- ],
- {
- "_55": 42,
- "_57": 98,
- "_59": 47
- },
- [
- 1029
- ],
- "1856338298",
- [
- 1032
- ],
- "2118136551",
- {
- "_11": 1036,
- "_44": 1038,
- "_497": 52,
- "_46": 52,
- "_499": 45,
- "_48": 1040,
- "_658": 1041,
- "_706": 1040
- },
- {
- "_1039": 20
- },
- "show_cookie_banner_if_qualified",
- [],
+ "3P8OsGy1e5tQlR5dsTIWbL",
[],
- "2149763392",
- {
- "_11": 1042,
- "_44": 1044,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 1047,
- "_658": 1050,
- "_706": 1047
- },
- {
- "_1045": 20,
- "_1046": 20
- },
- "show-in-main-composer",
- "show-model-picker",
- [
- 1048
- ],
+ "1416952492",
{
- "_55": 1049,
- "_57": 58,
- "_59": 52
+ "_13": 981,
+ "_60": 24,
+ "_62": 983,
+ "_64": 984
},
- "4151101559",
+ "2LD82enCtskHL9Vi2hS6Jq",
[],
- "2152104812",
- {
- "_11": 1051,
- "_44": 1053,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 1056,
- "_658": 1057,
- "_706": 1056
- },
+ "1422501431",
{
- "_1054": 20,
- "_1055": 20
+ "_13": 985,
+ "_60": 24,
+ "_62": 91,
+ "_64": 987
},
- "hide_gpts_if_none",
- "hide_default_gpts",
[],
- [],
- "2259187367",
- {
- "_11": 1058,
- "_44": 1060,
- "_497": 52,
- "_46": 52,
- "_499": 45,
- "_48": 1071,
- "_658": 1072,
- "_706": 1071
- },
+ "1439437954",
{
- "_1061": 20,
- "_1062": 1063,
- "_1064": 1065,
- "_1066": 45,
- "_1067": 1068,
- "_1069": 20,
- "_1070": 611
+ "_13": 988,
+ "_60": 24,
+ "_62": 990,
+ "_64": 991
},
- "enable_nux",
- "start_time",
- "2099-01-01T00:00:00Z",
- "end_time",
- "2000-01-01T00:00:00Z",
- "use_multi_input",
- "force_madlibs_param_name",
- "madlibs_0203",
- "enable_additional_categories",
- "additional_category",
- [],
+ "11IqDt7xc4mMNiyiSIMy1F:0.00:1",
[],
- "2670443078",
- {
- "_11": 1073,
- "_44": 1075,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 1077,
- "_658": 1078,
- "_706": 1077
- },
+ "1456513860",
{
- "_1076": 45
+ "_13": 992,
+ "_60": 61,
+ "_62": 994,
+ "_64": 995
},
- "is_gating_fix_enabled",
- [],
+ "jHXkU7q9axp0dXBSyzihH",
[],
- "2716194794",
- {
- "_11": 1079,
- "_44": 1081,
- "_497": 498,
- "_46": 498,
- "_499": 20,
- "_48": 1083,
- "_658": 1086,
- "_726": 1087,
- "_504": 45,
- "_503": 20,
- "_706": 1088
- },
- {
- "_1082": 20
- },
- "show_upsell",
- [
- 1084
- ],
+ "1468311859",
{
- "_55": 1085,
- "_57": 58,
- "_59": 52
+ "_13": 996,
+ "_60": 24,
+ "_62": 998,
+ "_64": 999
},
- "2849926832",
- [
- 1082
- ],
- "2435265903",
+ "7tfl8ZUhwr5pzErE3ikBej",
[],
- "2723963139",
+ "1542198993",
{
- "_11": 1089,
- "_44": 1091,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 1103,
- "_658": 1104,
- "_706": 1103
- },
- {
- "_1092": 20,
- "_1093": 20,
- "_1094": 45,
- "_1095": 45,
- "_1096": 45,
- "_1097": 1098,
- "_1099": 45,
- "_1100": 20,
- "_1101": 20,
- "_1102": 682
+ "_13": 1000,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1002
},
- "is_dynamic_model_enabled",
- "show_message_model_info",
- "show_message_regenerate_model_selector",
- "is_conversation_model_switching_allowed",
- "show_rate_limit_downgrade_banner",
- "config",
- {},
- "show_message_regenerate_model_selector_on_every_message",
- "is_AG8PqS2q_enabled",
- "is_chive_enabled",
- "sahara_model_id_override",
[],
- [],
- "2775247110",
- {
- "_11": 1105,
- "_44": 1107,
- "_497": 1110,
- "_46": 1110,
- "_499": 20,
- "_48": 1111,
- "_658": 1112,
- "_726": 1113,
- "_504": 45,
- "_503": 45,
- "_706": 1114
- },
+ "1656345175",
{
- "_1108": 20,
- "_1109": 45
+ "_13": 1003,
+ "_60": 61,
+ "_62": 1005,
+ "_64": 1006
},
- "show_pro_badge",
- "show_plan_type_badge",
- "2B8p17mNxIYXoaDA4YEe47",
- [],
- [
- 1109
- ],
- "1532399432",
+ "2CwIChuIr7SLQ2CyqRegF2",
[],
- "2840731323",
- {
- "_11": 1115,
- "_44": 1117,
- "_497": 52,
- "_46": 52,
- "_499": 45,
- "_48": 1119,
- "_658": 1121,
- "_706": 1119
- },
- {
- "_976": 45,
- "_1118": 45
- },
- "is_direct_continue_enabled",
- [
- 1120
- ],
+ "1741586789",
{
- "_55": 269,
- "_57": 58,
- "_59": 52
+ "_13": 1007,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1009
},
[],
- "2888142241",
- {
- "_11": 1122,
- "_44": 1124,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 1126,
- "_658": 1127,
- "_706": 1126
- },
+ "1760640904",
{
- "_1125": 45
+ "_13": 1010,
+ "_60": 61,
+ "_62": 1012,
+ "_64": 1013
},
- "is_upgrade_in_settings",
- [],
+ "6ezOfLAw7fGQPVjfNsReIy",
[],
- "2932223118",
- {
- "_11": 1128,
- "_44": 1130,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 1131,
- "_658": 1132,
- "_706": 1131
- },
+ "1830177352",
{
- "_807": 45
+ "_13": 1014,
+ "_60": 61,
+ "_62": 1016,
+ "_64": 1017
},
+ "44udGr8tXtB3ZIDHLV3HSF",
[],
- [],
- "2972011003",
- {
- "_11": 1133,
- "_44": 1135,
- "_497": 498,
- "_46": 498,
- "_499": 20,
- "_48": 1138,
- "_658": 1142,
- "_726": 1143,
- "_504": 45,
- "_503": 20,
- "_706": 1144
- },
- {
- "_1136": 45,
- "_1137": 20
- },
- "user_context_message_search_tools_default",
- "search_tool_holdout_enabled",
- [
- 1139
- ],
+ "1839283687",
{
- "_55": 1140,
- "_57": 58,
- "_59": 1141
+ "_13": 1018,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1020
},
- "1061090475",
- "3ODlJYLQViQhr14Ycb9W6N",
- [
- 1136
- ],
- "933762510",
[],
- "3048336830",
- {
- "_11": 1145,
- "_44": 1147,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 1150,
- "_658": 1155,
- "_706": 1150
- },
- {
- "_1148": 45,
- "_1149": 20
- },
- "is-enabled",
- "use-rtl-layout",
- [
- 1151,
- 1152
- ],
- {
- "_55": 443,
- "_57": 58,
- "_59": 445
- },
+ "1860647109",
{
- "_55": 1153,
- "_57": 58,
- "_59": 1154
+ "_13": 1021,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1023
},
- "3700615661",
- "66covmutTYx82FWVUlZAqF",
[],
- "3119715334",
- {
- "_11": 1156,
- "_44": 1158,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 1161,
- "_658": 1162,
- "_706": 1161
- },
+ "2000076788",
{
- "_1159": 20,
- "_1160": 20
+ "_13": 1024,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1026
},
- "should-enable-hojicha",
- "should-enable-skip",
[],
- [],
- "3206655705",
- {
- "_11": 1163,
- "_44": 1165,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 1167,
- "_658": 1168,
- "_706": 1167
- },
+ "2053937752",
{
- "_1166": 45
+ "_13": 1027,
+ "_60": 24,
+ "_62": 1029,
+ "_64": 1030
},
- "enable_new_ux",
- [],
+ "2PLQzvwrGPxACRwaEcKbIh",
[],
- "3434623093",
- {
- "_11": 1169,
- "_44": 1171,
- "_497": 52,
- "_46": 52,
- "_499": 45,
- "_48": 1177,
- "_658": 1186,
- "_706": 1177
- },
- {
- "_1172": 45,
- "_1173": 1174,
- "_1175": 45,
- "_1176": 45
- },
- "with-attach-upsell",
- "labels",
- "all",
- "with-voice-upsell",
- "with-reason-upsell",
- [
- 1178,
- 1180,
- 1182,
- 1184
- ],
- {
- "_55": 1179,
- "_57": 58,
- "_59": 52
- },
- "1604099973",
- {
- "_55": 1181,
- "_57": 58,
- "_59": 52
- },
- "470066910",
- {
- "_55": 1183,
- "_57": 58,
- "_59": 52
- },
- "1932133792",
+ "2056761365",
{
- "_55": 1185,
- "_57": 58,
- "_59": 52
+ "_13": 1031,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1033
},
- "4175621034",
- [],
- "3436367576",
- {
- "_11": 1187,
- "_44": 1189,
- "_497": 1192,
- "_46": 1192,
- "_499": 20,
- "_48": 1193,
- "_658": 1197,
- "_726": 1198,
- "_504": 45,
- "_503": 45,
- "_706": 1199
- },
- {
- "_995": 45,
- "_1190": 1191,
- "_998": 45,
- "_997": 45,
- "_996": 20
- },
- "wave",
- 9,
- "2Furb94u4tGb4OrLGH3ViM",
- [
- 1194
- ],
- {
- "_55": 1195,
- "_57": 98,
- "_59": 1196
- },
- "1221279314",
- "1FzsKf0T7jWwTRKiSrbUld:100.00:4",
- [
- 995,
- 1190,
- 996,
- 998,
- 997
- ],
- "938456440",
- [],
- "3471271313",
- {
- "_11": 1200,
- "_44": 1202,
- "_497": 651,
- "_46": 651,
- "_499": 45,
- "_48": 1203,
- "_658": 1204,
- "_726": 1205,
- "_504": 20,
- "_503": 20,
- "_706": 1206
- },
- {
- "_1082": 20
- },
- [],
- [
- 1082
- ],
- "3021307436",
- [],
- "3517133692",
- {
- "_11": 1207,
- "_44": 1209,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 1210,
- "_658": 1211,
- "_706": 1210
- },
- {
- "_656": 20
- },
- [],
- [],
- "3533083032",
- {
- "_11": 1212,
- "_44": 1214,
- "_497": 52,
- "_46": 52,
- "_499": 45,
- "_48": 1236,
- "_658": 1237,
- "_706": 1236
- },
- {
- "_1215": 45,
- "_1216": 45,
- "_1217": 1218,
- "_1219": 20,
- "_1220": 20,
- "_1221": 45,
- "_1222": 20,
- "_1223": 20,
- "_1224": 20,
- "_1225": 20,
- "_1226": 1227,
- "_1228": 1229,
- "_1230": 1231,
- "_1232": 1233,
- "_1234": 1235
- },
- "enable_new_homepage_anon",
- "filter_prompt_by_model",
- "headline_option",
- "HELP_WITH",
- "disclaimer_color_adjust",
- "show_composer_header",
- "enable_new_mobile",
- "enable_cached_response",
- "show_dalle_starter_prompts",
- "use_modapi_in_autocomplete",
- "use_memory_in_model_autocomplete",
- "autocomplete_max_char",
- 32,
- "search_autocomplete_mode",
- "BING",
- "autocomplete_min_char",
- 4,
- "autocomplete_mode",
- "INDEX",
- "num_completions_to_fetch_from_index",
- 8,
- [],
- [],
- "3606233934",
- {
- "_11": 1238,
- "_44": 1240,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 1244,
- "_658": 1245,
- "_706": 1244
- },
- {
- "_1241": 1242,
- "_1243": 20
- },
- "link",
- "non",
- "enable_notifications_feed",
- [],
- [],
- "3613709240",
- {
- "_11": 1246,
- "_44": 1248,
- "_497": 52,
- "_46": 52,
- "_499": 45,
- "_48": 1250,
- "_658": 1251,
- "_706": 1250
- },
- {
- "_1249": 45
- },
- "shouldRefreshAccessToken",
- [],
- [],
- "3637408529",
- {
- "_11": 1252,
- "_44": 1254,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 1280,
- "_658": 1285,
- "_706": 1280
- },
- {
- "_1255": 45,
- "_1256": 20,
- "_1257": 20,
- "_1258": 20,
- "_1259": 1260,
- "_1261": 1262,
- "_1263": 45,
- "_1264": 45,
- "_1265": 45,
- "_1266": 20,
- "_1267": 45,
- "_1268": 20,
- "_1269": 20,
- "_1270": 45,
- "_1271": 20,
- "_1272": 45,
- "_1273": 699,
- "_1274": 1275,
- "_1276": 45,
- "_1277": 1278,
- "_1279": 20
- },
- "is_anon_chat_enabled",
- "is_anon_chat_enabled_for_new_users_only",
- "is_try_it_first_on_login_page_enabled",
- "is_no_auth_welcome_modal_enabled",
- "no_auth_soft_rate_limit",
- 5,
- "no_auth_hard_rate_limit",
- 1200,
- "should_show_no_auth_signup_banner",
- "is_no_auth_welcome_back_modal_enabled",
- "is_no_auth_soft_rate_limit_modal_enabled",
- "is_no_auth_gpt4o_modal_enabled",
- "is_login_primary_button",
- "is_desktop_primary_auth_button_on_right",
- "is_primary_btn_blue",
- "should_show_disclaimer_only_once_per_device",
- "is_secondary_banner_button_enabled",
- "is_secondary_auth_banner_button_enabled",
- "no_auth_banner_signup_rate_limit",
- "composer_text",
- "ASK_ANYTHING",
- "is_in_composer_text_exp",
- "no_auth_upsell_wording",
- "NO_CHANGE",
- "should_refresh_access_token_error_take_user_to_no_auth",
- [
- 1281,
- 1283
- ],
- {
- "_55": 1282,
- "_57": 58,
- "_59": 380
- },
- "3238165271",
- {
- "_55": 1284,
- "_57": 58,
- "_59": 380
- },
- "2983591614",
- [],
- "3711177917",
- {
- "_11": 1286,
- "_44": 1288,
- "_497": 52,
- "_46": 52,
- "_499": 45,
- "_48": 1291,
- "_658": 1292,
- "_706": 1291
- },
- {
- "_1289": 20,
- "_1290": 45
- },
- "is_summarizer_default_expanded",
- "is_inline_summarizer_enabled",
- [],
- [],
- "3768341700",
- {
- "_11": 1293,
- "_44": 1295,
- "_497": 1301,
- "_46": 1301,
- "_499": 20,
- "_48": 1302,
- "_658": 1303,
- "_726": 1304,
- "_504": 45,
- "_503": 45,
- "_706": 1305
- },
- {
- "_809": 20,
- "_1296": 20,
- "_1297": 20,
- "_1298": 45,
- "_1299": 45,
- "_1300": 45
- },
- "remove_early_access_upsell",
- "is_produce_text_design",
- "is_produce_design",
- "is_country_selector_enabled",
- "is_vat_information_enabled",
- "3v8TWnsCGDo0b37d0qqedD",
- [],
- [
- 1300,
- 1299
- ],
- "3151783455",
- [],
- "3927927759",
- {
- "_11": 1306,
- "_44": 1308,
- "_497": 52,
- "_46": 52,
- "_499": 45,
- "_48": 1309,
- "_658": 1310,
- "_706": 1309
- },
- {
- "_884": 45
- },
- [],
- [],
- "3972089454",
- {
- "_11": 1311,
- "_44": 1313,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 1316,
- "_658": 1317,
- "_706": 1316
- },
- {
- "_1314": 1315
- },
- "search_scoring_dyconfig_name",
- "gizmo_search_score_config",
- [],
- [],
- "4020668365",
- {
- "_11": 1318,
- "_44": 1320,
- "_497": 52,
- "_46": 52,
- "_499": 45,
- "_48": 1321,
- "_658": 1322,
- "_706": 1321
- },
- {
- "_1061": 20,
- "_1062": 1063,
- "_1064": 1065,
- "_1066": 20
- },
- [],
- [],
- "4031588851",
- {
- "_11": 1323,
- "_44": 1325,
- "_497": 52,
- "_46": 52,
- "_499": 20,
- "_48": 1348,
- "_658": 1352,
- "_706": 1348
- },
- {
- "_1326": 45,
- "_1327": 45,
- "_1328": 45,
- "_1329": 45,
- "_1330": 20,
- "_1331": 20,
- "_1232": 1233,
- "_1332": 1333,
- "_1230": 1231,
- "_1226": 1227,
- "_1217": 1218,
- "_1225": 20,
- "_1334": 20,
- "_1224": 20,
- "_1335": 1336,
- "_1337": 45,
- "_1338": 682,
- "_1221": 45,
- "_1228": 1229,
- "_1339": 20,
- "_1340": 1341,
- "_1234": 1235,
- "_1342": 20,
- "_1343": 20,
- "_1274": 1275,
- "_1344": 20,
- "_1345": 1346,
- "_1347": 45
- },
- "enable_hardcoded_vision_prompts",
- "enable_hardcoded_file_document_prompts",
- "enable_hardcoded_data_vis_prompts",
- "enable_hardcoded_browse_prompts",
- "is_two_line",
- "enable_new_homepage",
- "starter_prompt_ranking_algorithm",
- "homepage_v2",
- "filter_starter_prompt_by_model",
- "autocomplete_qualified_start_date",
- "2000-10-11T00:00:00Z",
- "enable_new_autocomplete_homepage",
- "model_talks_option",
- "enable_hardcoded_onboarding_prompt",
- "autocomplete_fetch_interval",
- 200,
- "enable_recommend_prompts",
- "enable_ask_me_prompts",
- "enable_reasoning_prompts_0202",
- "dream_type",
- "user_knowledge_memories",
- "web-disable",
- [
- 1349
- ],
- {
- "_55": 1350,
- "_57": 58,
- "_59": 1351
- },
- "4273941502",
- "1nGrz4l6GM0LgZvm0pDCtp:2.00:1",
- [],
- "4211831761",
- {
- "_11": 1353,
- "_44": 1355,
- "_497": 52,
- "_46": 52,
- "_499": 45,
- "_48": 1356,
- "_658": 1357,
- "_706": 1356
- },
- {
- "_527": 20
- },
- [],
- [],
- "4250072504",
- {
- "_11": 1358,
- "_44": 1360,
- "_497": 1363,
- "_46": 1363,
- "_499": 20,
- "_48": 1364,
- "_658": 1366,
- "_726": 1367,
- "_504": 20,
- "_503": 20,
- "_706": 1368
- },
- {
- "_808": 45,
- "_1361": 20,
- "_1362": 20
- },
- "is_enterprise_desktop_enabled",
- "is_desktop_enterprise_enabled",
- "3HX7vpdJsUkuyCUEL4V9cE:override",
- [
- 1365
- ],
- {
- "_55": 180,
- "_57": 98,
- "_59": 182
- },
- [
- 808
- ],
- "3311396813",
- [
- 1365
- ],
- "sdkParams",
- {},
- "has_updates",
- "generator",
- "statsig-node-sdk",
- "sdkInfo",
- {
- "_1376": 1377,
- "_1378": 1379
- },
- "sdkType",
- "statsig-node",
- "sdkVersion",
- "5.26.0",
- "time",
- 1741136253432,
- "evaluated_keys",
- {
- "_1384": 10,
- "_1385": 1386
- },
- "userID",
- "user-chatgpt",
- {
- "_1387": 1388,
- "_1389": 1388,
- "_1390": 1388
- },
- "WebAnonymousCookieID",
- "6e9fc67a-0971-43ba-9789-bc5a94c43b9e",
- "DeviceId",
- "stableID",
- "hash_used",
- "djb2",
- {
- "_1384": 10,
- "_1394": 33,
- "_1395": 1396,
- "_1385": 1386,
- "_1404": 1405,
- "_1406": 1399,
- "_1407": 1408,
- "_34": 35
- },
- "country",
- "custom",
- {
- "_1397": 45,
- "_1398": 1399,
- "_1400": 20,
- "_1401": 20,
- "_1402": 1403
- },
- "has_logged_in_before",
- "user_agent",
- "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0",
- "is_punch_out_user",
- "is_paid",
- "auth_status",
- "logged_in",
- "ip",
- "178.236.37.84",
- "userAgent",
- "statsigEnvironment",
- {
- "_1409": 1410
- },
- "tier",
- "production",
- "authStatus",
- "userRegion",
- "New York",
- "cfConnectingIp",
- "8.8.8.8",
- "34.69220",
- "cfIpLongitude",
- null,
- "cfIpCity",
- null,
- "isUserInNewCookieConsentFlow",
- "isUserEligibleForPioneer",
- "isUserEligibleForMaverick",
- "kind",
- "chat_page",
- "gizmo",
- {},
- {
- "_9": 1429,
- "_1430": 1431,
- "_1432": 1433,
- "_1434": 1435,
- "_1467": 1468,
- "_1470": -5,
- "_1471": -5,
- "_1472": -5,
- "_1473": 1474,
- "_1493": 1494,
- "_1495": 1496,
- "_1497": 1498,
- "_1499": -5,
- "_1500": -5,
- "_1501": 1502,
- "_1504": 20,
- "_1505": -5,
- "_1506": -5,
- "_1507": 1508,
- "_1509": 1510,
- "_1511": -5,
- "_1512": -5,
- "_1513": -5,
- "_1514": -5,
- "_1515": 1516,
- "_1528": -5,
- "_1529": -5,
- "_1530": -5,
- "_1531": -5,
- "_1532": 1533,
- "_1534": 1535
- },
- "g-V2KIUZSj0",
- "organization_id",
- "org-FHQEtg8RGuIClOPJU8FxPHJQ",
- "short_url",
- "g-V2KIUZSj0-ai-pdf-drive-chat-create-organize",
- "author",
- {
- "_1436": 1437,
- "_537": 1438,
- "_1439": 1440,
- "_1441": 45,
- "_1442": 1443,
- "_1444": 45,
- "_1445": 1446
- },
- "user_id",
- "user-9rCcq3yoxFRErAkvkOdjeqtF",
- "myaidrive.com",
- "link_to",
- "https://myaidrive.com",
- "is_verified",
- "selected_display",
- "website",
- "will_receive_support_emails",
- "display_socials",
- [
- 1447,
- 1459
- ],
- {
- "_9": 1448,
- "_1449": 1450,
- "_537": 1451,
- "_1452": 45,
- "_1453": 1454
- },
- "linkedinverify-4b97-9080-6c959845166a",
- "type",
- "linkedin",
- "LinkedIn",
- "verified",
- "verified_data",
- {
- "_9": 1455,
- "_1456": 1457,
- "_537": 1457,
- "_1449": 1450,
- "_1439": 1458
- },
- "vk-5wgVQJw",
- "username",
- "Vicente Silveira",
- "https://linkedin.com/in/vicentesilveira",
- {
- "_9": 1460,
- "_1449": 1461,
- "_537": 1462,
- "_1452": 45,
- "_1453": 1463
- },
- "twitterverify-43d2-b12a-bbe33d600487",
- "twitter",
- "X",
- {
- "_9": 1464,
- "_1456": 1465,
- "_1449": 1461,
- "_1439": 1466
- },
- "1673836522368561152",
- "@AiPDF_GPT",
- "https://twitter.com/AiPDF_GPT",
- "voice",
- {
- "_9": 1469
- },
- "ember",
- "workspace_id",
- "model",
- "instructions",
- "display",
- {
- "_11": 1475,
- "_1476": 1477,
- "_1478": 1479,
- "_1484": 1485,
- "_1486": 1487,
- "_1488": 1489,
- "_1491": -5,
- "_1492": -5
- },
- "AI PDF Drive: Chat, Create, Organize",
- "description",
- "The ultimate document assistant. Upload files once to your free AI Drive (very generous storage), then access across multiple chats. Easily create PDFs (slides, reports, resumes). AI Drive Pro adds folder chat, OCR, advanced agents, plus CSV, TXT, Markdown & Excel support.",
- "prompt_starters",
- [
- 1480,
- 1481,
- 1482,
- 1483
- ],
- "START HERE: HOW TO UPLOAD A FILE",
- "\ud83d\udcc1 Chat with a folder of documents! ",
- "\ud83e\udd16 Scan and OCR my PDFs! ",
- "\u2696\ufe0f AI PDF for Law Professionals",
- "profile_pic_id",
- "file-aZFW7yy5PyKXFLXjsKqpylF4",
- "profile_picture_url",
- "https://chatgpt.com/backend-api/content?id=file-aZFW7yy5PyKXFLXjsKqpylF4&gizmo_id=g-V2KIUZSj0&ts=483648&p=gpp&sig=e64dfd235afa28eeb2bdace3b6a0c18082518eb9e7527deaf14bdb66a5598c9b&v=0",
- "categories",
- [
- 1490
- ],
- "productivity",
- "emoji",
- "theme",
- "share_recipient",
- "marketplace",
- "created_at",
- "2023-11-06T20:34:51.435569+00:00",
- "updated_at",
- "2025-03-05T00:59:38.249376+00:00",
- "last_interacted_at",
- "num_interactions",
- "tags",
- [
- 1503
- ],
- "interactions_disabled",
- "is_unassigned",
- "version",
- "version_author",
- "version_created_at",
- "2025-03-03T03:21:33.004340+00:00",
- "version_updated_at",
- "2025-03-03T12:43:50.318413+00:00",
- "live_version",
- "training_disabled",
- "sharing_targets",
- "appeal_info",
- "vanity_metrics",
+ [],
{
- "_1517": -5,
- "_1518": 1519,
- "_1520": 1521,
- "_1522": 1523
+ "_13": 291,
+ "_60": 24,
+ "_62": 292,
+ "_64": 1035
},
- "num_conversations",
- "num_conversations_str",
- "4M+",
- "created_ago_str",
- "1 years ago",
- "review_stats",
+ [],
+ "2151954125",
{
- "_1524": 1525,
- "_1526": 1527
+ "_13": 1036,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1038
},
- "total",
- 277611,
- "count",
- 69488,
- "workspace_approval_date",
- "workspace_approved",
- "sharing",
- "current_user_permission",
- "gizmo_type",
- "gpt",
- "context_stuffing_budget",
- 16384,
- "tools",
- [
- 1538,
- 1543,
- 1546,
- 1548,
- 1550,
- 1849,
- 1950
- ],
+ [],
+ "2153043779",
{
- "_9": 1539,
- "_1449": 1540,
- "_1541": -5,
- "_1542": -5
+ "_13": 1039,
+ "_60": 61,
+ "_62": 1041,
+ "_64": 1042
},
- "gzm_cnf_h2co4ZSbnQ5pvv05RhoLgufj~gzm_tool_TVmmxqtfwdqhPo2RcoxFYffv",
- "browser",
- "settings",
- "metadata",
+ "DamiTYVoTv9Z9jRFOT5iC",
+ [],
+ "2173548801",
+ {
+ "_13": 1043,
+ "_60": 61,
+ "_62": 1045,
+ "_64": 1046
+ },
+ "22nVhoL17eyMvGWgFrDfZe",
+ [],
+ "2192543539",
{
- "_9": 1544,
- "_1449": 1545,
- "_1541": -5,
- "_1542": -5
+ "_13": 1047,
+ "_60": 61,
+ "_62": 1049,
+ "_64": 1050
},
- "gzm_cnf_h2co4ZSbnQ5pvv05RhoLgufj~gzm_tool_txmQ4dp4unF3si1e5BETyDE7",
- "python",
+ "4Ro1m2dj4fUBe4hcP1YKjj:75.00:3",
+ [
+ 1051
+ ],
{
- "_9": 1547,
- "_1449": 890,
- "_1541": -5,
- "_1542": -5
+ "_67": 1052,
+ "_69": 101,
+ "_71": 91
},
- "gzm_cnf_h2co4ZSbnQ5pvv05RhoLgufj~gzm_tool_iTjwgh7QurU8vNgwIyY4l0YO",
+ "4206244917",
+ "2232580636",
{
- "_9": 1549,
- "_1449": 892,
- "_1541": -5,
- "_1542": -5
+ "_13": 1053,
+ "_60": 61,
+ "_62": 1055,
+ "_64": 1056
},
- "6759d12dfd0c8191b3fb68ca8a6c6ecb",
+ "4y4Nd0nF0CFawcrQBbm7Mq:100.00:4",
+ [],
+ "2281969373",
{
- "_9": 1551,
- "_1449": 1552,
- "_1541": -5,
- "_1542": 1553
+ "_13": 1057,
+ "_60": 61,
+ "_62": 1059,
+ "_64": 1060
},
- "67c5203d014c8191b6df8c30ffc1d982",
- "plugins_prototype",
+ "6EbVeXErTdGtbchxdqEMTg",
+ [],
+ "2290870843",
{
- "_1554": 1555,
- "_1556": 1557,
- "_1558": -5,
- "_1559": 1560,
- "_1832": 1833,
- "_1847": 1848
+ "_13": 1061,
+ "_60": 61,
+ "_62": 1063,
+ "_64": 1064
},
- "action_id",
- "g-e0a5c0aac8ca4fbd744673bc4111fa4c17ca5859",
- "domain",
- "account.myaidrive.com",
- "raw_spec",
- "json_schema",
+ "5dONtElzUeyTTp5FvpWy6",
+ [],
+ "2360528850",
{
- "_1561": 1562,
- "_1563": 1564,
- "_1568": 1569,
- "_1574": 1575,
- "_1701": 1702,
- "_1828": 1829
+ "_13": 1065,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1067
},
- "openapi",
- "3.1.0",
- "info",
+ [],
+ "2379988365",
{
- "_614": 1565,
- "_1476": 1566,
- "_1505": 1567
+ "_13": 1068,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1070
},
- "AI Drive Server - File Management",
- "API for AI Drive Server file management",
- "1.0.0",
- "servers",
[
- 1570
+ 1071
],
{
- "_1571": 1572,
- "_1476": 1573
+ "_67": 297,
+ "_69": 101,
+ "_71": 91
},
- "url",
- "https://account.myaidrive.com/",
- "Production server",
- "paths",
- {
- "_1576": 1577,
- "_1624": 1625,
- "_1644": 1645,
- "_1663": 1664,
- "_1682": 1683
- },
- "/import_files",
+ "2411734826",
{
- "_1578": 1579
+ "_13": 1072,
+ "_60": 24,
+ "_62": 1074,
+ "_64": 1075
},
- "post",
+ "33U1igAQgegRumGc4LbaB:2.00:1",
+ [],
+ "2445152477",
{
- "_1580": 1581,
- "_1582": 1583,
- "_1584": 1585,
- "_1586": 1587,
- "_1606": 1607,
- "_1623": 20
+ "_13": 1076,
+ "_60": 61,
+ "_62": 1078,
+ "_64": 1079
},
- "summary",
- "Import Files",
- "operationId",
- "import_files_import_files_post",
- "parameters",
+ "5qtlunRMswJX2JGoF8GikC",
[],
- "requestBody",
+ "2634628831",
{
- "_1588": 45,
- "_1589": 1590
+ "_13": 1080,
+ "_60": 61,
+ "_62": 1082,
+ "_64": 1083
},
- "required",
- "content",
+ "6LfSag7ByiH0gGcqoFHHBe",
+ [
+ 1084,
+ 1085
+ ],
{
- "_1591": 1592
+ "_67": 923,
+ "_69": 101,
+ "_71": 91
},
- "application/json",
{
- "_1593": 1594
+ "_67": 925,
+ "_69": 70,
+ "_71": 926
},
- "schema",
+ "2637918557",
{
- "_1449": 1595,
- "_614": 1596,
- "_1597": 1598
+ "_13": 1086,
+ "_60": 61,
+ "_62": 1088,
+ "_64": 1089
},
- "object",
- "Json Request",
- "properties",
+ "2XNTwszL419o7DMxzSa0vz:100.00:1",
+ [],
+ "2712556596",
{
- "_1599": 1600
+ "_13": 1090,
+ "_60": 61,
+ "_62": 1092,
+ "_64": 1093
},
- "openaiFileIdRefs",
+ "7pPLEbQc7hKT1m7CbondoE",
+ [
+ 1094
+ ],
{
- "_1449": 1601,
- "_1602": 1603,
- "_1476": 1605
+ "_67": 1095,
+ "_69": 101,
+ "_71": 91
},
- "array",
- "items",
+ "135448051",
+ "2781425969",
{
- "_1449": 1604
+ "_13": 1096,
+ "_60": 24,
+ "_62": 1098,
+ "_64": 1099
},
- "string",
- "List of files to send to AI Drive",
- "responses",
+ "7BIMlzITwH6mysXL5ILPSw",
+ [
+ 1100
+ ],
{
- "_1608": 1609,
- "_1616": 1617
+ "_67": 1095,
+ "_69": 101,
+ "_71": 91
},
- "200",
+ "2833534668",
{
- "_1476": 1610,
- "_1589": 1611
+ "_13": 1101,
+ "_60": 61,
+ "_62": 1103,
+ "_64": 1104
},
- "Successful Response",
+ "7uYkibMYlCPSnoWmmYNanm",
+ [],
+ "2935021756",
{
- "_1591": 1612
+ "_13": 1105,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1107
},
+ [],
+ "2968810397",
{
- "_1593": 1613
+ "_13": 1108,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1110
},
+ [],
+ "3058498100",
{
- "_1614": 1615
+ "_13": 1111,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1113
},
- "$ref",
- "#/components/schemas/FileUploadResponse",
- "422",
+ [],
+ "3148583717",
{
- "_1476": 1618,
- "_1589": 1619
+ "_13": 1114,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1116
},
- "Validation Error",
+ [],
+ "3241763787",
{
- "_1591": 1620
+ "_13": 1117,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1119
},
+ [],
+ "3257646228",
{
- "_1593": 1621
+ "_13": 1120,
+ "_60": 24,
+ "_62": 1122,
+ "_64": 1123
},
+ "3veZ6qhG4zTVvcrwpXXPgi:1.00:4",
+ [],
+ "3291247717",
{
- "_1614": 1622
+ "_13": 1124,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1126
},
- "#/components/schemas/HTTPValidationError",
- "x-openai-isConsequential",
- "/list_folder_contents_tool",
+ [],
+ "3435450078",
{
- "_1578": 1626
+ "_13": 1127,
+ "_60": 61,
+ "_62": 1129,
+ "_64": 1130
},
+ "2qCdHpFuWOOkibzLRL0zgn",
+ [],
+ "3472722167",
{
- "_1580": 1627,
- "_1582": 1628,
- "_1584": 1629,
- "_1586": 1630,
- "_1606": 1635,
- "_1623": 20
+ "_13": 1131,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1133
},
- "Endpoint",
- "endpoint_list_folder_contents_tool_post",
[],
{
- "_1588": 45,
- "_1589": 1631
+ "_13": 293,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1135
},
+ [
+ 1136,
+ 1137
+ ],
{
- "_1591": 1632
+ "_67": 297,
+ "_69": 101,
+ "_71": 91
},
{
- "_1593": 1633
+ "_67": 299,
+ "_69": 101,
+ "_71": 91
},
+ "3612584454",
{
- "_1614": 1634
+ "_13": 1138,
+ "_60": 24,
+ "_62": 1140,
+ "_64": 1141
},
- "#/components/schemas/ListFolderTool",
+ "4fXx7LNuNnDASdmkzwNxtf",
+ [],
+ "3664702598",
{
- "_1608": 1636,
- "_1616": 1640
+ "_13": 1142,
+ "_60": 24,
+ "_62": 1144,
+ "_64": 1145
},
+ "7x9wS41bRDCji9ns8x5Oej",
+ [],
+ "3678527908",
{
- "_1476": 1610,
- "_1589": 1637
+ "_13": 1146,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1148
},
+ [],
+ "3728856343",
{
- "_1591": 1638
+ "_13": 1149,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1151
},
+ [],
+ "3861593998",
{
- "_1593": 1639
+ "_13": 1152,
+ "_60": 24,
+ "_62": 1154,
+ "_64": 1155
},
- {},
+ "5DN2QZNg9iYP45NqvRetnu",
+ [],
+ "3910241726",
{
- "_1476": 1618,
- "_1589": 1641
+ "_13": 1156,
+ "_60": 61,
+ "_62": 1158,
+ "_64": 1159
},
+ "1ItyvFbGou4epQp9HviAsm",
+ [],
{
- "_1591": 1642
+ "_13": 713,
+ "_60": 24,
+ "_62": 714,
+ "_64": 1161
},
+ [],
+ "3940529303",
{
- "_1593": 1643
+ "_13": 1162,
+ "_60": 61,
+ "_62": 1164,
+ "_64": 1165
},
+ "17mkpeWbaWfCeMrpE67FOc",
+ [],
+ "4012051055",
{
- "_1614": 1622
+ "_13": 1166,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1168
},
- "/read_page_tool",
+ [],
+ "4043415092",
{
- "_1578": 1646
+ "_13": 1169,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1171
},
+ [],
+ "4132051975",
{
- "_1580": 1627,
- "_1582": 1647,
- "_1584": 1648,
- "_1586": 1649,
- "_1606": 1654,
- "_1623": 20
+ "_13": 1172,
+ "_60": 61,
+ "_62": 1174,
+ "_64": 1175
},
- "endpoint_read_page_tool_post",
+ "wLBwoUCuuMdnRwa9KkfHI",
[],
+ "4141006638",
{
- "_1588": 45,
- "_1589": 1650
+ "_13": 1176,
+ "_60": 24,
+ "_62": 1178,
+ "_64": 1179
},
+ "6v4Q2eufBTFCb2P3fGZwPo",
+ [],
+ "4192239497",
{
- "_1591": 1651
+ "_13": 1180,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1182
},
+ [],
+ "4206189746",
{
- "_1593": 1652
+ "_13": 1183,
+ "_60": 24,
+ "_62": 91,
+ "_64": 1185
},
+ [],
+ "4242210007",
{
- "_1614": 1653
+ "_13": 1186,
+ "_60": 24,
+ "_62": 1188,
+ "_64": 1189
},
- "#/components/schemas/FileReaderTool",
+ "5T7B6Qu0S7TF24HzOjoxJl",
+ [],
{
- "_1608": 1655,
- "_1616": 1659
+ "_1191": 1192,
+ "_1199": 1200,
+ "_365": 1204,
+ "_1206": 1207,
+ "_1225": 1226,
+ "_1229": 1230,
+ "_1235": 1236,
+ "_1243": 1244,
+ "_421": 1277,
+ "_430": 1279,
+ "_1281": 1282,
+ "_1287": 1288
},
+ "550560761",
{
- "_1476": 1610,
- "_1589": 1656
+ "_13": 1191,
+ "_60": 1193,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1198
},
{
- "_1591": 1657
+ "_1194": 1195,
+ "_1196": 1197
},
+ "history_results_limit",
+ 6,
+ "local_results_limit",
+ 2,
+ [],
+ "948081399",
{
- "_1593": 1658
+ "_13": 1199,
+ "_60": 1201,
+ "_356": 1202,
+ "_62": 1202,
+ "_358": 24,
+ "_64": 1203,
+ "_363": 24,
+ "_364": 61
},
{},
+ "layerAssignment",
+ [],
+ {
+ "_13": 365,
+ "_60": 367,
+ "_356": 369,
+ "_62": 369,
+ "_358": 24,
+ "_64": 1205,
+ "_363": 61,
+ "_364": 61
+ },
+ [],
+ "1682643554",
{
- "_1476": 1618,
- "_1589": 1660
+ "_13": 1206,
+ "_60": 1208,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1224
},
{
- "_1591": 1661
+ "_1209": 1210
},
+ "school_configurations",
{
- "_1593": 1662
+ "_1211": 1212,
+ "_1220": 1221
},
+ "openai_1signup_for_1",
{
- "_1614": 1622
+ "_1213": 1214,
+ "_1215": 1216,
+ "_1217": 1218
},
- "/write_file_tool",
+ "display_name",
+ "OpenAI",
+ "promotion_campaign_id",
+ "students-2025-one-month-free",
+ "domains",
+ [
+ 1219
+ ],
+ "openai.com, mail.openai.com",
+ "australia",
{
- "_1578": 1665
+ "_1213": 1214,
+ "_1215": 1216,
+ "_1217": 1222
},
+ [
+ 1223
+ ],
+ "edu.au",
+ [],
+ "1809520125",
{
- "_1580": 1627,
- "_1582": 1666,
- "_1584": 1667,
- "_1586": 1668,
- "_1606": 1673,
- "_1623": 20
+ "_13": 1225,
+ "_60": 1227,
+ "_356": 741,
+ "_62": 741,
+ "_358": 61,
+ "_64": 1228,
+ "_363": 24,
+ "_364": 24
},
- "endpoint_write_file_tool_post",
+ {},
[],
+ "2181185232",
+ {
+ "_13": 1229,
+ "_60": 1231,
+ "_356": 488,
+ "_62": 488,
+ "_358": 61,
+ "_64": 1232,
+ "_363": 24,
+ "_364": 61
+ },
+ {},
+ [
+ 1233
+ ],
{
- "_1588": 45,
- "_1589": 1669
+ "_67": 1234,
+ "_69": 101,
+ "_71": 91
},
+ "1887864177",
+ "2604379743",
{
- "_1591": 1670
+ "_13": 1235,
+ "_60": 1237,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1242
},
{
- "_1593": 1671
+ "_1238": 1239,
+ "_1240": 1241
},
+ "nux_video_url",
+ "https://persistent.oaistatic.com/image-gen/nux.CB3699EE.mov",
+ "nux_image_url",
+ "https://persistent.oaistatic.com/image-gen/nux.CB3699EE.jpg",
+ [],
+ "2821602598",
{
- "_1614": 1672
+ "_13": 1243,
+ "_60": 1245,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 1276
},
- "#/components/schemas/FileWriterTool",
{
- "_1608": 1674,
- "_1616": 1678
+ "_1246": 1247
},
+ "Football",
+ [
+ 1248
+ ],
{
- "_1476": 1610,
- "_1589": 1675
+ "_1249": 1246,
+ "_1250": 1251
},
+ "title",
+ "templates",
+ [
+ 1252,
+ 1262,
+ 1269
+ ],
{
- "_1591": 1676
+ "_1253": 1254,
+ "_1255": 1256
},
+ "text",
+ "The [input] are down [input] with [input] left in the [input] quarter. What are their odds they [input]?",
+ "suggestions",
+ [
+ 1257,
+ 1258,
+ 1259,
+ 1260,
+ 1261
+ ],
+ "KC Chiefs",
+ "27 - 10",
+ "5 minutes",
+ "4th",
+ "win",
{
- "_1593": 1677
+ "_1253": 1263,
+ "_1255": 1264
},
- {},
+ "I'm [input], played [input] and work out [input]. Help me train like a [input].",
+ [
+ 1265,
+ 1266,
+ 1267,
+ 1268
+ ],
+ "29",
+ "football",
+ "3 days a week",
+ "NFL running back",
+ {
+ "_1253": 1270,
+ "_1255": 1271
+ },
+ "Write me a [input]. Include [input], [input], and [input].",
+ [
+ 1272,
+ 1273,
+ 1274,
+ 1275
+ ],
+ "perfect halftime show song",
+ "dancing",
+ "fireworks",
+ "being super fierce",
+ [],
{
- "_1476": 1618,
- "_1589": 1679
+ "_13": 421,
+ "_60": 423,
+ "_356": 424,
+ "_62": 424,
+ "_358": 24,
+ "_64": 1278,
+ "_363": 61,
+ "_364": 61
},
+ [],
{
- "_1591": 1680
+ "_13": 430,
+ "_60": 432,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1280
},
+ [],
+ "3519108196",
{
- "_1593": 1681
+ "_13": 1281,
+ "_60": 1283,
+ "_356": 357,
+ "_62": 357,
+ "_358": 24,
+ "_64": 1286,
+ "_363": 24,
+ "_364": 24
},
{
- "_1614": 1622
+ "_1284": 61,
+ "_1285": 61
},
- "/file_semantic_search_tool",
+ "show-album-upload",
+ "show-camera-upload",
+ [],
+ "3983984123",
{
- "_1578": 1684
+ "_13": 1287,
+ "_60": 1289,
+ "_356": 741,
+ "_62": 741,
+ "_358": 24,
+ "_64": 1290,
+ "_466": 1291,
+ "_363": 24,
+ "_364": 24,
+ "_1292": 61
},
{
- "_1580": 1627,
- "_1582": 1685,
- "_1584": 1686,
- "_1586": 1687,
- "_1606": 1692,
- "_1623": 20
+ "_749": 24
},
- "endpoint_file_semantic_search_tool_post",
[],
+ [
+ 749
+ ],
+ "is_in_layer",
+ {
+ "_1294": 1295,
+ "_448": 1334,
+ "_472": 1339,
+ "_477": 1342,
+ "_483": 1345,
+ "_495": 1349,
+ "_501": 1352,
+ "_506": 1355,
+ "_1364": 1365,
+ "_1372": 1373,
+ "_517": 1381,
+ "_1385": 1386,
+ "_1393": 1394,
+ "_1402": 1403,
+ "_1425": 1426,
+ "_1435": 1436,
+ "_558": 1455,
+ "_571": 1458,
+ "_577": 1461,
+ "_583": 1464,
+ "_592": 1467,
+ "_1470": 1471,
+ "_1479": 1480,
+ "_1485": 1486,
+ "_607": 1492,
+ "_1496": 1497,
+ "_626": 1502,
+ "_643": 1507,
+ "_665": 1512,
+ "_675": 1516,
+ "_1520": 1521,
+ "_686": 1526,
+ "_1530": 1531,
+ "_1539": 1540,
+ "_698": 1548,
+ "_1551": 1552,
+ "_1566": 1567,
+ "_1572": 1573,
+ "_1578": 1579,
+ "_1587": 1588,
+ "_1603": 1604,
+ "_1610": 1611,
+ "_1617": 1618,
+ "_1623": 1624,
+ "_1628": 1629,
+ "_705": 1635,
+ "_1642": 1643,
+ "_1649": 1650,
+ "_1655": 1656,
+ "_727": 1673,
+ "_737": 1681,
+ "_746": 1684,
+ "_1687": 1688,
+ "_752": 1714,
+ "_1717": 1718,
+ "_1725": 1726,
+ "_758": 1731,
+ "_808": 1736,
+ "_1739": 1740,
+ "_1746": 1747,
+ "_1761": 1762,
+ "_815": 1766,
+ "_1769": 1770,
+ "_1774": 1775,
+ "_822": 1804,
+ "_1807": 1808
+ },
+ "109457",
+ {
+ "_13": 1294,
+ "_60": 1296,
+ "_356": 1324,
+ "_62": 1324,
+ "_358": 24,
+ "_64": 1325,
+ "_466": 1331,
+ "_468": 1332,
+ "_364": 61,
+ "_363": 61,
+ "_470": 1333
+ },
+ {
+ "_1297": 24,
+ "_1298": 24,
+ "_1299": 24,
+ "_1300": 24,
+ "_1301": 24,
+ "_1302": 455,
+ "_1303": 24,
+ "_1304": 24,
+ "_1305": 24,
+ "_1306": 455,
+ "_1307": 24,
+ "_1308": 1309,
+ "_1310": 24,
+ "_1311": 24,
+ "_1312": 24,
+ "_1313": 24,
+ "_1314": 24,
+ "_1315": 455,
+ "_1316": 24,
+ "_1317": 1318,
+ "_1319": 1320,
+ "_1321": 1320,
+ "_1322": 24,
+ "_1323": 24
+ },
+ "is_starter_prompt_popular",
+ "is_starter_prompt_top_performer",
+ "is_starter_prompt_back_and_forth",
+ "use_starter_prompt_help_how_to",
+ "model_talks_first",
+ "model_talks_first_kind",
+ "model_talks_first_augment_system_prompt",
+ "is_starter_prompt_enabled_for_new_users_only",
+ "add_system_prompt_during_onboarding",
+ "onboarding_system_prompt_type",
+ "enable_new_onboarding_flow",
+ "new_onboarding_flow_qualified_start_date",
+ "2025-02-28T06:00:00Z",
+ "personalized_onboarding",
+ "onboarding_show_custom_instructions_page",
+ "write_custom_instructions_in_onboarding",
+ "keep_onboarding_after_dismiss",
+ "onboarding_dynamic_steps_based_on_main_usage",
+ "onboarding_style",
+ "onboarding_show_followups",
+ "onboarding_inject_cards_position",
+ 9999,
+ "ONBOARDING_EXAMPLES_PROMPT_ID",
+ "convo_gen_examples_v2",
+ "onboarding_gen_examples_prompt_type",
+ "show_new_chat_nux",
+ "is_guided_onboarding",
+ "M3EE4Hyw83Rv7RjIICK6o",
+ [
+ 1326,
+ 1328
+ ],
{
- "_1588": 45,
- "_1589": 1688
+ "_67": 1327,
+ "_69": 101,
+ "_71": 91
},
+ "674041001",
{
- "_1591": 1689
+ "_67": 1329,
+ "_69": 70,
+ "_71": 1330
},
+ "59687878",
+ "4k3eNmHeryixdsgalKqv0",
+ [
+ 1315,
+ 1308,
+ 1305,
+ 1306,
+ 1310,
+ 1316,
+ 1317,
+ 1321,
+ 1322
+ ],
+ "52701554",
+ [
+ 1326
+ ],
{
- "_1593": 1690
+ "_13": 448,
+ "_60": 450,
+ "_356": 461,
+ "_62": 461,
+ "_358": 24,
+ "_64": 1335,
+ "_466": 467,
+ "_468": 469,
+ "_364": 24,
+ "_363": 24,
+ "_470": 1338
},
+ [
+ 1336
+ ],
{
- "_1614": 1691
+ "_67": 464,
+ "_69": 70,
+ "_71": 1337
},
- "#/components/schemas/SemanticSearchTool",
+ "1yBehWRiofl3CcNtvNVvk6",
+ [
+ 1336
+ ],
{
- "_1608": 1693,
- "_1616": 1697
+ "_13": 472,
+ "_60": 474,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1340,
+ "_466": 1341,
+ "_470": 1340
},
+ [],
+ [],
{
- "_1476": 1610,
- "_1589": 1694
+ "_13": 477,
+ "_60": 479,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1343,
+ "_466": 1344,
+ "_470": 1343
},
+ [],
+ [],
{
- "_1591": 1695
+ "_13": 483,
+ "_60": 485,
+ "_356": 488,
+ "_62": 488,
+ "_358": 61,
+ "_64": 1346,
+ "_466": 492,
+ "_468": 493,
+ "_364": 61,
+ "_363": 24,
+ "_470": 1348
},
+ [
+ 1347
+ ],
{
- "_1593": 1696
+ "_67": 491,
+ "_69": 101,
+ "_71": 91
},
- {},
+ [],
{
- "_1476": 1618,
- "_1589": 1698
+ "_13": 495,
+ "_60": 497,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1350,
+ "_466": 1351,
+ "_470": 1350
},
+ [],
+ [],
{
- "_1591": 1699
+ "_13": 501,
+ "_60": 503,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 1353,
+ "_466": 1354,
+ "_470": 1353
},
+ [],
+ [],
{
- "_1593": 1700
+ "_13": 506,
+ "_60": 1356,
+ "_356": 1357,
+ "_62": 1357,
+ "_358": 61,
+ "_64": 1358,
+ "_466": 1362,
+ "_468": 506,
+ "_364": 24,
+ "_363": 24,
+ "_470": 1363
},
{
- "_1614": 1622
+ "_509": 61,
+ "_510": 61
},
- "components",
+ "5UE8g4T56yxUBUYancL7KB:override",
+ [
+ 1359,
+ 1360
+ ],
{
- "_1703": 1704,
- "_1811": 1812
+ "_67": 97,
+ "_69": 101,
+ "_71": 91
},
- "schemas",
{
- "_1705": 1706,
- "_1727": 1728,
- "_1740": 1741,
- "_1754": 1755,
- "_1762": 1763,
- "_1785": 1786,
- "_1795": 1796
+ "_67": 100,
+ "_69": 70,
+ "_71": 1361
},
- "FileReaderTool",
+ "5hCRKi4Gs5QJkOanmdVvHU:100.00:4",
+ [
+ 510,
+ 509
+ ],
+ [
+ 1359,
+ 1360
+ ],
+ "415386882",
{
- "_1597": 1707,
- "_1449": 1595,
- "_1588": 1726,
- "_614": 1705
+ "_13": 1364,
+ "_60": 1366,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 1368,
+ "_466": 1371,
+ "_470": 1368
},
{
- "_1708": 1709,
- "_1712": 1713,
- "_1717": 1718
+ "_1367": 24
},
- "file_path_name",
+ "is_voice_mode_entry_point_enabled",
+ [
+ 1369
+ ],
{
- "_1449": 1604,
- "_614": 1710,
- "_1476": 1711
+ "_67": 1370,
+ "_69": 101,
+ "_71": 91
},
- "File Path Name",
- "The path name of the file to read, i.e. full/path/to/file.pdf or ~/path/to/file.pdf",
- "start_page",
+ "1644396868",
+ [],
+ "453021389",
{
- "_1449": 1714,
- "_614": 1715,
- "_1476": 1716
+ "_13": 1372,
+ "_60": 1374,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 1377,
+ "_466": 1380,
+ "_470": 1377
},
- "integer",
- "Start Page",
- "The starting page number to read from (inclusive)",
- "end_page",
{
- "_1719": 1720,
- "_614": 1724,
- "_1476": 1725
+ "_1375": 24,
+ "_1376": 61
},
- "anyOf",
+ "enable-block-animations",
+ "enable-word-animations",
[
- 1721,
- 1722
+ 1378
],
{
- "_1449": 1714
+ "_67": 1379,
+ "_69": 101,
+ "_71": 455
},
+ "3016192915",
+ [],
{
- "_1449": 1723
+ "_13": 517,
+ "_60": 519,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1382,
+ "_466": 1384,
+ "_470": 1382
},
- "null",
- "End Page",
- "The ending page number to read to (inclusive). If not provided, will read up to 20 pages from start_page.",
[
- 1708,
- 1712
+ 1383
],
- "FileUploadResponse",
- {
- "_1597": 1729,
- "_1449": 1595,
- "_1588": 1739,
- "_614": 1727
- },
{
- "_1730": 1731,
- "_1734": 1735
+ "_67": 549,
+ "_69": 101,
+ "_71": 91
},
- "urls",
+ [],
+ "474444727",
{
- "_1602": 1732,
- "_1449": 1601,
- "_614": 1733
+ "_13": 1385,
+ "_60": 1387,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1391,
+ "_466": 1392,
+ "_470": 1391
},
{
- "_1449": 1604
+ "_1388": 61,
+ "_1389": 1390
},
- "Urls",
- "errored_files",
+ "show_custom_instr_message",
+ "custom_instr_message_timeout_duration",
+ 1500,
+ [],
+ [],
+ "590557768",
{
- "_1602": 1736,
- "_1449": 1601,
- "_614": 1737,
- "_52": 1738
+ "_13": 1393,
+ "_60": 1395,
+ "_356": 1397,
+ "_62": 1397,
+ "_358": 61,
+ "_64": 1398,
+ "_466": 1399,
+ "_468": 1400,
+ "_364": 61,
+ "_363": 61,
+ "_470": 1401
},
{
- "_1449": 1604
+ "_1396": 61
},
- "Errored Files",
+ "should_show_return_home_btn",
+ "MfvDyM5oEZ1TqWS7cE8et",
[],
[
- 1730
+ 1396
],
- "FileWriterTool",
- {
- "_1597": 1742,
- "_1449": 1595,
- "_1588": 1753,
- "_614": 1740
- },
- {
- "_1708": 1743,
- "_1589": 1745,
- "_1748": 1749
- },
- {
- "_1449": 1604,
- "_614": 1710,
- "_1476": 1744
- },
- "The path name of the file to write, i.e. full/path/to/file.txt",
+ "1022536663",
+ [],
+ "660512088",
{
- "_1449": 1604,
- "_614": 1746,
- "_1476": 1747
+ "_13": 1402,
+ "_60": 1404,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 1412,
+ "_466": 1424,
+ "_470": 1412
},
- "Content",
- "The content to write to the file",
- "append",
{
- "_1449": 1750,
- "_614": 1751,
- "_1476": 1752,
- "_52": 20
+ "_1405": 24,
+ "_1406": 61,
+ "_1407": 24,
+ "_1408": 24,
+ "_1409": 24,
+ "_1410": 24,
+ "_1411": 24
},
- "boolean",
- "Append",
- "Whether to append to the file or overwrite it",
+ "enable_arch_updates",
+ "include_legacy_sidebar_contents",
+ "include_floating_state",
+ "include_share_on_mobile",
+ "include_account_settings_move",
+ "include_scrolling_behavior_update",
+ "include_revised_sidebar_ia",
[
- 1708,
- 1589
+ 1413,
+ 1415,
+ 1418,
+ 1421
],
- "HTTPValidationError",
{
- "_1597": 1756,
- "_1449": 1595,
- "_614": 1754
+ "_67": 1414,
+ "_69": 101,
+ "_71": 91
},
+ "2558701922",
{
- "_1757": 1758
+ "_67": 1416,
+ "_69": 101,
+ "_71": 1417
},
- "detail",
+ "735930678",
+ "6nGV45RQYtcIGTbPzppBhS",
{
- "_1602": 1759,
- "_1449": 1601,
- "_614": 1761
+ "_67": 1419,
+ "_69": 101,
+ "_71": 1420
},
+ "3011415004",
+ "7pUMK6uci7sslAj8bP7VEA",
{
- "_1614": 1760
+ "_67": 1422,
+ "_69": 101,
+ "_71": 1423
},
- "#/components/schemas/ValidationError",
- "Detail",
- "ListFolderTool",
+ "854062205",
+ "66y6sNojVqOdoNf0CX0JYC",
+ [],
+ "685344542",
{
- "_1597": 1764,
- "_1449": 1595,
- "_1588": 1784,
- "_614": 1762
+ "_13": 1425,
+ "_60": 1427,
+ "_356": 1429,
+ "_62": 1429,
+ "_358": 24,
+ "_64": 1430,
+ "_466": 1432,
+ "_468": 1433,
+ "_364": 24,
+ "_363": 24,
+ "_470": 1434
},
{
- "_1765": 1766,
- "_1769": 1770,
- "_1773": 1774,
- "_1542": 1777,
- "_1780": 1781
+ "_1428": 24,
+ "_529": 61
},
- "folder_path",
+ "is_mobile_enterprise_enabled",
+ "3INu3qkV6QoN42TYoP3gja:override",
+ [
+ 1431
+ ],
{
- "_1449": 1604,
- "_614": 1767,
- "_1476": 1768
+ "_67": 132,
+ "_69": 70,
+ "_71": 134
},
- "Folder Path",
- "The path of the folder to list, e.g., 'documents', 'projects/research', or '~/path/to/folder'. Root folder is ''.",
- "recursive",
+ [
+ 529
+ ],
+ "1388643772",
+ [
+ 1431
+ ],
+ "717266490",
{
- "_1449": 1750,
- "_614": 1771,
- "_1476": 1772,
- "_52": 20
+ "_13": 1435,
+ "_60": 1437,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1453,
+ "_466": 1454,
+ "_470": 1453
+ },
+ {
+ "_1438": 61,
+ "_1439": 61,
+ "_1440": 61,
+ "_1308": 1441,
+ "_1307": 24,
+ "_1442": 24,
+ "_1310": 24,
+ "_1313": 24,
+ "_1312": 24,
+ "_1443": 406,
+ "_1444": 24,
+ "_1311": 24,
+ "_1445": 24,
+ "_1446": 61,
+ "_1447": 24,
+ "_1448": 1449
},
- "Recursive",
- "Whether to list files and folders recursively",
- "limit",
+ "optimize_initial_modals",
+ "defer_memory_modal",
+ "enable_v2_cleanup",
+ "2099-11-04T00:00:00Z",
+ "use_plus_rl_during_onboarding",
+ "plus_rl_during_onboarding_minutes_after_creation",
+ "enable_mobile_app_upsell_banner",
+ "one_tooltip_per_session",
+ "one_announcement_tooltip_per_session",
+ "onboarding_show_other_option",
+ "onboarding_flow_tool_steps",
+ [
+ 1450,
+ 1451,
+ 1452
+ ],
+ "dalle",
+ "file_upload",
+ "canvas",
+ [],
+ [],
{
- "_1449": 1714,
- "_614": 1775,
- "_1476": 1776,
- "_52": 1341
+ "_13": 558,
+ "_60": 560,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1456,
+ "_466": 1457,
+ "_470": 1456
},
- "Limit",
- "The maximum number of items to list, up to 200 if metadata is True, otherwise 2000.",
+ [],
+ [],
{
- "_1449": 1750,
- "_614": 1778,
- "_1476": 1779,
- "_52": 20
+ "_13": 571,
+ "_60": 573,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1459,
+ "_466": 1460,
+ "_470": 1459
},
- "Metadata",
- "Whether to include full metadata or just names.",
- "folders_only",
+ [],
+ [],
{
- "_1449": 1750,
- "_614": 1782,
- "_1476": 1783,
- "_52": 20
+ "_13": 577,
+ "_60": 579,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1462,
+ "_466": 1463,
+ "_470": 1462
},
- "Folders Only",
- "Whether to include only folders in the output.",
- [
- 1765
- ],
- "SemanticSearchTool",
+ [],
+ [],
{
- "_1597": 1787,
- "_1449": 1595,
- "_1588": 1794,
- "_614": 1785
+ "_13": 583,
+ "_60": 585,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1465,
+ "_466": 1466,
+ "_470": 1465
},
+ [],
+ [],
{
- "_1708": 1788,
- "_1790": 1791
+ "_13": 592,
+ "_60": 594,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 1468,
+ "_466": 1469,
+ "_470": 1468
},
+ [],
+ [],
+ "1358188185",
{
- "_1449": 1604,
- "_614": 1710,
- "_1476": 1789
+ "_13": 1470,
+ "_60": 1472,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1475,
+ "_466": 1478,
+ "_470": 1475
},
- "The path name of the file to search, i.e. full/path/to/file.pdf or ~/path/to/file.pdf",
- "query",
{
- "_1449": 1604,
- "_614": 1792,
- "_1476": 1793
+ "_1473": 61,
+ "_1474": 24
},
- "Query",
- "The query used for semantic search on the file. The query should be a short sentence that describes the concept you want to search for in the file.",
+ "prefetch-models",
+ "sidebar-default-close",
[
- 1708,
- 1790
+ 1476
],
- "ValidationError",
{
- "_1597": 1797,
- "_1449": 1595,
- "_1588": 1810,
- "_614": 1795
+ "_67": 1477,
+ "_69": 101,
+ "_71": 91
+ },
+ "542939804",
+ [],
+ "1358849452",
+ {
+ "_13": 1479,
+ "_60": 1481,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 1483,
+ "_466": 1484,
+ "_470": 1483
+ },
+ {
+ "_1482": 24
},
+ "disable-ssr",
+ [],
+ [],
+ "1368081792",
{
- "_1798": 1799,
- "_1805": 1806,
- "_1449": 1808
+ "_13": 1485,
+ "_60": 1487,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1490,
+ "_466": 1491,
+ "_470": 1490
},
- "loc",
{
- "_1602": 1800,
- "_1449": 1601,
- "_614": 1804
+ "_1488": 24,
+ "_1489": 24
},
+ "should_show_o3_mini_high_upsell_banner_free_user_to_plus",
+ "should_show_o3_mini_high_upsell_banner_plus_user",
+ [],
+ [],
{
- "_1719": 1801
+ "_13": 607,
+ "_60": 609,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1493,
+ "_466": 1495,
+ "_470": 1493
},
[
- 1802,
- 1803
+ 1494
],
{
- "_1449": 1604
+ "_67": 624,
+ "_69": 101,
+ "_71": 91
+ },
+ [],
+ "1578749296",
+ {
+ "_13": 1496,
+ "_60": 1498,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1500,
+ "_466": 1501,
+ "_470": 1500
},
{
- "_1449": 1714
+ "_1499": 24
},
- "Location",
- "msg",
+ "is_sticky_toggle_off",
+ [],
+ [],
{
- "_1449": 1604,
- "_614": 1807
+ "_13": 626,
+ "_60": 1503,
+ "_356": 488,
+ "_62": 488,
+ "_358": 24,
+ "_64": 1504,
+ "_466": 640,
+ "_468": 641,
+ "_364": 61,
+ "_363": 24,
+ "_470": 1506
},
- "Message",
{
- "_1449": 1604,
- "_614": 1809
+ "_629": 24,
+ "_630": 24,
+ "_631": 24,
+ "_632": 24,
+ "_633": 24,
+ "_634": 24
},
- "Error Type",
[
- 1798,
- 1805,
- 1449
+ 1505
],
- "securitySchemes",
{
- "_1813": 1814
+ "_67": 638,
+ "_69": 101,
+ "_71": 91
},
- "OAuth2",
+ [],
{
- "_1449": 1815,
- "_1816": 1817
+ "_13": 643,
+ "_60": 645,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1508,
+ "_466": 1511,
+ "_470": 1508
},
- "oauth2",
- "flows",
+ [
+ 1509,
+ 1510
+ ],
{
- "_1818": 1819
+ "_67": 650,
+ "_69": 101,
+ "_71": 651
},
- "authorizationCode",
{
- "_1820": 1821,
- "_1822": 1823,
- "_1824": 1825
+ "_67": 653,
+ "_69": 101,
+ "_71": 654
},
- "authorizationUrl",
- "https://oauth-firebase-200961485741.us-central1.run.app/oauth2/auth",
- "tokenUrl",
- "https://oauth-firebase-200961485741.us-central1.run.app/oauth2/token",
- "scopes",
+ [],
{
- "_1826": 1827
+ "_13": 665,
+ "_60": 667,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1513,
+ "_466": 1515,
+ "_470": 1513
},
- "read:user",
- "Read access to user's profile",
- "security",
[
- 1830
+ 1514
],
{
- "_1813": 1831
+ "_67": 673,
+ "_69": 101,
+ "_71": 91
+ },
+ [],
+ {
+ "_13": 675,
+ "_60": 677,
+ "_356": 488,
+ "_62": 488,
+ "_358": 24,
+ "_64": 1517,
+ "_466": 683,
+ "_468": 684,
+ "_364": 61,
+ "_363": 24,
+ "_470": 1519
},
[
- 1826
+ 1518
],
- "auth",
- {
- "_1449": 1834,
- "_1472": 682,
- "_1835": 1836,
- "_1837": 13,
- "_1838": 1839,
- "_1840": 1841,
- "_1842": 1843,
- "_1844": 20,
- "_1845": 1846
- },
- "oauth",
- "client_url",
- "https://oauth2.myaidrive.com/oauth2/auth",
- "scope",
- "authorization_url",
- "https://oauth2.myaidrive.com/oauth2/token",
- "authorization_content_type",
- "application/x-www-form-urlencoded",
- "verification_tokens",
- {},
- "pkce_required",
- "token_exchange_method",
- "default_post",
- "privacy_policy_url",
- "https://myaidrive.com/#/privacy-policy",
{
- "_9": 1850,
- "_1449": 1552,
- "_1541": -5,
- "_1542": 1851
+ "_67": 682,
+ "_69": 101,
+ "_71": 91
},
- "67c5203d017c81918a149cfe6f5d7b0b",
+ [],
+ "1846737571",
{
- "_1554": 1852,
- "_1556": 1853,
- "_1558": -5,
- "_1559": 1854,
- "_1832": 1944,
- "_1847": 1848
+ "_13": 1520,
+ "_60": 1522,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1524,
+ "_466": 1525,
+ "_470": 1524
},
- "g-345fa589ea3412b6374881742ad898a122a996ac",
- "aipdf.myaidrive.com",
{
- "_1561": 1562,
- "_1563": 1855,
- "_1568": 1859,
- "_1574": 1862,
- "_1701": 1910
+ "_1523": 24
},
+ "is_upgrade_button_blue",
+ [],
+ [],
{
- "_614": 1856,
- "_1476": 1857,
- "_1505": 1858
+ "_13": 686,
+ "_60": 688,
+ "_356": 690,
+ "_62": 690,
+ "_358": 61,
+ "_64": 1527,
+ "_466": 695,
+ "_468": 696,
+ "_364": 24,
+ "_363": 24,
+ "_470": 1529
},
- "AI Drive",
- "Super-fast, interactive chats with PDFs of any size, complete with page references for fact checking.",
- "v0.0.1",
[
- 1860
+ 1528
],
{
- "_1571": 1861,
- "_1476": 1573
+ "_67": 693,
+ "_69": 70,
+ "_71": 694
},
- "https://aipdf.myaidrive.com",
- {
- "_1863": 1864,
- "_1879": 1880,
- "_1893": 1894
- },
- "/summarize_pdf",
+ [
+ 1528
+ ],
+ "2118136551",
{
- "_1578": 1865
+ "_13": 1530,
+ "_60": 1532,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 1537,
+ "_466": 1538,
+ "_470": 1537
},
{
- "_1476": 1866,
- "_1582": 1867,
- "_1584": 1868,
- "_1586": 1869,
- "_1606": 1874,
- "_1877": 20,
- "_1828": 1878,
- "_1623": 20
+ "_1533": 24,
+ "_1534": 24,
+ "_1535": 61,
+ "_1536": 61
},
- "Provide the text content of the PDF linked for summarization. Users can specify page range as an option.ALWAYS PROVIDE QUOTES AND PAGE CITATIONS.",
- "summarize",
+ "show_cookie_banner_if_qualified",
+ "test_dummy",
+ "sign_up_button_has_the_word_free",
+ "show_cookie_banner_auth_login",
[],
+ [],
+ "2149763392",
{
- "_1589": 1870,
- "_1588": 45
+ "_13": 1539,
+ "_60": 1541,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1544,
+ "_466": 1547,
+ "_470": 1544
},
{
- "_1591": 1871
+ "_1542": 24,
+ "_1543": 24
},
+ "show-in-main-composer",
+ "show-model-picker",
+ [
+ 1545
+ ],
{
- "_1593": 1872
+ "_67": 1546,
+ "_69": 101,
+ "_71": 91
},
+ "4151101559",
+ [],
{
- "_1614": 1873
+ "_13": 698,
+ "_60": 700,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1549,
+ "_466": 1550,
+ "_470": 1549
},
- "#/components/schemas/summarizeRequestSchema",
+ [],
+ [],
+ "2259187367",
{
- "_1608": 1875
+ "_13": 1551,
+ "_60": 1553,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 1564,
+ "_466": 1565,
+ "_470": 1564
},
{
- "_1476": 1876
+ "_1554": 24,
+ "_1555": 1556,
+ "_1557": 1558,
+ "_1559": 61,
+ "_1560": 1561,
+ "_1562": 24,
+ "_1563": 1246
},
- "Successful response",
- "deprecated",
+ "enable_nux",
+ "start_time",
+ "2099-01-01T00:00:00Z",
+ "end_time",
+ "2000-01-01T00:00:00Z",
+ "use_multi_input",
+ "force_madlibs_param_name",
+ "madlibs_0203",
+ "enable_additional_categories",
+ "additional_category",
+ [],
[],
- "/upload_and_search_pdf",
+ "2505516353",
{
- "_1578": 1881
+ "_13": 1566,
+ "_60": 1568,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1570,
+ "_466": 1571,
+ "_470": 1570
},
{
- "_1476": 1882,
- "_1582": 1883,
- "_1584": 1884,
- "_1586": 1885,
- "_1606": 1890,
- "_1877": 20,
- "_1828": 1892,
- "_1623": 20
+ "_1569": 61
},
- "Semantic query into a URL link to a document. THINK STEP BY STEP. ALWAYS PROVIDE QUOTES AND PAGE CITIATIONS. BREAK COMPLEX QUESTIONS INTO SEVERAL QUERIES.",
- "upload_and_search_pdf",
+ "android-keyboard-layout",
[],
+ [],
+ "2670443078",
{
- "_1589": 1886,
- "_1588": 45
- },
- {
- "_1591": 1887
+ "_13": 1572,
+ "_60": 1574,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1576,
+ "_466": 1577,
+ "_470": 1576
},
{
- "_1593": 1888
+ "_1575": 61
},
+ "is_gating_fix_enabled",
+ [],
+ [],
+ "2716194794",
{
- "_1614": 1889
+ "_13": 1578,
+ "_60": 1580,
+ "_356": 488,
+ "_62": 488,
+ "_358": 24,
+ "_64": 1581,
+ "_466": 1584,
+ "_468": 1585,
+ "_364": 61,
+ "_363": 24,
+ "_470": 1586
},
- "#/components/schemas/upload_and_search_pdfRequestSchema",
{
- "_1608": 1891
+ "_740": 24
},
+ [
+ 1582
+ ],
{
- "_1476": 1876
+ "_67": 1583,
+ "_69": 101,
+ "_71": 91
},
+ "2849926832",
+ [
+ 740
+ ],
+ "2435265903",
[],
- "/create_pdf_map",
- {
- "_1578": 1895
- },
+ "2723963139",
{
- "_1476": 1896,
- "_1582": 1897,
- "_1584": 1898,
- "_1586": 1899,
- "_1606": 1904,
- "_1877": 20,
- "_1828": 1909,
- "_1623": 20
+ "_13": 1587,
+ "_60": 1589,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1601,
+ "_466": 1602,
+ "_470": 1601
+ },
+ {
+ "_1590": 24,
+ "_1591": 24,
+ "_1592": 61,
+ "_1593": 61,
+ "_1594": 61,
+ "_1595": 1596,
+ "_1597": 61,
+ "_1598": 24,
+ "_1599": 24,
+ "_1600": 455
},
- "Create a PDF map for the file the user uploaded to the GPT",
- "createPDFMap",
+ "is_dynamic_model_enabled",
+ "show_message_model_info",
+ "show_message_regenerate_model_selector",
+ "is_conversation_model_switching_allowed",
+ "show_rate_limit_downgrade_banner",
+ "config",
+ {},
+ "show_message_regenerate_model_selector_on_every_message",
+ "is_AG8PqS2q_enabled",
+ "is_chive_enabled",
+ "sahara_model_id_override",
[],
+ [],
+ "2775247110",
{
- "_1589": 1900,
- "_1588": 45
+ "_13": 1603,
+ "_60": 1605,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1608,
+ "_466": 1609,
+ "_470": 1608
},
{
- "_1591": 1901
+ "_1606": 24,
+ "_1607": 24
},
+ "show_pro_badge",
+ "show_plan_type_badge",
+ [],
+ [],
+ "2840731323",
{
- "_1593": 1902
+ "_13": 1610,
+ "_60": 1612,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 1614,
+ "_466": 1616,
+ "_470": 1614
},
{
- "_1614": 1903
+ "_616": 61,
+ "_1613": 61
},
- "#/components/schemas/create_pdf_mapRequestSchema",
+ "is_direct_continue_enabled",
+ [
+ 1615
+ ],
{
- "_1608": 1905,
- "_1906": 1907
+ "_67": 1021,
+ "_69": 101,
+ "_71": 91
},
+ [],
+ "2888142241",
{
- "_1476": 1876
+ "_13": 1617,
+ "_60": 1619,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1621,
+ "_466": 1622,
+ "_470": 1621
},
- "500",
{
- "_1476": 1908
+ "_1620": 61
},
- "Unable send file(s).",
+ "is_upgrade_in_settings",
+ [],
[],
+ "2932223118",
{
- "_1703": 1911,
- "_1811": 1941
+ "_13": 1623,
+ "_60": 1625,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1626,
+ "_466": 1627,
+ "_470": 1626
},
{
- "_1912": 1913,
- "_1921": 1922,
- "_1934": 1935
+ "_528": 61
},
- "upload_and_search_pdfRequestSchema",
+ [],
+ [],
+ "2972011003",
{
- "_1597": 1914,
- "_1449": 1595,
- "_1588": 1920,
- "_614": 1912
+ "_13": 1628,
+ "_60": 1630,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1633,
+ "_466": 1634,
+ "_470": 1633
},
{
- "_1915": 1916,
- "_1790": 1918
+ "_1631": 61,
+ "_1632": 24
},
- "pdf_url",
+ "user_context_message_search_tools_default",
+ "search_tool_holdout_enabled",
+ [],
+ [],
{
- "_1449": 1604,
- "_614": 1915,
- "_1476": 1917
+ "_13": 705,
+ "_60": 1636,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1637,
+ "_466": 1641,
+ "_470": 1637
},
- "url where the PDF file is stored. e.g. https://myaidrive.com/eHrCoFs6i23ygrxL/Democracy_in.pdf",
{
- "_1449": 1604,
- "_614": 1790,
- "_1476": 1919
+ "_708": 61,
+ "_709": 24
},
- "Query to perform semantic search.",
[
- 1915,
- 1790
+ 1638,
+ 1639
],
- "summarizeRequestSchema",
- {
- "_1597": 1923,
- "_1449": 1595,
- "_1588": 1933,
- "_614": 1921
- },
{
- "_1915": 1924,
- "_1712": 1925,
- "_1717": 1930
+ "_67": 713,
+ "_69": 101,
+ "_71": 714
},
{
- "_1449": 1604,
- "_614": 1915,
- "_1476": 1917
+ "_67": 716,
+ "_69": 101,
+ "_71": 1640
},
+ "66covmutTYx82FWVUlZAqF",
+ [],
+ "3119715334",
{
- "_1449": 1714,
- "_614": 1712,
- "_1476": 1926,
- "_1927": 1928,
- "_1929": 1928
+ "_13": 1642,
+ "_60": 1644,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1647,
+ "_466": 1648,
+ "_470": 1647
},
- "The starting page number for the summary. Optional.",
- "minimum",
- 1,
- "example",
{
- "_1449": 1714,
- "_614": 1717,
- "_1476": 1931,
- "_1927": 1928,
- "_1929": 1932
+ "_1645": 24,
+ "_1646": 24
},
- "The ending page number for the summary. Optional.",
- 20,
- [
- 1915
- ],
- "create_pdf_mapRequestSchema",
+ "should-enable-hojicha",
+ "should-enable-skip",
+ [],
+ [],
+ "3206655705",
{
- "_1597": 1936,
- "_1449": 1595,
- "_1588": 1940
+ "_13": 1649,
+ "_60": 1651,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1653,
+ "_466": 1654,
+ "_470": 1653
},
{
- "_1599": 1937
+ "_1652": 61
},
+ "enable_new_ux",
+ [],
+ [],
+ "3434623093",
{
- "_1449": 1601,
- "_1602": 1938
+ "_13": 1655,
+ "_60": 1657,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 1663,
+ "_466": 1672,
+ "_470": 1663
},
{
- "_1449": 1604,
- "_1476": 1939
+ "_1658": 61,
+ "_1659": 1660,
+ "_1661": 61,
+ "_1662": 61
},
- "List of files to send to BE.",
+ "with-attach-upsell",
+ "labels",
+ "all",
+ "with-voice-upsell",
+ "with-reason-upsell",
[
- 1599
+ 1664,
+ 1666,
+ 1668,
+ 1670
],
{
- "_1942": 1943
- },
- "apiKey",
- {
- "_1449": 1942
+ "_67": 1665,
+ "_69": 101,
+ "_71": 91
},
+ "1604099973",
{
- "_1449": 1945,
- "_1472": 682,
- "_1946": 1947,
- "_1842": 1948,
- "_1949": 682
+ "_67": 1667,
+ "_69": 101,
+ "_71": 91
},
- "service_http",
- "authorization_type",
- "basic",
- {},
- "custom_auth_header",
+ "470066910",
{
- "_9": 1951,
- "_1449": 1552,
- "_1541": -5,
- "_1542": 1952
+ "_67": 1669,
+ "_69": 101,
+ "_71": 91
},
- "67c5203d01a0819185e8cb00b53b4d44",
+ "1932133792",
{
- "_1554": 1953,
- "_1556": 1954,
- "_1558": -5,
- "_1559": 1955,
- "_1832": 2335,
- "_1847": 1848
+ "_67": 1671,
+ "_69": 101,
+ "_71": 91
},
- "g-d40e1cf0e97ef07296629b5379b8afdfde028dba",
- "pdf-creator.myaidrive.com",
+ "4175621034",
+ [],
{
- "_1561": 1562,
- "_1563": 1956,
- "_1568": 1959,
- "_1574": 1962,
- "_1701": 2084
+ "_13": 727,
+ "_60": 1674,
+ "_356": 1676,
+ "_62": 1676,
+ "_358": 24,
+ "_64": 1677,
+ "_466": 734,
+ "_468": 735,
+ "_364": 61,
+ "_363": 61,
+ "_470": 1680
},
{
- "_614": 1957,
- "_1505": 1958
+ "_629": 61,
+ "_730": 1675,
+ "_632": 61,
+ "_631": 61,
+ "_630": 24
},
- "FastAPI",
- "0.1.0",
+ 10,
+ "2FurbaJwwLPFodZHhOZyBO",
[
- 1960
+ 1678
],
{
- "_1571": 1961,
- "_1476": 1573
+ "_67": 733,
+ "_69": 70,
+ "_71": 1679
},
- "https://pdf-creator.myaidrive.com",
+ "1FzsKf0T7jWwTRKiSrbUld:100.00:4",
+ [],
{
- "_1963": 1964,
- "_1982": 1983,
- "_2001": 2002,
- "_2020": 2021,
- "_2039": 2040,
- "_2061": 2062
+ "_13": 737,
+ "_60": 739,
+ "_356": 741,
+ "_62": 741,
+ "_358": 61,
+ "_64": 1682,
+ "_466": 743,
+ "_468": 744,
+ "_364": 24,
+ "_363": 24,
+ "_470": 1683
},
- "/generate_letter_pdf",
+ [],
+ [],
{
- "_1578": 1965
+ "_13": 746,
+ "_60": 748,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1685,
+ "_466": 1686,
+ "_470": 1685
},
+ [],
+ [],
+ "3533083032",
{
- "_1580": 1966,
- "_1623": 20,
- "_1582": 1967,
- "_1586": 1968,
- "_1606": 1973
+ "_13": 1687,
+ "_60": 1689,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 1712,
+ "_466": 1713,
+ "_470": 1712
+ },
+ {
+ "_1690": 61,
+ "_1691": 61,
+ "_1692": 1693,
+ "_1694": 24,
+ "_1695": 24,
+ "_1696": 61,
+ "_1697": 24,
+ "_1698": 24,
+ "_1699": 24,
+ "_1700": 24,
+ "_1701": 1702,
+ "_1703": 1704,
+ "_1705": 1706,
+ "_1707": 1708,
+ "_1709": 1710,
+ "_1711": 455
},
- "Generate Letter",
- "generate_letter_generate_letter_pdf_post",
+ "enable_new_homepage_anon",
+ "filter_prompt_by_model",
+ "headline_option",
+ "HELP_WITH",
+ "disclaimer_color_adjust",
+ "show_composer_header",
+ "enable_new_mobile",
+ "enable_cached_response",
+ "show_dalle_starter_prompts",
+ "use_modapi_in_autocomplete",
+ "use_memory_in_model_autocomplete",
+ "autocomplete_max_char",
+ 32,
+ "search_autocomplete_mode",
+ "BING",
+ "autocomplete_min_char",
+ 4,
+ "autocomplete_mode",
+ "INDEX",
+ "num_completions_to_fetch_from_index",
+ 8,
+ "india_first_prompt",
+ [],
+ [],
{
- "_1589": 1969,
- "_1588": 45
+ "_13": 752,
+ "_60": 754,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1715,
+ "_466": 1716,
+ "_470": 1715
},
+ [],
+ [],
+ "3606233934",
{
- "_1591": 1970
+ "_13": 1717,
+ "_60": 1719,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1723,
+ "_466": 1724,
+ "_470": 1723
},
{
- "_1593": 1971
+ "_1720": 1721,
+ "_1722": 24
},
+ "link",
+ "non",
+ "enable_notifications_feed",
+ [],
+ [],
+ "3613709240",
{
- "_1614": 1972
+ "_13": 1725,
+ "_60": 1727,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 1729,
+ "_466": 1730,
+ "_470": 1729
},
- "#/components/schemas/LetterData",
{
- "_1608": 1974,
- "_1616": 1978
+ "_1728": 61
},
+ "shouldRefreshAccessToken",
+ [],
+ [],
{
- "_1476": 1610,
- "_1589": 1975
+ "_13": 758,
+ "_60": 760,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1732,
+ "_466": 1735,
+ "_470": 1732
},
+ [
+ 1733,
+ 1734
+ ],
{
- "_1591": 1976
+ "_67": 788,
+ "_69": 101,
+ "_71": 149
},
{
- "_1593": 1977
+ "_67": 790,
+ "_69": 101,
+ "_71": 149
},
- {},
+ [],
{
- "_1476": 1618,
- "_1589": 1979
+ "_13": 808,
+ "_60": 810,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 1737,
+ "_466": 1738,
+ "_470": 1737
},
+ [],
+ [],
+ "3737571708",
{
- "_1591": 1980
+ "_13": 1739,
+ "_60": 1741,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 1744,
+ "_466": 1745,
+ "_470": 1744
},
{
- "_1593": 1981
+ "_1742": 1743
},
+ "sidebar_type",
+ "slick",
+ [],
+ [],
+ "3768341700",
{
- "_1614": 1622
+ "_13": 1746,
+ "_60": 1748,
+ "_356": 1756,
+ "_62": 1756,
+ "_358": 24,
+ "_64": 1757,
+ "_466": 1758,
+ "_468": 1759,
+ "_364": 61,
+ "_363": 61,
+ "_470": 1760
+ },
+ {
+ "_530": 24,
+ "_1749": 24,
+ "_1750": 24,
+ "_1751": 61,
+ "_1752": 61,
+ "_1753": 61,
+ "_1754": 24,
+ "_1755": 24
},
- "/generate_resume_pdf",
+ "remove_early_access_upsell",
+ "is_produce_text_design",
+ "is_produce_design",
+ "is_country_selector_enabled",
+ "is_vat_information_enabled",
+ "is_vat_information_with_amount_enabled",
+ "is_team_pricing_vat_disclaimer_enabled",
+ "65VHFqyIytQJKjgykJm4UQ",
+ [],
+ [
+ 1753,
+ 1752,
+ 1754,
+ 1755
+ ],
+ "2782616826",
+ [],
+ "3927927759",
{
- "_1578": 1984
+ "_13": 1761,
+ "_60": 1763,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 1764,
+ "_466": 1765,
+ "_470": 1764
},
{
- "_1623": 20,
- "_1580": 1985,
- "_1582": 1986,
- "_1586": 1987,
- "_1606": 1992
+ "_1444": 61
},
- "Generate Resume",
- "generate_resume_generate_resume_pdf_post",
+ [],
+ [],
{
- "_1589": 1988,
- "_1588": 45
+ "_13": 815,
+ "_60": 817,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1767,
+ "_466": 1768,
+ "_470": 1767
},
+ [],
+ [],
+ "4020668365",
{
- "_1591": 1989
+ "_13": 1769,
+ "_60": 1771,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 1772,
+ "_466": 1773,
+ "_470": 1772
},
{
- "_1593": 1990
+ "_1554": 24,
+ "_1555": 1556,
+ "_1557": 1558,
+ "_1559": 24
},
+ [],
+ [],
+ "4031588851",
{
- "_1614": 1991
+ "_13": 1774,
+ "_60": 1776,
+ "_356": 91,
+ "_62": 91,
+ "_358": 24,
+ "_64": 1799,
+ "_466": 1803,
+ "_470": 1799
+ },
+ {
+ "_1777": 61,
+ "_1778": 61,
+ "_1779": 61,
+ "_1780": 61,
+ "_1781": 24,
+ "_1782": 24,
+ "_1707": 1708,
+ "_1783": 1784,
+ "_1705": 1706,
+ "_1701": 1702,
+ "_1692": 1693,
+ "_1700": 24,
+ "_1785": 24,
+ "_1699": 24,
+ "_1786": 1787,
+ "_1788": 61,
+ "_1789": 455,
+ "_1696": 61,
+ "_1703": 1704,
+ "_1790": 24,
+ "_1791": 1792,
+ "_1709": 1710,
+ "_1793": 24,
+ "_1794": 24,
+ "_780": 781,
+ "_1795": 24,
+ "_1796": 1797,
+ "_1798": 61,
+ "_1711": 455
},
- "#/components/schemas/ResumeData",
+ "enable_hardcoded_vision_prompts",
+ "enable_hardcoded_file_document_prompts",
+ "enable_hardcoded_data_vis_prompts",
+ "enable_hardcoded_browse_prompts",
+ "is_two_line",
+ "enable_new_homepage",
+ "starter_prompt_ranking_algorithm",
+ "homepage_v2",
+ "filter_starter_prompt_by_model",
+ "autocomplete_qualified_start_date",
+ "2000-10-11T00:00:00Z",
+ "enable_new_autocomplete_homepage",
+ "model_talks_option",
+ "enable_hardcoded_onboarding_prompt",
+ "autocomplete_fetch_interval",
+ 200,
+ "enable_recommend_prompts",
+ "enable_ask_me_prompts",
+ "enable_reasoning_prompts_0202",
+ "dream_type",
+ "user_knowledge_memories",
+ "web-disable",
+ [
+ 1800
+ ],
{
- "_1608": 1993,
- "_1616": 1997
+ "_67": 1801,
+ "_69": 101,
+ "_71": 1802
},
+ "4273941502",
+ "1nGrz4l6GM0LgZvm0pDCtp:2.00:1",
+ [],
{
- "_1476": 1610,
- "_1589": 1994
+ "_13": 822,
+ "_60": 824,
+ "_356": 91,
+ "_62": 91,
+ "_358": 61,
+ "_64": 1805,
+ "_466": 1806,
+ "_470": 1805
},
+ [],
+ [],
+ "4250072504",
{
- "_1591": 1995
+ "_13": 1807,
+ "_60": 1809,
+ "_356": 1812,
+ "_62": 1812,
+ "_358": 24,
+ "_64": 1813,
+ "_466": 1815,
+ "_468": 1816,
+ "_364": 24,
+ "_363": 24,
+ "_470": 1817
},
{
- "_1593": 1996
+ "_529": 61,
+ "_1810": 24,
+ "_1811": 24
},
- {},
+ "is_enterprise_desktop_enabled",
+ "is_desktop_enterprise_enabled",
+ "3HX7vpdJsUkuyCUEL4V9cE:override",
+ [
+ 1814
+ ],
{
- "_1476": 1618,
- "_1589": 1998
+ "_67": 132,
+ "_69": 70,
+ "_71": 134
},
+ [
+ 529
+ ],
+ "3311396813",
+ [
+ 1814
+ ],
+ {},
{
- "_1591": 1999
+ "_834": 835,
+ "_836": 837
},
{
- "_1593": 2000
+ "_842": 12,
+ "_843": 1821
},
{
- "_1614": 1622
+ "_845": 846,
+ "_847": 846,
+ "_848": 846
},
- "/generate_report_pdf",
{
- "_1578": 2003
+ "_842": 12,
+ "_854": 855,
+ "_856": 1823,
+ "_843": 1821,
+ "_1828": 1829,
+ "_1830": 1826,
+ "_861": 1831,
+ "_50": 51
},
{
- "_1580": 2004,
- "_1623": 20,
- "_1582": 2005,
- "_1586": 2006,
- "_1606": 2011
+ "_1824": 61,
+ "_1825": 1826,
+ "_1827": 24,
+ "_859": 24,
+ "_860": 6
},
- "Generate Report",
- "generate_report_generate_report_pdf_post",
+ "has_logged_in_before",
+ "user_agent",
+ "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0",
+ "is_punch_out_user",
+ "ip",
+ "2a0c:9a40:9b07:1f5d:a5e4:5e46:e469:469d",
+ "userAgent",
{
- "_1589": 2007,
- "_1588": 45
+ "_863": 864
},
+ "isNoAuthEnabled",
+ "userRegion",
+ "New York",
+ "US",
+ "cfIpLatitude",
+ null,
+ "cfIpLongitude",
+ null,
+ "cfIpCity",
+ null,
+ "isUserInNewCookieConsentFlow",
+ "isUserInPioneerHR",
+ "isUserEligibleForPioneer",
+ "isUserEligibleForMaverick",
+ "kind",
+ "chat_page",
+ "gizmo",
+ {},
+ {
+ "_11": 1851,
+ "_1852": 1853,
+ "_1854": 1855,
+ "_1856": 1857,
+ "_1869": 1870,
+ "_849": 1872,
+ "_1873": -5,
+ "_1874": -5,
+ "_1875": 1876,
+ "_1895": 1896,
+ "_1897": 1898,
+ "_1899": 1900,
+ "_1901": -5,
+ "_1902": -5,
+ "_1903": 1904,
+ "_1906": 24,
+ "_1907": -5,
+ "_1908": -5,
+ "_1909": 1910,
+ "_1911": 1912,
+ "_1913": -5,
+ "_1914": -5,
+ "_1915": -5,
+ "_1916": -5,
+ "_1917": 1918,
+ "_1930": -5,
+ "_1931": -5,
+ "_1932": -5,
+ "_1933": -5,
+ "_1934": 1935,
+ "_1936": 1937
+ },
+ "g-rmdbtMF7a",
+ "organization_id",
+ "org-KxJjYXqyxZonde7LipjtEvt9",
+ "short_url",
+ "g-rmdbtMF7a-expedia",
+ "author",
{
- "_1591": 2008
+ "_1858": 1859,
+ "_1213": 1860,
+ "_1861": 1862,
+ "_1863": 61,
+ "_1864": 1865,
+ "_1866": -5,
+ "_1867": 1868
},
+ "user_id",
+ "user-rkxOl7npYCEOiqtG3Ag8jYbX__3372cc61-7f4e-4dc8-add6-518c4694a5fd",
+ "expedia.com",
+ "link_to",
+ "https://expedia.com",
+ "is_verified",
+ "selected_display",
+ "website",
+ "will_receive_support_emails",
+ "display_socials",
+ [],
+ "voice",
{
- "_1593": 2009
+ "_11": 1871
},
+ "ember",
+ "3372cc61-7f4e-4dc8-add6-518c4694a5fd",
+ "model",
+ "instructions",
+ "display",
{
- "_1614": 2010
+ "_13": 1877,
+ "_1878": 1879,
+ "_1880": 1881,
+ "_1886": 1887,
+ "_1888": 1889,
+ "_1890": 1891,
+ "_1893": -5,
+ "_1894": -5
},
- "#/components/schemas/ReportData",
+ "Expedia",
+ "description",
+ "Bring your trip plans to life \u2013 get there, stay there, find things to see and do.",
+ "prompt_starters",
+ [
+ 1882,
+ 1883,
+ 1884,
+ 1885
+ ],
+ "We\u2019re looking for a hotel near the Eiffel Tower with a gym and spa for our stay in Paris for a week",
+ "I'm looking for a nonstop flight from Toronto to New York City for next week?",
+ "Find me food and drink tours in Paris that are 4 hours or less during next week.",
+ "I need to rent a car in Seattle for a week. What are my options?",
+ "profile_pic_id",
+ "file-WtxsnVLKLzSkVnB3g5v1bN",
+ "profile_picture_url",
+ "https://chatgpt.com/backend-api/content?id=file-WtxsnVLKLzSkVnB3g5v1bN&gizmo_id=g-rmdbtMF7a&ts=484163&p=gpp&sig=d84522da7becc2d5e7058ee51b2c4f2df79857ee914bb971f519e820fd994681&v=0",
+ "categories",
+ [
+ 1892
+ ],
+ "lifestyle",
+ "emoji",
+ "theme",
+ "share_recipient",
+ "marketplace",
+ "created_at",
+ "2024-10-28T06:38:50.794842+00:00",
+ "updated_at",
+ "2025-03-26T11:01:52.860781+00:00",
+ "last_interacted_at",
+ "num_interactions",
+ "tags",
+ [
+ 1905
+ ],
+ "interactions_disabled",
+ "is_unassigned",
+ "version",
+ "version_author",
+ "version_created_at",
+ "2025-02-12T21:25:14.012358+00:00",
+ "version_updated_at",
+ "2025-02-25T19:30:41.116315+00:00",
+ "live_version",
+ "training_disabled",
+ "sharing_targets",
+ "appeal_info",
+ "vanity_metrics",
{
- "_1608": 2012,
- "_1616": 2016
+ "_1919": -5,
+ "_1920": 1921,
+ "_1922": 1923,
+ "_1924": 1925
},
+ "num_conversations",
+ "num_conversations_str",
+ "200K+",
+ "created_ago_str",
+ "4 months ago",
+ "review_stats",
{
- "_1476": 1610,
- "_1589": 2013
+ "_1926": 1927,
+ "_1928": 1929
},
+ "total",
+ 8716,
+ "count",
+ 2318,
+ "workspace_approval_date",
+ "workspace_approved",
+ "sharing",
+ "current_user_permission",
+ "gizmo_type",
+ "gpt",
+ "context_stuffing_budget",
+ 16384,
+ "tools",
+ [
+ 1940,
+ 1946
+ ],
{
- "_1591": 2014
+ "_11": 1941,
+ "_1942": 1943,
+ "_1944": -5,
+ "_1945": -5
},
+ "673622cc3b548190b12b63ab2ed8780c",
+ "type",
+ "browser",
+ "settings",
+ "metadata",
{
- "_1593": 2015
+ "_11": 1947,
+ "_1942": 1948,
+ "_1944": -5,
+ "_1945": 1949
},
- {},
+ "67ad11ba038081919bfe52e301ecc1aa",
+ "plugins_prototype",
{
- "_1476": 1618,
- "_1589": 2017
+ "_1950": 1951,
+ "_1952": 1953,
+ "_1954": -5,
+ "_1955": 1956,
+ "_2483": 2484,
+ "_2491": 2492
},
+ "action_id",
+ "g-1f13973d98417b91b85b9e916976c75700deeb99",
+ "domain",
+ "apim.expedia.com",
+ "raw_spec",
+ "json_schema",
{
- "_1591": 2018
+ "_1957": 1958,
+ "_1959": 1960,
+ "_1964": 1965,
+ "_1969": 1970,
+ "_2285": 2286
},
+ "openapi",
+ "3.1.0",
+ "info",
{
- "_1593": 2019
+ "_1249": 1961,
+ "_1878": 1962,
+ "_1907": 1963
},
+ "Expedia Travel Recommendation Service",
+ "A service that allows to search travel products by search query and returns recommended products.",
+ "v1",
+ "servers",
+ [
+ 1966
+ ],
{
- "_1614": 1622
+ "_1967": 1968
},
- "/generate_slide_pdf",
+ "url",
+ "https://apim.expedia.com",
+ "paths",
{
- "_1578": 2022
+ "_1971": 1972,
+ "_2113": 2114,
+ "_2159": 2160,
+ "_2222": 2223
},
+ "/recommendations/hotels",
{
- "_1580": 2023,
- "_1623": 20,
- "_1582": 2024,
- "_1586": 2025,
- "_1606": 2030
+ "_1973": 1974
},
- "Generate Slide",
- "generate_slide_generate_slide_pdf_post",
+ "get",
{
- "_1589": 2026,
- "_1588": 45
+ "_1975": 1976,
+ "_1977": 1978,
+ "_1979": 1980,
+ "_2101": 2102
},
+ "operationId",
+ "lodgingProducts",
+ "summary",
+ "API provides the top 3 recommended lodging travel products in the given destination.",
+ "parameters",
+ [
+ 1981,
+ 1990,
+ 1994,
+ 1998,
+ 2004,
+ 2008,
+ 2021,
+ 2026,
+ 2030,
+ 2073,
+ 2081,
+ 2089,
+ 2097
+ ],
+ {
+ "_13": 1982,
+ "_1983": 1984,
+ "_1878": 1985,
+ "_1986": 61,
+ "_1987": 1988
+ },
+ "user_input_in_english",
+ "in",
+ "query",
+ "(MANDATORY parameter) The merged user inputs according to the conversation context, translate to ENGLISH, DO NOT ONLY return the last query.\n",
+ "required",
+ "schema",
{
- "_1591": 2027
+ "_1942": 1989
},
+ "string",
{
- "_1593": 2028
+ "_13": 1991,
+ "_1983": 1984,
+ "_1878": 1992,
+ "_1986": 61,
+ "_1987": 1993
},
+ "keywords",
+ "(MANDATORY parameter) Keywords associated with TRAVEL in the user_input_in_english parameter, converted to all LOWERCASE, separated by | character.\n",
{
- "_1614": 2029
+ "_1942": 1989
},
- "#/components/schemas/SlideData",
{
- "_1608": 2031,
- "_1616": 2035
+ "_13": 1995,
+ "_1983": 1984,
+ "_1878": 1996,
+ "_1986": 61,
+ "_1987": 1997
},
+ "destination",
+ "(MANDATORY parameter) The destination can be a city, address, airport or a landmark.",
{
- "_1476": 1610,
- "_1589": 2032
+ "_1942": 1989
},
{
- "_1591": 2033
+ "_13": 1999,
+ "_1983": 1984,
+ "_1986": 24,
+ "_1878": 2000,
+ "_1987": 2001
},
+ "check_in",
+ "(OPTIONAL parameter) Accept any date format and convert to YYYY-MM-DD.",
{
- "_1593": 2034
+ "_1942": 1989,
+ "_2002": 2003
},
- {},
+ "example",
+ "2024-09-12",
{
- "_1476": 1618,
- "_1589": 2036
+ "_13": 2005,
+ "_1983": 1984,
+ "_1986": 24,
+ "_1878": 2000,
+ "_1987": 2006
},
+ "check_out",
{
- "_1591": 2037
+ "_1942": 1989,
+ "_2002": 2007
},
+ "2024-09-14",
{
- "_1593": 2038
+ "_13": 2009,
+ "_1983": 1984,
+ "_1986": 24,
+ "_1878": 2010,
+ "_1987": 2011
},
+ "property_types",
+ "(OPTIONAL parameter) An array that accepts one or more of the property enums defined below ONLY. Hotels are interpreted as HOTEL, vacation rentals as VR, resorts as RESORT.",
{
- "_1614": 1622
+ "_1942": 2012,
+ "_2013": 2014,
+ "_2002": 2020
},
- "/upload_images",
+ "array",
+ "items",
{
- "_1578": 2041
+ "_1942": 1989,
+ "_2015": 2016
},
+ "enum",
+ [
+ 2017,
+ 2018,
+ 2019
+ ],
+ "HOTEL",
+ "RESORT",
+ "VR",
+ [
+ 2017,
+ 2019
+ ],
{
- "_1580": 2042,
- "_1623": 20,
- "_1582": 2043,
- "_1476": 2044,
- "_1586": 2045,
- "_1606": 2052
+ "_13": 2022,
+ "_1983": 1984,
+ "_1986": 24,
+ "_1878": 2023,
+ "_1987": 2024
},
- "Upload Images to BE for logo and signatures",
- "upload_images_upload_images_post",
- "Uploads a file reference using its file id. This file should be an image uploaded by user.",
+ "number_of_travelers",
+ "(OPTIONAL parameter) Applicable to vacation rentals only. An integer used to specify the total number of travelers for accommodations.",
{
- "_1589": 2046,
- "_1588": 45
+ "_1942": 2025,
+ "_2002": 1197
},
+ "integer",
+ {
+ "_13": 2027,
+ "_1983": 1984,
+ "_1986": 24,
+ "_1878": 2028,
+ "_1987": 2029
+ },
+ "min_bedrooms",
+ "(OPTIONAL parameter) Applicable to vacation rentals only. An integer used to specify minimum number of bedrooms.",
+ {
+ "_1942": 2025,
+ "_2002": 545
+ },
+ {
+ "_13": 2031,
+ "_1983": 1984,
+ "_1986": 24,
+ "_1878": 2032,
+ "_1987": 2033
+ },
+ "amenities",
+ "(OPTIONAL parameter) An array that accepts one or more of the following amenity enums based on property_types.\n",
+ {
+ "_1942": 2012,
+ "_2013": 2034
+ },
+ {
+ "_1942": 1989,
+ "_2015": 2035,
+ "_2002": 2072
+ },
+ [
+ 2036,
+ 2037,
+ 2038,
+ 2039,
+ 2040,
+ 2041,
+ 2042,
+ 2043,
+ 2044,
+ 2045,
+ 2046,
+ 2047,
+ 2048,
+ 2049,
+ 2050,
+ 2051,
+ 2052,
+ 2053,
+ 2054,
+ 2055,
+ 2056,
+ 2057,
+ 2058,
+ 2059,
+ 2060,
+ 2061,
+ 2062,
+ 2063,
+ 2064,
+ 2065,
+ 2066,
+ 2067,
+ 2068,
+ 2069,
+ 2070,
+ 2071
+ ],
+ "GYM",
+ "RESTAURANT",
+ "BREAKFAST_INCLUDED",
+ "HOT_TUB",
+ "AIRPORT_SHUTTLE_INCLUDED",
+ "INTERNET_OR_WIFI",
+ "PET_FRIENDLY",
+ "FAMILY_FRIENDLY",
+ "KITCHEN",
+ "ELECTRIC_CAR_CHARGING_STATION",
+ "BAR",
+ "CASINO",
+ "AIR_CONDITIONING",
+ "SPA",
+ "POOL",
+ "WATER_PARK",
+ "PARKING",
+ "OUTDOOR_SPACE",
+ "OCEAN_VIEW",
+ "SKI_IN_OR_SKI_OUT",
+ "LOCAL_EXPERT",
+ "ALL_INCLUSIVE",
+ "PATIO_OR_DECK",
+ "MICROWAVE",
+ "TV",
+ "FIREPLACE",
+ "GARDEN_OR_BACKYARD",
+ "PRIVATE_POOL",
+ "GRILL",
+ "DISHWASHER",
+ "WASHER_AND_DRYER",
+ "STOVE",
+ "OVEN",
+ "IRON_AND_BOARD",
+ "KIDS_HIGH_CHAIR",
+ "BALCONY",
+ [
+ 2050,
+ 2049
+ ],
+ {
+ "_13": 2074,
+ "_1983": 1984,
+ "_1986": 24,
+ "_1878": 2075,
+ "_1987": 2076
+ },
+ "guest_rating",
+ "(OPTIONAL parameter) A string value limited to only one of the guest-rating enums. If the rating is an integer >=4.5, interpret it as WONDERFUL, if it is >=4, as VERY_GOOD, if it is >=3, as GOOD.\n",
+ {
+ "_1942": 1989,
+ "_2015": 2077
+ },
+ [
+ 2078,
+ 2079,
+ 2080
+ ],
+ "WONDERFUL",
+ "VERY_GOOD",
+ "GOOD",
+ {
+ "_13": 2082,
+ "_1983": 1984,
+ "_1986": 24,
+ "_1878": 2083,
+ "_1987": 2084
+ },
+ "star_ratings",
+ "(OPTIONAL parameter) Array limited to one or more of the star-rating enums. If request is for a luxury hotel, use [4,5]; for moderate use [3,3]; for a specific rating x use [x,x] instead of just x\n",
+ {
+ "_1942": 2012,
+ "_2013": 2085
+ },
+ {
+ "_1942": 2025,
+ "_2015": 2086,
+ "_2002": 2088
+ },
+ [
+ 406,
+ 2087,
+ 1197,
+ 545,
+ 1706,
+ 766
+ ],
+ 1,
+ [
+ 406,
+ 2087
+ ],
{
- "_1591": 2047
+ "_13": 2090,
+ "_1983": 1984,
+ "_1986": 24,
+ "_1878": 2091,
+ "_1987": 2092
},
+ "sort_type",
+ "(OPTIONAL parameter) A string value that allows user to get accommodations with the specified sort order.",
{
- "_1593": 2048
+ "_1942": 1989,
+ "_2015": 2093,
+ "_2002": 2094
},
+ [
+ 2094,
+ 2095,
+ 2096
+ ],
+ "CHEAPEST",
+ "DISTANCE",
+ "MOST_EXPENSIVE",
{
- "_1449": 1595,
- "_1597": 2049
+ "_13": 2098,
+ "_1983": 1984,
+ "_1986": 24,
+ "_1878": 2099,
+ "_1987": 2100
},
+ "distance",
+ "(OPTIONAL parameter) Distance around the given destination (in miles) to look up for options. Default unit is in miles.",
{
- "_1599": 2050
+ "_1942": 2025,
+ "_2002": 434
},
+ "responses",
{
- "_1449": 1601,
- "_1602": 2051
+ "_2103": 2104
},
+ "200",
{
- "_1449": 1604
+ "_1878": 2105,
+ "_2106": 2107
},
+ "OK",
+ "content",
{
- "_1608": 2053,
- "_1616": 2057
+ "_2108": 2109
},
+ "application/json",
{
- "_1476": 1610,
- "_1589": 2054
+ "_1987": 2110
},
{
- "_1591": 2055
+ "_2111": 2112
},
+ "$ref",
+ "#/components/schemas/LodgingResponse",
+ "/recommendations/flights",
{
- "_1593": 2056
+ "_1973": 2115
},
- {},
{
- "_1476": 1618,
- "_1589": 2058
+ "_1975": 2116,
+ "_1977": 2117,
+ "_1979": 2118,
+ "_2101": 2153
},
+ "flightProducts",
+ "Gets recommended flights to destination",
+ [
+ 2119,
+ 2122,
+ 2125,
+ 2130,
+ 2134,
+ 2138,
+ 2143,
+ 2147
+ ],
{
- "_1591": 2059
+ "_13": 1982,
+ "_1983": 1984,
+ "_1878": 2120,
+ "_1986": 61,
+ "_1987": 2121
},
+ "(MANDATORY parameter) The merged user inputs according to the conversation context, translate to ENGLISH, DO NOT ONLY return the last query.",
{
- "_1593": 2060
+ "_1942": 1989
},
{
- "_1614": 1622
+ "_13": 1991,
+ "_1983": 1984,
+ "_1878": 2123,
+ "_1986": 61,
+ "_1987": 2124
},
- "/get-templates-preview",
+ "(MANDATORY parameter) Keywords associated with TRAVEL in the user_input_in_english parameter, converted to all LOWERCASE, separated by | character.",
{
- "_2063": 2064
+ "_1942": 1989
},
- "get",
{
- "_1580": 2065,
- "_1582": 2066,
- "_1584": 2067,
- "_1606": 2073
+ "_13": 2126,
+ "_1983": 1984,
+ "_1878": 2127,
+ "_1986": 61,
+ "_1987": 2128,
+ "_2002": 2129
},
- "Get Templates Preview, Available only for slides for now.",
- "get_templates_preview",
- [
- 2068
- ],
+ "origin",
+ "(MANDATORY parameter) Origin location name or airport code.",
{
- "_2069": 1790,
- "_11": 2070,
- "_1593": 2071,
- "_1476": 2072,
- "_1588": 20
+ "_1942": 1989
},
- "in",
- "template_type",
+ "LAS",
{
- "_1449": 1604
+ "_13": 1995,
+ "_1983": 1984,
+ "_1878": 2131,
+ "_1986": 61,
+ "_1987": 2132,
+ "_2002": 2133
},
- "Template type to filter the templates (e.g., 'slide')",
+ "(MANDATORY parameter) Destination location name or airport code.",
{
- "_1608": 2074,
- "_1616": 2080
+ "_1942": 1989
},
+ "LAX",
{
- "_1476": 1610,
- "_1589": 2075
+ "_13": 2135,
+ "_1983": 1984,
+ "_1878": 2000,
+ "_1986": 24,
+ "_1987": 2136,
+ "_2002": 2137
},
+ "departure_date",
{
- "_1591": 2076
+ "_1942": 1989
},
+ "2025-07-01",
{
- "_1593": 2077
+ "_13": 2139,
+ "_1983": 1984,
+ "_1878": 2140,
+ "_1986": 24,
+ "_1987": 2141,
+ "_2002": 2142
},
+ "airline_code",
+ "(OPTIONAL parameter) 2 letter Airline code.",
{
- "_1449": 1601,
- "_1602": 2078
+ "_1942": 1989
},
+ "AA",
{
- "_1614": 2079
+ "_13": 2144,
+ "_1983": 1984,
+ "_1878": 2145,
+ "_1986": 24,
+ "_1987": 2146,
+ "_2002": 406
},
- "#/components/schemas/TemplatePreview",
+ "number_of_stops",
+ "(OPTIONAL parameter) Number of stops preferred. 0 means non-stop, 1 means either 0 or 1 stop etc.",
{
- "_1476": 1618,
- "_1589": 2081
+ "_1942": 2025
},
{
- "_1591": 2082
+ "_13": 2090,
+ "_1983": 1984,
+ "_1986": 24,
+ "_1878": 2148,
+ "_1987": 2149
},
+ "Optional string value that allows user to get Flights with the specified sort order. \\ \\ Use PRICE to sort by cheapest, DURATION to sort by shortest duration flight. Default is PRICE.",
{
- "_1593": 2083
+ "_1942": 1989,
+ "_2015": 2150,
+ "_2002": 2151
},
+ [
+ 2151,
+ 2152
+ ],
+ "PRICE",
+ "DURATION",
{
- "_1614": 1622
+ "_2103": 2154
},
{
- "_1703": 2085
+ "_1878": 2105,
+ "_2106": 2155
},
{
- "_2086": 2087,
- "_2095": 2096,
- "_1754": 2104,
- "_2108": 2109,
- "_2187": 2188,
- "_2210": 2211,
- "_2241": 2242,
- "_2258": 2259,
- "_2274": 2275,
- "_2302": 2303,
- "_2319": 2320,
- "_1795": 2325
+ "_2108": 2156
},
- "ContactContent",
{
- "_1597": 2088,
- "_1449": 1595,
- "_1588": 2094,
- "_614": 2086
+ "_1987": 2157
},
{
- "_2089": 2090
+ "_2111": 2158
},
- "items_list",
+ "#/components/schemas/FlightResponse",
+ "/recommendations/activities",
{
- "_1602": 2091,
- "_1449": 1601,
- "_614": 2093
+ "_1973": 2161
},
{
- "_1614": 2092
+ "_1975": 2162,
+ "_1977": 2163,
+ "_1979": 2164,
+ "_2101": 2216
},
- "#/components/schemas/ContactItem",
- "Items List",
+ "activityProducts",
+ "Get a list of activity travel products",
[
- 2089
+ 2165,
+ 2167,
+ 2169,
+ 2173,
+ 2177,
+ 2181,
+ 2202,
+ 2211
],
- "ContactItem",
{
- "_1597": 2097,
- "_1449": 1595,
- "_1588": 2103,
- "_614": 2095
+ "_13": 1982,
+ "_1983": 1984,
+ "_1878": 2120,
+ "_1986": 61,
+ "_1987": 2166
},
{
- "_2098": 2099,
- "_44": 2101
+ "_1942": 1989
},
- "icon",
{
- "_1449": 1604,
- "_614": 2100
+ "_13": 1991,
+ "_1983": 1984,
+ "_1878": 2123,
+ "_1986": 61,
+ "_1987": 2168
},
- "Icon",
{
- "_1449": 1604,
- "_614": 2102
+ "_1942": 1989
},
- "Value",
- [
- 2098,
- 44
- ],
{
- "_1597": 2105,
- "_1449": 1595,
- "_614": 1754
+ "_13": 1995,
+ "_1983": 1984,
+ "_1878": 2170,
+ "_1986": 61,
+ "_1987": 2171,
+ "_2002": 2172
},
+ "(MANDATORY parameter) City name, street address, three-letter IATA Airport Code or a landmark name.",
{
- "_1757": 2106
+ "_1942": 1989
},
+ "shenzhen",
{
- "_1602": 2107,
- "_1449": 1601,
- "_614": 1761
+ "_13": 2174,
+ "_1983": 1984,
+ "_1878": 2000,
+ "_1987": 2175,
+ "_2002": 2176
},
+ "start_date",
{
- "_1614": 1760
+ "_1942": 1989
},
- "LetterData",
+ "2024-10-01",
{
- "_1597": 2110,
- "_1449": 1595,
- "_614": 2108
+ "_13": 2178,
+ "_1983": 1984,
+ "_1878": 2000,
+ "_1987": 2179,
+ "_2002": 2180
},
+ "end_date",
{
- "_2111": 2112,
- "_2114": 2115,
- "_2120": 2121,
- "_2125": 2126,
- "_2130": 2131,
- "_2135": 2136,
- "_2140": 2141,
- "_2145": 2146,
- "_2150": 2151,
- "_2155": 2156,
- "_2164": 2165,
- "_2167": 2168,
- "_2172": 2173,
- "_2177": 2178,
- "_2182": 2183
+ "_1942": 1989
},
- "logo_path",
+ "2024-10-10",
{
- "_1449": 1604,
- "_1476": 2113
+ "_13": 1890,
+ "_1983": 1984,
+ "_1986": 24,
+ "_1878": 2182,
+ "_1987": 2183
},
- "url of logo file. Should be in file-id://<filename> format",
- "sender_name",
+ "(OPTIONAL parameter) An array that accepts one or more of the following category enums. For example if the activity category is \"family-friendly\", interpret it as FAMILY_FRIENDLY.",
{
- "_1719": 2116
+ "_1942": 2012,
+ "_2013": 2184
},
- [
- 2117,
- 2119
- ],
{
- "_1614": 2118
+ "_1942": 1989,
+ "_2015": 2185,
+ "_2002": 2200
},
- "#/components/schemas/Section",
+ [
+ 2043,
+ 2186,
+ 2187,
+ 2188,
+ 2189,
+ 2190,
+ 2191,
+ 2192,
+ 2193,
+ 2194,
+ 2195,
+ 2196,
+ 2197,
+ 2198,
+ 2199
+ ],
+ "LOCAL_EXPERTS_PICKS",
+ "SELECTIVE_HOTEL_PICKUP",
+ "FREE_CANCELLATION",
+ "NIGHTLIFE",
+ "DEALS",
+ "WALKING_BIKE_TOURS",
+ "FOOD_DRINK",
+ "ADVENTURES",
+ "ATTRACTIONS",
+ "CRUISES_WATER_TOURS",
+ "THEME_PARKS",
+ "TOURS_SIGHTSEEING",
+ "WATER_ACTIVITIES",
+ "DAY_TRIPS_EXCURSIONS",
+ [
+ 2201
+ ],
+ "FAMILY_FRIENDLY\uff0cFREE_CANCELLATION",
{
- "_1449": 1723
+ "_13": 2203,
+ "_1983": 1984,
+ "_1986": 24,
+ "_1878": 2204,
+ "_1987": 2205
},
- "sender_title",
+ "duration",
+ "(OPTIONAL parameter) Enum value that allows getting activities within the specified duration. Match the user stated duration preference to the appropriate enum value.\n",
{
- "_1719": 2122
+ "_1942": 1989,
+ "_2015": 2206,
+ "_2002": 2207
},
[
- 2123,
- 2124
+ 2207,
+ 2208,
+ 2209,
+ 2210
],
+ "LESS_THAN_ONE_HOUR",
+ "ONE_TO_FOUR_HOURS",
+ "FOUR_HOURS_TO_ONE_DAY",
+ "MORE_THAN_ONE_DAY",
{
- "_1614": 2118
+ "_13": 2212,
+ "_1983": 1984,
+ "_1986": 24,
+ "_1878": 2213,
+ "_1987": 2214
},
+ "price_max",
+ "(OPTIONAL parameter) The maximum price of an activity.",
{
- "_1449": 1723
+ "_1942": 2215,
+ "_2002": 403
},
- "recipient_name",
+ "number",
{
- "_1719": 2127
+ "_2103": 2217
},
- [
- 2128,
- 2129
- ],
{
- "_1614": 2118
+ "_1878": 2105,
+ "_2106": 2218
},
{
- "_1449": 1723
+ "_2108": 2219
},
- "recipient_phone",
{
- "_1719": 2132
+ "_1987": 2220
},
- [
- 2133,
- 2134
- ],
{
- "_1614": 2118
+ "_2111": 2221
},
+ "#/components/schemas/ActivityResponse",
+ "/recommendations/cars",
{
- "_1449": 1723
+ "_1973": 2224
},
- "recipient_email",
{
- "_1719": 2137
+ "_1975": 2225,
+ "_1977": 2226,
+ "_1979": 2227,
+ "_2101": 2279
},
+ "carProducts",
+ "Get a list of car travel products",
[
- 2138,
- 2139
+ 2228,
+ 2230,
+ 2232,
+ 2237,
+ 2241,
+ 2245,
+ 2250,
+ 2254,
+ 2258
],
{
- "_1614": 2118
- },
- {
- "_1449": 1723
+ "_13": 1982,
+ "_1983": 1984,
+ "_1878": 2120,
+ "_1986": 61,
+ "_1987": 2229
},
- "recipient_address",
{
- "_1719": 2142
+ "_1942": 1989
},
- [
- 2143,
- 2144
- ],
{
- "_1614": 2118
+ "_13": 1991,
+ "_1983": 1984,
+ "_1878": 2123,
+ "_1986": 61,
+ "_1987": 2231
},
{
- "_1449": 1723
+ "_1942": 1989
},
- "recipient_first_name",
{
- "_1719": 2147
+ "_13": 2233,
+ "_1983": 1984,
+ "_1878": 2234,
+ "_1986": 61,
+ "_1987": 2235,
+ "_2002": 2236
},
- [
- 2148,
- 2149
- ],
+ "pickup_location",
+ "(MANDATORY parameter) Car rental pick-up location. It can be a city name, address, airport code or a landmark name.",
{
- "_1614": 2118
+ "_1942": 1989
},
+ "Seattle",
{
- "_1449": 1723
+ "_13": 2238,
+ "_1983": 1984,
+ "_1878": 2239,
+ "_1986": 24,
+ "_1987": 2240,
+ "_2002": 2236
},
- "date",
+ "dropoff_location",
+ "(OPTIONAL parameter) Car rental drop-off location. It can be a city name, address, airport code or a landmark name. By default, it is same as that of pick-up location.",
{
- "_1719": 2152
+ "_1942": 1989
},
- [
- 2153,
- 2154
- ],
{
- "_1614": 2118
+ "_13": 2242,
+ "_1983": 1984,
+ "_1878": 2000,
+ "_1986": 24,
+ "_1987": 2243,
+ "_2002": 2244
},
+ "pickup_date",
{
- "_1449": 1723
+ "_1942": 1989
},
- "body",
+ "2025-06-05",
{
- "_1719": 2157,
- "_614": 2161,
- "_1476": 2162,
- "_52": 2163
+ "_13": 2246,
+ "_1983": 1984,
+ "_1878": 2247,
+ "_1986": 24,
+ "_1987": 2248,
+ "_2002": 2249
},
- [
- 2158,
- 2160
- ],
+ "pickup_time",
+ "(OPTIONAL parameter) Accept any time format and convert to HH:MM (24-hour format).",
{
- "_1602": 2159,
- "_1449": 1601
+ "_1942": 1989
},
+ 600,
{
- "_1614": 2118
+ "_13": 2251,
+ "_1983": 1984,
+ "_1878": 2000,
+ "_1986": 24,
+ "_1987": 2252,
+ "_2002": 2253
},
+ "dropoff_date",
{
- "_1449": 1723
+ "_1942": 1989
},
- "Body",
- "List of sections for the body of the letter",
- [],
- "signature_path",
+ "2025-06-08",
{
- "_1449": 1604,
- "_1476": 2166
+ "_13": 2255,
+ "_1983": 1984,
+ "_1878": 2247,
+ "_1986": 24,
+ "_1987": 2256,
+ "_2002": 2257
},
- "Url of the signature file. Should be a file-id://<filename> format",
- "company_phone",
+ "dropoff_time",
{
- "_1719": 2169
+ "_1942": 1989
},
- [
- 2170,
- 2171
- ],
+ 840,
{
- "_1614": 2118
+ "_13": 2259,
+ "_1983": 1984,
+ "_1986": 24,
+ "_1878": 2260,
+ "_1987": 2261
},
+ "car_classes",
+ "(OPTIONAL parameter) This value is used to filter API queries to only return a certain type(s) of car(s).",
{
- "_1449": 1723
+ "_1942": 2012,
+ "_2013": 2262
},
- "company_email",
{
- "_1719": 2174
+ "_1942": 1989,
+ "_2015": 2263,
+ "_2002": 2278
},
[
- 2175,
- 2176
+ 2264,
+ 2265,
+ 2266,
+ 2267,
+ 2268,
+ 2269,
+ 2270,
+ 2271,
+ 2272,
+ 2273,
+ 2274,
+ 2275,
+ 2276,
+ 2277
+ ],
+ "ECONOMY",
+ "COMPACT",
+ "MIDSIZE",
+ "STANDARD",
+ "FULLSIZE",
+ "PREMIUM",
+ "LUXURY",
+ "VAN",
+ "SUV",
+ "MINI",
+ "CONVERTIBLE",
+ "MINIVAN",
+ "PICKUP",
+ "SPORTSCAR",
+ [
+ 2264,
+ 2272
],
{
- "_1614": 2118
+ "_2103": 2280
},
{
- "_1449": 1723
+ "_1878": 2105,
+ "_2106": 2281
},
- "company_address",
{
- "_1719": 2179
+ "_2108": 2282
},
- [
- 2180,
- 2181
- ],
{
- "_1614": 2118
+ "_1987": 2283
},
{
- "_1449": 1723
+ "_2111": 2284
},
- "page_size",
+ "#/components/schemas/CarProductResponse",
+ "components",
{
- "_1719": 2184
+ "_2287": 2288
},
- [
- 2185,
- 2186
- ],
+ "schemas",
{
- "_1614": 2118
+ "_2289": 2290,
+ "_2301": 2302,
+ "_2349": 2350,
+ "_2357": 2358,
+ "_2392": 2393,
+ "_2411": 2412,
+ "_2419": 2420,
+ "_2444": 2445,
+ "_2452": 2453
},
+ "LodgingResponse",
{
- "_1449": 1723
+ "_1942": 2291,
+ "_2292": 2293
},
- "ReportData",
+ "object",
+ "properties",
{
- "_1597": 2189,
- "_1449": 1595,
- "_614": 2187
+ "_3": 2294,
+ "_2298": 2299
},
{
- "_2190": 2191,
- "_2195": 2196,
- "_2150": 2200,
- "_2155": 2204
+ "_1942": 2012,
+ "_1878": 2295,
+ "_2013": 2296
},
- "report_title",
+ "List of lodging recommendations.",
{
- "_1719": 2192
+ "_2111": 2297
},
- [
- 2193,
- 2194
- ],
+ "#/components/schemas/LodgingResponseData",
+ "EXTRA_INFORMATION_TO_ASSISTANT",
{
- "_1614": 2118
+ "_1942": 1989,
+ "_1878": 2300
},
+ "Specific instructions on how assistant is supposed to handle the data included in the API response",
+ "LodgingResponseData",
{
- "_1449": 1723
+ "_1942": 2291,
+ "_2292": 2303
},
- "author_name",
{
- "_1719": 2197
+ "_2304": 2305,
+ "_2307": 2308,
+ "_1878": 2310,
+ "_2312": 2313,
+ "_2315": 2316,
+ "_2318": 2319,
+ "_2321": 2322,
+ "_2074": 2324,
+ "_2326": 2327,
+ "_2329": 2330,
+ "_2332": 2333,
+ "_2335": 2336,
+ "_2338": 2339,
+ "_2341": 2342,
+ "_1967": 2344,
+ "_2346": 2347
},
- [
- 2198,
- 2199
- ],
+ "hotel_id",
{
- "_1614": 2118
+ "_1942": 1989,
+ "_1878": 2306
},
+ "Hotel's unique identifier",
+ "hotel_name",
{
- "_1449": 1723
+ "_1942": 1989,
+ "_1878": 2309
},
+ "Hotel name",
{
- "_1719": 2201
+ "_1942": 1989,
+ "_1878": 2311
},
- [
- 2202,
- 2203
- ],
+ "Short description about the hotel.",
+ "location_description",
{
- "_1614": 2118
+ "_1942": 1989,
+ "_1878": 2314
},
+ "Short location description of the hotel.",
+ "max_occupancy",
{
- "_1449": 1723
+ "_1942": 2025,
+ "_1878": 2317
},
+ "Maximum occupancy allowed for the accommodation.",
+ "number_of_bedrooms",
{
- "_1719": 2205,
- "_614": 2161,
- "_52": 2209
+ "_1942": 2025,
+ "_1878": 2320
},
- [
- 2206,
- 2208
- ],
+ "Number of bedrooms in the property.",
+ "star_rating",
{
- "_1602": 2207,
- "_1449": 1601
+ "_1942": 1989,
+ "_1878": 2323
},
+ "Star rating of the hotel.",
{
- "_1614": 2118
+ "_1942": 1989,
+ "_1878": 2325
},
+ "The guest rating of the hotel in expedia web site, max rating value is 5.",
+ "guest_review_count",
{
- "_1449": 1723
+ "_1942": 2025,
+ "_1878": 2328
},
- [],
- "ResumeData",
+ "The guest review count of this product in expedia web site.",
+ "avg_nightly_price",
{
- "_1597": 2212,
- "_1449": 1595,
- "_614": 2210
+ "_1942": 1989,
+ "_1878": 2331
},
+ "Price per night for the hotel",
+ "checkin_date",
{
- "_11": 2213,
- "_2218": 2219,
- "_2224": 2225,
- "_2233": 2234
+ "_1942": 1989,
+ "_1878": 2334
},
+ "Check-in date for the hotel stay in format YYYY-MM-DD",
+ "checkout_date",
{
- "_1719": 2214,
- "_614": 2217
+ "_1942": 1989,
+ "_1878": 2337
},
- [
- 2215,
- 2216
- ],
+ "Check-out date for the hotel stay in format YYYY-MM-DD",
+ "currency",
{
- "_1449": 1604
+ "_1942": 1989,
+ "_1878": 2340
},
+ "Currency in which avg nightly price is specified",
+ "promotion",
{
- "_1449": 1723
+ "_1942": 1989,
+ "_1878": 2343
},
- "Name",
- "jobTitle",
+ "Promotion of the hotel,like member saving",
{
- "_1719": 2220,
- "_614": 2223
+ "_1942": 1989,
+ "_1878": 2345
},
- [
- 2221,
- 2222
- ],
+ "Link to the hotel on Expedia.\\ \\ Include this in the user response prompt whenever available. \\",
+ "preview_photo",
{
- "_1449": 1604
+ "_1942": 1989,
+ "_1878": 2348
},
+ "A link to the preview photo of the hotel. \\ \\ Include this in the user response prompt whenever available.\\",
+ "FlightResponse",
{
- "_1449": 1723
+ "_1942": 2291,
+ "_2292": 2351
},
- "Jobtitle",
- "leftSections",
{
- "_1719": 2226,
- "_614": 2231,
- "_52": 2232
+ "_3": 2352,
+ "_2298": 2356
},
- [
- 2227,
- 2230
- ],
{
- "_1602": 2228,
- "_1449": 1601
+ "_1942": 2012,
+ "_1878": 2353,
+ "_2013": 2354
},
+ "List of flight recommendations",
{
- "_1614": 2229
+ "_2111": 2355
},
- "#/components/schemas/ResumeSection",
+ "#/components/schemas/FlightResponseData",
{
- "_1449": 1723
+ "_1942": 1989,
+ "_1878": 2300
},
- "Leftsections",
- [],
- "mainSections",
+ "FlightResponseData",
{
- "_1719": 2235,
- "_614": 2239,
- "_52": 2240
+ "_1942": 2291,
+ "_2292": 2359
},
- [
- 2236,
- 2238
- ],
{
- "_1602": 2237,
- "_1449": 1601
+ "_2360": 2361,
+ "_2144": 2365,
+ "_2367": 2368,
+ "_2371": 2372,
+ "_2338": 2375,
+ "_2135": 2377,
+ "_2380": 2381,
+ "_2384": 2385,
+ "_1967": 2388,
+ "_2346": 2390
},
+ "legs",
{
- "_1614": 2229
+ "_1942": 2012,
+ "_1878": 2362,
+ "_2013": 2363
},
+ "The list of flight legs in the segment.",
{
- "_1449": 1723
+ "_2111": 2364
},
- "Mainsections",
- [],
- "ResumeSection",
+ "#/components/schemas/FlightLeg",
{
- "_1597": 2243,
- "_1449": 1595,
- "_1588": 2257,
- "_614": 2241
+ "_1942": 2025,
+ "_1878": 2366,
+ "_2002": 2087
},
+ "Total number of stops in this segment",
+ "flight_duration",
{
- "_614": 2244,
- "_1449": 2246,
- "_1589": 2251
+ "_1942": 1989,
+ "_1878": 2369,
+ "_2002": 2370
},
+ "Total duration of the flight segment",
+ "9h 40m",
+ "price_per_ticket",
{
- "_1449": 1604,
- "_614": 2245
+ "_1942": 1989,
+ "_1878": 2373,
+ "_2002": 2374
},
- "Title",
+ "Price per ticket for the selected Flight",
+ "89.78",
{
- "_1449": 1604,
- "_2247": 2248,
- "_614": 2250
+ "_1942": 1989,
+ "_1878": 2376
},
- "enum",
- [
- 2249,
- 618
- ],
- "contact",
- "Type",
+ "Currency in which ticket price is specified",
{
- "_1719": 2252,
- "_614": 1746
+ "_1942": 1989,
+ "_1878": 2378,
+ "_2002": 2379
},
- [
- 2253,
- 2255
- ],
+ "Date of departure of the flight in format 'YYY-MM-DD'",
+ "2021-07-05",
+ "departure_time",
{
- "_1614": 2254
+ "_1942": 1989,
+ "_1878": 2382,
+ "_2002": 2383
},
- "#/components/schemas/ContactContent",
+ "Time of departure of the flight in format 'HH:mm aa'",
+ "07:15 AM",
+ "arrival_time",
{
- "_1614": 2256
+ "_1942": 1989,
+ "_1878": 2386,
+ "_2002": 2387
},
- "#/components/schemas/TextContent",
- [
- 614,
- 1449,
- 1589
- ],
- "Section",
+ "Time of arrival of the flight in format 'HH:mm aa'",
+ "12:30 PM",
{
- "_1597": 2260,
- "_1449": 1595,
- "_1588": 2273,
- "_614": 2258
+ "_1942": 1989,
+ "_1878": 2389
},
+ "Link to book the flight on Expedia. \\ \\ Include this in the user response prompt whenever available.\\",
{
- "_2261": 2262,
- "_1589": 2268
+ "_1942": 1989,
+ "_1878": 2391
},
- "section_name",
+ "A link to the preview photo of the flight. \\ \\ Include this in the user response prompt whenever available.\\",
+ "FlightLeg",
{
- "_1719": 2263,
- "_614": 2266,
- "_1476": 2267
+ "_1942": 2291,
+ "_2292": 2394
},
- [
- 2264,
- 2265
- ],
{
- "_1449": 1604
+ "_2395": 2396,
+ "_2399": 2400,
+ "_2403": 2404,
+ "_2407": 2408
},
+ "airline_name",
{
- "_1449": 1723
+ "_1942": 1989,
+ "_1878": 2397,
+ "_2002": 2398
},
- "Section Name",
- "Section name of report. Can be in any language. For eg, if section is about conclusion, section name can be 'Conclusion' or 'K\u1ebft lu\u1eadn' in vietnamese",
+ "Airline name for the flight.",
+ "United Airlines",
+ "flight_number",
{
- "_1719": 2269,
- "_614": 1746,
- "_1476": 2272
+ "_1942": 1989,
+ "_1878": 2401,
+ "_2002": 2402
},
- [
- 2270,
- 2271
- ],
+ "Flight number corresponding to the airline.",
+ "1523",
+ "departure_airport_code",
{
- "_1449": 1604
+ "_1942": 1989,
+ "_1878": 2405,
+ "_2002": 2406
},
+ "Deaprture airport code",
+ "SEA",
+ "arrival_airport_code",
{
- "_1449": 1723
+ "_1942": 1989,
+ "_1878": 2409,
+ "_2002": 2410
},
- "Section content in markdown",
- [
- 2261,
- 1589
- ],
- "SlideData",
+ "Arrival airport code",
+ "SFO",
+ "ActivityResponse",
{
- "_1597": 2276,
- "_1449": 1595,
- "_614": 2274
+ "_1942": 2291,
+ "_2292": 2413
},
{
- "_614": 2277,
- "_2281": 2282,
- "_2287": 2288,
- "_2296": 2297
+ "_3": 2414,
+ "_2298": 2418
},
{
- "_1719": 2278,
- "_614": 2245
+ "_1942": 2012,
+ "_1878": 2415,
+ "_2013": 2416
},
- [
- 2279,
- 2280
- ],
+ "List of the activities.",
{
- "_1449": 1604
+ "_2111": 2417
},
+ "#/components/schemas/ActivityResponseData",
{
- "_1449": 1723
+ "_1942": 1989,
+ "_1878": 2300
},
- "short_description",
+ "ActivityResponseData",
{
- "_1719": 2283,
- "_614": 2286
+ "_1942": 2291,
+ "_2292": 2421
},
- [
- 2284,
- 2285
- ],
{
- "_1449": 1604
+ "_2422": 2423,
+ "_2425": 2426,
+ "_2371": 2428,
+ "_2338": 2430,
+ "_2203": 2431,
+ "_1890": 2433,
+ "_2436": 2437,
+ "_1967": 2440,
+ "_2346": 2442
},
+ "activity_name",
{
- "_1449": 1723
+ "_1942": 1989,
+ "_1878": 2424
},
- "Short Description",
- "slides",
+ "Name for the activity.",
+ "activity_description",
{
- "_1719": 2289,
- "_614": 2294,
- "_52": 2295
+ "_1942": 1989,
+ "_1878": 2427
},
- [
- 2290,
- 2293
- ],
+ "Description of the activity.",
{
- "_1602": 2291,
- "_1449": 1601
+ "_1942": 1989,
+ "_1878": 2429
},
+ "Price per ticket for the activity",
{
- "_1614": 2292
+ "_1942": 1989,
+ "_1878": 2376
},
- "#/components/schemas/SlidePage",
{
- "_1449": 1723
+ "_1942": 1989,
+ "_1878": 2432,
+ "_2002": 2370
},
- "Slides",
- [],
- "template_id",
+ "Total duration of the activity",
{
- "_1719": 2298,
- "_614": 2301
+ "_1942": 2012,
+ "_1878": 2434,
+ "_2013": 2435
},
- [
- 2299,
- 2300
- ],
+ "The list of activity categories.",
{
- "_1449": 1714
+ "_1942": 1989
},
+ "saving_percentage",
{
- "_1449": 1723
+ "_1942": 1989,
+ "_1878": 2438,
+ "_2002": 2439
},
- "Template id for slide.",
- "SlidePage",
+ "Saving percentage of the activity",
+ "45",
{
- "_1597": 2304,
- "_1449": 1595,
- "_614": 2302
+ "_1942": 1989,
+ "_1878": 2441
},
+ "A link to the activity product on Expedia. \\ \\ Include this in the user response prompt whenever available.\\",
{
- "_2305": 2306,
- "_1589": 2312
+ "_1942": 1989,
+ "_1878": 2443
},
- "page_title",
+ "A link to the preview photo of the activity. \\ \\ Include this in the user response prompt whenever available.\\",
+ "CarProductResponse",
{
- "_1719": 2307,
- "_614": 2310,
- "_1476": 2311
+ "_1942": 2291,
+ "_2292": 2446
},
- [
- 2308,
- 2309
- ],
{
- "_1449": 1604
+ "_3": 2447,
+ "_2298": 2451
},
{
- "_1449": 1723
+ "_1942": 2012,
+ "_1878": 2448,
+ "_2013": 2449
},
- "Page Title",
- "Title of this page",
+ "The list of car products.",
{
- "_1719": 2313,
- "_614": 1746,
- "_1476": 2317,
- "_52": 2318
+ "_2111": 2450
},
- [
- 2314,
- 2316
- ],
+ "#/components/schemas/CarProductResponseData",
{
- "_1602": 2315,
- "_1449": 1601
+ "_1942": 1989,
+ "_1878": 2300
},
+ "CarProductResponseData",
{
- "_1449": 1604
+ "_1942": 2291,
+ "_2292": 2454
},
{
- "_1449": 1723
+ "_2455": 2456,
+ "_2458": 2459,
+ "_2461": 2462,
+ "_2464": 2465,
+ "_2242": 2467,
+ "_2469": 2470,
+ "_2251": 2472,
+ "_2474": 2475,
+ "_2338": 2477,
+ "_1967": 2479,
+ "_2346": 2481
},
- "Page content. Donot exceed 8 lines.",
- [],
- "TextContent",
+ "car_make",
{
- "_1597": 2321,
- "_1449": 1595,
- "_1588": 2324,
- "_614": 2319
+ "_1942": 1989,
+ "_1878": 2457
},
+ "The Car manufacturer and model.",
+ "car_class",
{
- "_618": 2322
+ "_1942": 1989,
+ "_1878": 2460
},
+ "The car category and type.",
+ "supplier_name",
{
- "_1449": 1604,
- "_614": 2323
+ "_1942": 1989,
+ "_1878": 2463
},
- "Text",
- [
- 618
- ],
+ "The supplier name of this car product.",
+ "pickup_address",
{
- "_1597": 2326,
- "_1449": 1595,
- "_1588": 2334,
- "_614": 1795
+ "_1942": 1989,
+ "_1878": 2466
},
+ "The pickup address information of the location.",
{
- "_1798": 2327,
- "_1805": 2332,
- "_1449": 2333
+ "_1942": 1989,
+ "_1878": 2468
},
+ "The date time that pickup the car.",
+ "dropoff_address",
{
- "_1602": 2328,
- "_1449": 1601,
- "_614": 1804
+ "_1942": 1989,
+ "_1878": 2471
},
+ "The dropoff address information of the location",
{
- "_1719": 2329
+ "_1942": 1989,
+ "_1878": 2473
},
- [
- 2330,
- 2331
- ],
+ "The date time that dropoff the car.",
+ "total_price",
{
- "_1449": 1604
+ "_1942": 1989,
+ "_1878": 2476
},
+ "Total price for the car with currency",
{
- "_1449": 1714
+ "_1942": 1989,
+ "_1878": 2478
},
+ "Currency in which total price is specified",
{
- "_1449": 1604,
- "_614": 1807
+ "_1942": 1989,
+ "_1878": 2480
},
+ "A link to the car product on Expedia. \\ \\ Include this in the user response prompt whenever available.\\",
{
- "_1449": 1604,
- "_614": 1809
+ "_1942": 1989,
+ "_1878": 2482
},
- [
- 1798,
- 1805,
- 1449
- ],
+ "A link to the preview photo of the car. \\ \\ Include this in the user response prompt whenever available.\\",
+ "auth",
{
- "_1449": 902
+ "_1942": 2485,
+ "_1874": 455,
+ "_2486": 2487,
+ "_2488": 2489,
+ "_2490": 455
},
+ "service_http",
+ "authorization_type",
+ "basic",
+ "verification_tokens",
+ {},
+ "custom_auth_header",
+ "privacy_policy_url",
+ "https://legal.expediagroup.com/privacy/privacy-and-cookies-statements/privacy-statement-all",
"files",
[],
"product_features",
{
- "_2340": 2341
+ "_2497": 2498
},
"attachments",
{
- "_1449": 2342,
- "_2343": 2344,
- "_2419": 2420,
- "_2425": 45
+ "_1942": 2499,
+ "_2500": 2501,
+ "_2576": 2577,
+ "_2582": 61
},
"retrieval",
"accepted_mime_types",
[
- 2345,
- 2346,
- 2347,
- 2348,
- 2349,
- 2350,
- 2351,
- 2352,
- 2353,
- 2354,
- 2355,
- 2356,
- 2357,
- 2358,
- 1591,
- 2359,
- 2360,
- 2361,
- 2362,
- 2363,
- 2364,
- 2365,
- 2366,
- 2367,
- 2368,
- 2369,
- 2370,
- 2371,
- 2372,
- 2373,
- 2374,
- 2375,
- 2376,
- 2377,
- 2378,
- 2379,
- 2380,
- 2381,
- 2382,
- 2383,
- 2384,
- 2385,
- 2386,
- 2387,
- 2388,
- 2389,
- 2390,
- 2391,
- 2392,
- 2393,
- 2394,
- 2395,
- 2396,
- 2397,
- 2398,
- 2399,
- 2400,
- 2401,
- 2402,
- 2403,
- 2404,
- 2405,
- 2406,
- 2407,
- 2408,
- 2409,
- 2410,
- 2411,
- 2412,
- 2413,
- 2414,
- 2415,
- 2416,
- 2417,
- 2418
+ 2502,
+ 2503,
+ 2504,
+ 2505,
+ 2506,
+ 2507,
+ 2508,
+ 2509,
+ 2510,
+ 2511,
+ 2512,
+ 2513,
+ 2514,
+ 2515,
+ 2516,
+ 2517,
+ 2518,
+ 2519,
+ 2520,
+ 2521,
+ 2522,
+ 2523,
+ 2524,
+ 2525,
+ 2526,
+ 2527,
+ 2528,
+ 2529,
+ 2530,
+ 2531,
+ 2532,
+ 2533,
+ 2534,
+ 2535,
+ 2536,
+ 2537,
+ 2538,
+ 2539,
+ 2540,
+ 2541,
+ 2542,
+ 2108,
+ 2543,
+ 2544,
+ 2545,
+ 2546,
+ 2547,
+ 2548,
+ 2549,
+ 2550,
+ 2551,
+ 2552,
+ 2553,
+ 2554,
+ 2555,
+ 2556,
+ 2557,
+ 2558,
+ 2559,
+ 2560,
+ 2561,
+ 2562,
+ 2563,
+ 2564,
+ 2565,
+ 2566,
+ 2567,
+ 2568,
+ 2569,
+ 2570,
+ 2571,
+ 2572,
+ 2573,
+ 2574,
+ 2575
],
+ "text/x-csharp",
+ "application/vnd.apple.pages",
+ "text/x-typescript",
+ "application/javascript",
+ "text/x-liquid",
+ "text/x-php",
+ "text/x-tmpl",
+ "text/x-astro",
+ "application/x-sql",
+ "text/javascript",
"text/x-dart",
- "text/x-perl",
- "application/toml",
- "text/x-erb",
- "text/x-scala",
- "text/x-script.python",
- "text/vbscript",
- "text/x-python",
+ "text/x-diff",
+ "text/x-objectivec",
"text/x-r",
+ "text/xml",
"text/x-lisp",
+ "text/markdown",
+ "text/x-erlang",
+ "text/x-handlebars",
+ "text/x-asm",
+ "application/vnd.openxmlformats-officedocument.presentationml.presentation",
+ "application/rtf",
+ "message/rfc822",
"text/x-c",
- "application/vnd.oasis.opendocument.text",
- "text/tsx",
- "text/x-php",
+ "text/x-shellscript",
+ "application/vnd.apple.keynote",
+ "application/x-scala",
+ "text/x-go",
"text/x-julia",
- "text/x-mustache",
- "text/x-ejs",
- "text/jsx",
- "text/x-liquid",
- "application/vnd.ms-powerpoint",
- "application/vnd.apple.pages",
- "text/x-ruby",
- "text/x-tmpl",
- "text/plain",
- "text/x-twig",
- "text/x-asm",
- "application/javascript",
- "text/rtf",
"application/x-yaml",
- "text/x-haskell",
- "text/x-astro",
+ "text/tsx",
"text/x-jinja2",
- "application/x-scala",
- "application/x-powershell",
- "text/x-sh",
- "text/html",
- "text/x-handlebars",
- "application/rtf",
- "text/x-makefile",
- "application/x-rust",
- "text/x-rust",
- "text/x-rst",
- "text/x-diff",
- "text/x-typescript",
- "text/javascript",
- "text/x-go",
- "text/x-elixir",
+ "application/pdf",
+ "text/x-pug",
+ "text/x-ejs",
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
+ "text/x-kotlin",
+ "text/x-script.python",
"text/x-clojure",
+ "text/vbscript",
+ "text/x-rst",
+ "text/x-scala",
+ "text/x-rust",
+ "text/jsx",
"text/x-lua",
- "text/x-kotlin",
- "text/x-csharp",
- "text/x-tex",
- "text/xml",
- "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
+ "text/x-c++",
+ "text/rtf",
+ "text/x-groovy",
+ "text/x-erb",
"text/calendar",
- "application/vnd.openxmlformats-officedocument.presentationml.presentation",
- "message/rfc822",
- "application/pdf",
- "application/msword",
- "text/markdown",
+ "application/x-powershell",
+ "application/vnd.ms-powerpoint",
+ "text/plain",
+ "text/html",
+ "text/x-ruby",
+ "text/x-sh",
"text/x-java",
- "text/x-shellscript",
- "text/x-swift",
- "text/x-objectivec++",
- "application/vnd.apple.keynote",
- "text/x-erlang",
- "text/x-groovy",
- "text/x-pug",
- "text/css",
+ "text/x-mustache",
+ "text/x-haskell",
"text/x-jade",
- "text/x-c++",
"text/x-vcard",
- "text/x-objectivec",
- "application/x-sql",
+ "text/x-tex",
+ "application/vnd.oasis.opendocument.text",
+ "text/x-swift",
+ "text/x-twig",
+ "text/x-perl",
+ "text/x-elixir",
+ "text/css",
+ "application/x-rust",
+ "application/toml",
+ "application/msword",
+ "text/x-python",
+ "text/x-makefile",
+ "text/x-objectivec++",
"image_mime_types",
[
- 2421,
- 2422,
- 2423,
- 2424
+ 2578,
+ 2579,
+ 2580,
+ 2581
],
+ "image/png",
"image/gif",
"image/webp",
"image/jpeg",
- "image/png",
"can_accept_all_mime_types"
]
\ No newline at end of file
diff --git a/version.txt b/version.txt
index 89800ce..599cf33 100644
--- a/version.txt
+++ b/version.txt
@@ -1 +1 @@
-1.8.5-beta2
\ No newline at end of file
+1.8.8-beta1
\ No newline at end of file