neoagent 3.0.1-beta.21 → 3.0.1-beta.23
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/landing/index.html +3 -3
- package/package.json +1 -1
- package/server/public/.last_build_id +1 -1
- package/server/public/canvaskit/wimp.js.symbols +8475 -8467
- package/server/public/canvaskit/wimp.wasm +0 -0
- package/server/public/flutter_bootstrap.js +2 -2
- package/server/public/main.dart.js +5 -5
- package/server/services/ai/loop/conversation_loop.js +15 -9
- package/server/services/ai/toolEvidence.js +15 -0
- package/server/services/ai/toolResult.js +40 -0
- package/server/services/runtime/guest_image.js +6 -0
- package/server/services/social_video/service.js +60 -10
package/landing/index.html
CHANGED
|
@@ -640,7 +640,7 @@ p { margin: 0; text-wrap: pretty; }
|
|
|
640
640
|
.hero-note { margin-top: 16px; font-family: var(--mono); font-size: 12.5px; color: var(--ink-3); letter-spacing: 0.02em; }
|
|
641
641
|
|
|
642
642
|
/* ---------- orbit system ---------- */
|
|
643
|
-
.orbit-stage { position: relative; width: min(460px, 86vw); aspect-ratio: 1; margin-inline: auto; }
|
|
643
|
+
.orbit-stage { position: relative; width: min(460px, 86vw, 100%); aspect-ratio: 1; margin-inline: auto; }
|
|
644
644
|
.orbit-glow { position: absolute; inset: 16%; border-radius: 50%; background: radial-gradient(circle, rgba(199,154,82,0.28), transparent 65%); filter: blur(22px); animation: corepulse 7s ease-in-out infinite; }
|
|
645
645
|
@media (prefers-color-scheme: dark) { .orbit-glow { background: radial-gradient(circle, rgba(228,197,141,0.22), transparent 65%); } }
|
|
646
646
|
@keyframes corepulse { 0%,100% { opacity: .7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.07); } }
|
|
@@ -830,7 +830,7 @@ p { margin: 0; text-wrap: pretty; }
|
|
|
830
830
|
.hero-actions { flex-direction: column; width: 100%; }
|
|
831
831
|
.hero-actions .btn { width: 100%; justify-content: center; }
|
|
832
832
|
.final .hero-actions .btn { width: auto; }
|
|
833
|
-
.orbit-stage { width: min(320px,
|
|
833
|
+
.orbit-stage { width: min(320px, 78vw); }
|
|
834
834
|
.frame-bar .url { max-width: 70%; }
|
|
835
835
|
.footer-inner { flex-direction: column; gap: 22px; }
|
|
836
836
|
.footer-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
|
|
@@ -848,7 +848,7 @@ p { margin: 0; text-wrap: pretty; }
|
|
|
848
848
|
.logo .ri { transform-box: fill-box; transform-origin: center; }
|
|
849
849
|
.logo .ri-a { animation: spinA 18s linear infinite; }
|
|
850
850
|
.logo .ri-b { animation: spinB 26s linear infinite; }
|
|
851
|
-
.logo .nd { animation: nd 14s linear infinite; transform-box:
|
|
851
|
+
.logo .nd { animation: nd 14s linear infinite; transform-box: view-box; transform-origin: 50px 50px; }
|
|
852
852
|
@keyframes spinA { to { transform: rotate(360deg); } }
|
|
853
853
|
@keyframes spinB { to { transform: rotate(-360deg); } }
|
|
854
854
|
@keyframes nd { to { transform: rotate(360deg); } }
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
47a9e91c8623e1650b364a08fd114cba
|