mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-12 22:31:24 +00:00
7 lines
224 B
Java
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) {
|
|
}
|