Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion admin/src/views/ChatView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2759,7 +2759,7 @@ class="w-4 h-4 rounded border flex items-center justify-center shrink-0"
</div>

<!-- Compact input when panels open and no session selected -->
<div v-else-if="isChatOnly && !currentSessionId && (showBranchTree || showSettings)" class="flex-1 flex items-center justify-center px-4">
<div v-else-if="isChatOnly && !currentSessionId && (showBranchTree || showSettings)" class="shrink-0 flex items-center justify-center px-4 py-3">
<div class="w-full max-w-md">
<div class="flex items-end gap-2">
<textarea
Expand Down
6 changes: 6 additions & 0 deletions cloud_llm_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,12 @@ class OpenAICompatibleProvider(BaseLLMProvider):
def __init__(self, config: dict):
super().__init__(config)

# Bridge CLI runs with --tools "" (no tool access), so tool calls
# are silently ignored. Disable supports_tools to fall back to
# one-shot RAG injection instead of agentic loop.
if self.provider_type == "claude_bridge":
self.supports_tools = False

# Bridge runs on localhost — must bypass global VLESS/HTTP proxy.
# GeminiProvider sets HTTP_PROXY globally for xray; httpx picks it up
# and routes localhost requests through the proxy, which fails.
Expand Down
Loading