# ToolSchema

**Kind:** Interface

**Source:** [`atloria-monorepo/libs/agent-core/src/runtime/model-provider-interface.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/libs/agent-core/src/runtime/model-provider-interface.ts#L26)

Tool schema sent to the model.
Matches the OpenAI function-calling format (industry standard).

## Properties

| Property | Type |
|---|---|
| `type` | `'function'` |
| `name` | `string` |
| `description` | `string` |
| `parameters` | `Record<string, unknown>` |
| `strict` | `boolean` |
