We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ee4e98 commit 829b8d4Copy full SHA for 829b8d4
apps/sim/tools/types.ts
@@ -16,6 +16,10 @@ export type BYOKProviderId =
16
| 'google_cloud'
17
| 'huggingface'
18
| 'linkup'
19
+ | 'runway'
20
+ | 'luma'
21
+ | 'minimax'
22
+ | 'falai'
23
24
export type HttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD'
25
@@ -313,4 +317,6 @@ export interface ToolHostingConfig<P = Record<string, unknown>> {
313
317
pricing: ToolHostingPricing<P>
314
318
/** Hosted key rate limit configuration (required for hosted key distribution) */
315
319
rateLimit: HostedKeyRateLimitConfig
320
+ /** When true, skip the fixed usage log entry (useful for tools that log custom dimensions instead) */
321
+ skipFixedUsageLog?: boolean
316
322
}
0 commit comments