ProxyAI/src/main/java/ee/carlrobert/codegpt/completions/llama/LlamaServerMessage.java
Rene Leonhardt 7d89650062
chore: Improve code (#442)
* chore: Improve code

* Convert classes to records
2024-04-10 14:47:38 +03:00

7 lines
224 B
Java

package ee.carlrobert.codegpt.completions.llama;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public record LlamaServerMessage(String level, String message) {
}