dev.ai4j.openai4j.AuthorizationHeaderInjector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openai4j Show documentation
Show all versions of openai4j Show documentation
Java Client for OpenAI (ChatGPT)
package dev.ai4j.openai4j;
import java.util.Collections;
class AuthorizationHeaderInjector extends GenericHeaderInjector {
AuthorizationHeaderInjector(String apiKey) {
super(Collections.singletonMap("Authorization", "Bearer " + apiKey));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy