Skip to content

Commit

Permalink
add: added property
Browse files Browse the repository at this point in the history
  • Loading branch information
thguss committed Oct 15, 2024
1 parent 3875774 commit b392b63
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.smeem.output.web.gpt.config;

import org.springframework.boot.context.properties.ConfigurationProperties;

@ConfigurationProperties(prefix = "gpt")
public record OpenAiProperties(
OpenAI openai
) {

public record OpenAI(
String api
) {
}
}

0 comments on commit b392b63

Please sign in to comment.