| 123456789101112131415161718192021222324252627282930313233 |
- package com.takai.ai.domain.entity;
- import com.takai.common.config.DeepseekConfig;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Component;
- import java.nio.charset.StandardCharsets;
- import java.util.Base64;
- public class TakaiPromptInfo {
- private String role;
- private String content;
- private static final Base64.Decoder BASE64_DECODER = Base64.getDecoder();
- public String getRole() {
- return role;
- }
- public void setRole(String role) {
- this.role = role;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- }
|