(ctx context.Context)
| 13 | |
| 14 | type chatClient interface { |
| 15 | ListModels(ctx context.Context) ([]string, error) |
| 16 | StreamChat(ctx context.Context, model string, messages []chatMessage, out io.Writer) (string, error) |
| 17 | } |
| 18 |
no outgoing calls
no test coverage detected