2026-06-30 24681c81c09022f584a57006f2534b5f74723414
yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/framework/ai/core/model/grok/GrokChatModel.java
@@ -17,9 +17,9 @@
@RequiredArgsConstructor
public class GrokChatModel implements ChatModel {
    public static final String BASE_URL = "https://api.x.ai";
    public static final String BASE_URL = "https://api.x.ai/v1";
    public static final String COMPLETE_PATH = "/v1/chat/completions";
    public static final String MODEL_DEFAULT = "grok-4-fast-reasoning";
    public static final String MODEL_DEFAULT = "grok-4.3";
    /**
     * 兼容 OpenAI 接口,进行复用
@@ -37,8 +37,15 @@
    }
    @Override
    public ChatOptions getOptions() {
        return openAiChatModel.getOptions();
    }
    @Override
    @Deprecated(forRemoval = true)
    @SuppressWarnings("removal")
    public ChatOptions getDefaultOptions() {
        return openAiChatModel.getDefaultOptions();
        return getOptions();
    }
}