io.github.panghy.openai.AuthenticationInterceptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
Basic retrofit client for OpenAI's GPT APIs
The newest version!
package io.github.panghy.openai;
/**
* OkHttp Interceptor that adds an authorization token header
*
* @deprecated Use {@link io.github.panghy.openai.client.AuthenticationInterceptor}
*/
@Deprecated
public class AuthenticationInterceptor extends io.github.panghy.openai.client.AuthenticationInterceptor {
AuthenticationInterceptor(String token) {
super(token);
}
}