Class ExtendClientWrapper


  • @Deprecated
    public class ExtendClientWrapper
    extends ExtendClient
    Deprecated.
    Renamed to ExtendClient. This class is now a thin, fully backwards-compatible alias and will be removed in a future major release. Replace import ai.extend.wrapper.ExtendClientWrapper; with import ai.extend.ExtendClient; and ExtendClientWrapper with ExtendClient. All methods, builder options, and behavior are identical.
    
     // Before
     ExtendClientWrapper client = ExtendClientWrapper.builder().apiKey("...").build();
    
     // After
     ExtendClient client = ExtendClient.builder().apiKey("...").build();