13 lines
416 B
Java
Raw Normal View History

package com.baeldung.langchain;
public class Constants {
/**
* A limited access key for access to OpenAI language models can be generated by first
* registering for free at (https://platform.openai.com/signup) and then by navigating
* to "Create new secret key" page at (https://platform.openai.com/account/api-keys).
*/
2023-10-30 11:05:16 +05:30
public static String OPENAI_API_KEY = "<OPENAI_API_KEY>";
}