@mindstudio-ai/remy 0.1.32 → 0.1.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/headless.js
CHANGED
|
@@ -2194,14 +2194,15 @@ async function runSubAgent(config) {
|
|
|
2194
2194
|
const contentBlocks = [];
|
|
2195
2195
|
let thinkingStartedAt = 0;
|
|
2196
2196
|
let stopReason = "end_turn";
|
|
2197
|
+
const fullSystem = `${system}
|
|
2198
|
+
|
|
2199
|
+
Current date/time: ${(/* @__PURE__ */ new Date()).toISOString().replace("T", " ").replace(/\.\d+Z$/, " UTC")}`;
|
|
2197
2200
|
try {
|
|
2198
2201
|
for await (const event of streamChatWithRetry({
|
|
2199
2202
|
...apiConfig,
|
|
2200
2203
|
model,
|
|
2201
2204
|
subAgentId,
|
|
2202
|
-
system:
|
|
2203
|
-
|
|
2204
|
-
Current date/time: ${(/* @__PURE__ */ new Date()).toISOString().replace("T", " ").replace(/\.\d+Z$/, " UTC")}`,
|
|
2205
|
+
system: fullSystem,
|
|
2205
2206
|
messages: cleanMessagesForApi(messages),
|
|
2206
2207
|
tools,
|
|
2207
2208
|
signal
|
package/dist/index.js
CHANGED
|
@@ -2157,14 +2157,15 @@ async function runSubAgent(config) {
|
|
|
2157
2157
|
const contentBlocks = [];
|
|
2158
2158
|
let thinkingStartedAt = 0;
|
|
2159
2159
|
let stopReason = "end_turn";
|
|
2160
|
+
const fullSystem = `${system}
|
|
2161
|
+
|
|
2162
|
+
Current date/time: ${(/* @__PURE__ */ new Date()).toISOString().replace("T", " ").replace(/\.\d+Z$/, " UTC")}`;
|
|
2160
2163
|
try {
|
|
2161
2164
|
for await (const event of streamChatWithRetry({
|
|
2162
2165
|
...apiConfig,
|
|
2163
2166
|
model,
|
|
2164
2167
|
subAgentId,
|
|
2165
|
-
system:
|
|
2166
|
-
|
|
2167
|
-
Current date/time: ${(/* @__PURE__ */ new Date()).toISOString().replace("T", " ").replace(/\.\d+Z$/, " UTC")}`,
|
|
2168
|
+
system: fullSystem,
|
|
2168
2169
|
messages: cleanMessagesForApi(messages),
|
|
2169
2170
|
tools,
|
|
2170
2171
|
signal
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
{{prompts/identity.md}}
|
|
2
2
|
|
|
3
|
+
<inspiration_and_reference>
|
|
4
|
+
{{fonts_to_consider}}
|
|
5
|
+
{{inspiration_images}}
|
|
6
|
+
</inspiration_and_reference>
|
|
7
|
+
|
|
3
8
|
<frontend_design_standards>
|
|
4
9
|
{{prompts/frontend-design-notes.md}}
|
|
5
10
|
</frontend_design_standards>
|
|
@@ -12,8 +17,4 @@
|
|
|
12
17
|
{{prompts/layout.md}}
|
|
13
18
|
</design_guidelines>
|
|
14
19
|
|
|
15
|
-
{{fonts_to_consider}}
|
|
16
|
-
|
|
17
|
-
{{inspiration_images}}
|
|
18
|
-
|
|
19
20
|
{{prompts/instructions.md}}
|