File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
src/main/java/io/github/artemnefedov/javaai/service/impl Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 46
46
@ Setter
47
47
public class OpenAIImplementation implements OpenAI {
48
48
49
- private String baseURL = Config .getInstance ().getProperties ("url.openai.base" );
50
- private String compURL = baseURL + Config .getInstance ().getProperties ("url.openai.completions" );
51
- private String imgBuilderURL = baseURL + Config .getInstance ().getProperties ("url.openai.image_generator" );
52
- private String chatURL = baseURL + Config .getInstance ().getProperties ("url.openai.chat" );
49
+ private String baseURL = Config .getInstance ()
50
+ .getProperties ("url.openai.base" );
51
+ private String compURL = baseURL + Config .getInstance ()
52
+ .getProperties ("url.openai.completions" );
53
+ private String imgBuilderURL = baseURL + Config .getInstance ()
54
+ .getProperties ("url.openai.image_generator" );
55
+ private String chatURL = baseURL + Config .getInstance ()
56
+ .getProperties ("url.openai.chat" );
53
57
54
58
55
59
You can’t perform that action at this time.
0 commit comments