> ## Documentation Index
> Fetch the complete documentation index at: https://colin-feat-client-cache-mode.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# SamplingResult

Defined in: [server/context.ts:42](https://github.com/PrefectHQ/fastmcp-ts/blob/8976c37f79efa6b87809b884f29a1f235a8c4ad1/src/server/context.ts#L42)

## Properties

### content

```ts theme={null}
content: 
  | {
  text: string;
  type: "text";
}
  | {
  data: string;
  mimeType: string;
  type: "image";
};
```

Defined in: [server/context.ts:44](https://github.com/PrefectHQ/fastmcp-ts/blob/8976c37f79efa6b87809b884f29a1f235a8c4ad1/src/server/context.ts#L44)

***

### model

```ts theme={null}
model: string;
```

Defined in: [server/context.ts:47](https://github.com/PrefectHQ/fastmcp-ts/blob/8976c37f79efa6b87809b884f29a1f235a8c4ad1/src/server/context.ts#L47)

***

### role

```ts theme={null}
role: "assistant";
```

Defined in: [server/context.ts:43](https://github.com/PrefectHQ/fastmcp-ts/blob/8976c37f79efa6b87809b884f29a1f235a8c4ad1/src/server/context.ts#L43)

***

### stopReason?

```ts theme={null}
optional stopReason?: string;
```

Defined in: [server/context.ts:48](https://github.com/PrefectHQ/fastmcp-ts/blob/8976c37f79efa6b87809b884f29a1f235a8c4ad1/src/server/context.ts#L48)
