feat(coding): add Pi Data Service product tools

This commit is contained in:
2026-08-26 19:58:38 +08:00
parent 44bcdf52fc
commit 1d63233cd0
12 changed files with 790 additions and 26 deletions

View File

@@ -1,3 +1,5 @@
import type { DataServiceToolDetailsV1 } from './data-service';
export type ConversationThinkingLevel = 'off' | 'minimal' | 'low' | 'medium' | 'high';
export interface ProductModelRef {
@@ -192,6 +194,8 @@ export interface RuntimeContextDetailsV1 {
}>;
}
export type { DataServiceToolDetailsV1 } from './data-service';
export interface SubagentDetailsV1 {
schema: 'subagent.v1';
dispatchId: string;
@@ -214,6 +218,7 @@ export type KnownToolDetails =
| AgentBrowserDetailsV1
| GameAssetsDetailsV1
| RuntimeContextDetailsV1
| DataServiceToolDetailsV1
| SubagentDetailsV1;
export interface ConversationToolNode {