MCPcopy Index your code
hub / github.com/simstudioai/sim / getModelsWithVerbosity

Function getModelsWithVerbosity

apps/sim/providers/models.ts:3617–3627  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3615}
3616
3617export function getModelsWithVerbosity(): string[] {
3618 const models: string[] = []
3619 for (const provider of Object.values(PROVIDER_DEFINITIONS)) {
3620 for (const model of provider.models) {
3621 if (model.capabilities.verbosity) {
3622 models.push(model.id)
3623 }
3624 }
3625 }
3626 return models
3627}
3628
3629/**
3630 * Get the verbosity values for a specific model

Callers 2

utils.tsFile · 0.90
agent.tsFile · 0.90

Calls 1

pushMethod · 0.45

Tested by

no test coverage detected