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

Function getModelsWithoutMemory

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

Source from the content-addressed store, hash-verified

3727 * Models without this capability default to supporting memory.
3728 */
3729export function getModelsWithoutMemory(): string[] {
3730 const models: string[] = []
3731 for (const provider of Object.values(PROVIDER_DEFINITIONS)) {
3732 for (const model of provider.models) {
3733 if (model.capabilities.memory === false) {
3734 models.push(model.id)
3735 }
3736 }
3737 }
3738 return models
3739}
3740
3741/**
3742 * Get the max output tokens 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