(
model: TModel,
config: CodexTextConfig = {},
)
| 376 | * in its environment. |
| 377 | */ |
| 378 | export function codexText<TModel extends CodexModel>( |
| 379 | model: TModel, |
| 380 | config: CodexTextConfig = {}, |
| 381 | ): CodexTextAdapter<TModel> { |
| 382 | return new CodexTextAdapter(config, model) |
| 383 | } |
no outgoing calls
no test coverage detected