( options: ChatClientOptions<TTools, TContext>, )
| 581 | * ``` |
| 582 | */ |
| 583 | export function createChatClientOptions< |
| 584 | const TTools extends ReadonlyArray<AnyClientTool>, |
| 585 | TContext = InferredClientContext<TTools>, |
| 586 | >( |
| 587 | options: ChatClientOptions<TTools, TContext>, |
| 588 | ): ChatClientOptions<TTools, TContext> { |
| 589 | return options |
| 590 | } |
| 591 | |
| 592 | /** |
| 593 | * Extract the message type from chat options |
no outgoing calls
no test coverage detected