2023-10-23 14:33:05 +05:30
|
|
|
package com.baeldung.langchain;
|
|
|
|
|
|
|
|
|
|
public class Constants {
|
|
|
|
|
|
2023-10-25 10:40:32 +05:30
|
|
|
/**
|
|
|
|
|
* 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>";
|
2023-10-23 14:33:05 +05:30
|
|
|
|
|
|
|
|
}
|