diff --git a/public/assets/styles/base.css b/public/assets/styles/base.css index ed6e9ec..78cbd96 100644 --- a/public/assets/styles/base.css +++ b/public/assets/styles/base.css @@ -88,11 +88,11 @@ input, textarea, select { background: #121a25; border: 1px solid var(--border); border-radius: 6px 6px 0 0; - box-shadow: 0px 0px 20px #ffffff33; + box-shadow: 0px 0px 20px #ffffff26; } .message { - margin-bottom: 1.2rem; + margin-bottom: .7rem; } .message.user { @@ -100,13 +100,13 @@ input, textarea, select { } .message.user .bubble { - background: var(--user); margin-left: auto; + color: #86b7fe; } .message.assistant .bubble { - background: #16202f; - border: 1px solid var(--border); + /*background: #16202f;*/ + border-bottom: 1px solid var(--border); max-width: 100%; } @@ -523,8 +523,8 @@ body:not(.retriex-show-detail-cards) #chat .retriex-alert { /* RetrieX chat meta/status cards */ .retriex-meta-card, .retriex-alert { - margin: 0.65rem 0; - border: 1px solid rgba(134, 183, 254, 0.26); + margin: 0 0 1.5rem -.5rem; + border: 0; border-radius: 14px; background: rgba(13, 17, 23, 0.72); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18); diff --git a/src/Agent/AgentRunner.php b/src/Agent/AgentRunner.php index 00080a9..0ed4298 100644 --- a/src/Agent/AgentRunner.php +++ b/src/Agent/AgentRunner.php @@ -684,12 +684,12 @@ final readonly class AgentRunner 'meta' ); - if ($sources !== []) { + /* if ($sources !== []) { yield $this->emitSources( $sources, $this->agentRunnerConfig->getSourcesPrefix() ); - } + }*/ if ($this->debug) { yield $this->systemMsg($finalPrompt, 'debug');