Add advanced settings in prompt box (#1655)

This commit is contained in:
Shuchang Zheng
2025-01-27 21:47:09 +08:00
committed by GitHub
parent 16ff41f999
commit 7f2413e06d
2 changed files with 134 additions and 63 deletions

View File

@@ -257,3 +257,9 @@ export type ObserverTask = {
output: Record<string, unknown> | null;
summary: string | null;
};
export type Createv2TaskRequest = {
user_prompt: string;
webhook_callback_url?: string | null;
proxy_location?: ProxyLocation | null;
};