From 7dbab2a7af396fd02012cc1527e006425e7d3aa4 Mon Sep 17 00:00:00 2001
From: P15GEN2\59518 <lilith@highdatas.com>
Date: 星期六, 18 十月 2025 12:51:53 +0800
Subject: [PATCH] no message
---
ai/src/ai/AIResult.java | 18 ++++++++++++++++++
1 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/ai/src/ai/AIResult.java b/ai/src/ai/AIResult.java
new file mode 100644
index 0000000..68fbd12
--- /dev/null
+++ b/ai/src/ai/AIResult.java
@@ -0,0 +1,18 @@
+package ai;
+
+import foundation.json.IJSONProvider;
+import foundation.json.IJSONWriter;
+
+public class AIResult implements IJSONProvider {
+ private String content;
+
+ public AIResult(String jsonContent) {
+ this.content = jsonContent;
+ }
+
+ @Override
+ public void writeJSON(IJSONWriter writer) {
+ writer.writeJSON(content);
+ }
+
+}
--
Gitblit v1.8.0