> ISPO SDK documentation. [HTML](https://ispo.ai/docs/interfaces/core.ChatCompanionCreateArgs.html) · [Documentation index](https://ispo.ai/docs/llms.txt)

# Interface ChatCompanionCreateArgs

`chats.create` input. `seedText` only prefills the composer draft — the human Send in host chrome remains the trust boundary; nothing auto-sends. `open: true` additionally reveals the new session in the bound pane, so create-and-open closes the id loop in one call.

```typescript
interface ChatCompanionCreateArgs {
    open?: boolean;
    seedText?: string;
    title?: string;
}
```

Types: [open](#open), [seedText](#seedtext), [title](#title)

##### Index

### <a id="properties"></a>Properties

[open?](#open) [seedText?](#seedtext) [title?](#title)

## <a id="properties-1"></a>Properties

### <a id="open"></a>`Optional`open

```typescript
open?: boolean
```

### <a id="seedtext"></a>`Optional`seedText

```typescript
seedText?: string
```

### <a id="title"></a>`Optional`title

```typescript
title?: string
```
