Skip to content

Commit

Permalink
String change in ChatView.tsx and WelcomeView.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
owao committed Feb 3, 2025
1 parent f963393 commit d4c80f5
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 20 deletions.
27 changes: 19 additions & 8 deletions webview-ui/src/components/chat/ChatView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -761,16 +761,27 @@ const ChatView = ({ isHidden, showAnnouncement, hideAnnouncement, showHistoryVie
<div style={{ padding: "0 20px", flexShrink: 0 }}>
<h2>What can I do for you?</h2>
<p>
Thanks to{" "}
Thanks to Claude's system prompt compression, locally loaded, and even reasonning models like{" "}
<VSCodeLink
href="https://www-cdn.anthropic.com/fed9cc193a14b84131812372d8d5857f8f304c52/Model_Card_Claude_3_Addendum.pdf"
href="https://huggingface.co/FuseAI/FuseO1-DeepSeekR1-QwQ-SkyT1-32B-Preview-GGUF"
style={{ display: "inline" }}>
Claude 3.5 Sonnet's agentic coding capabilities,
</VSCodeLink>{" "}
I can handle complex software development tasks step-by-step. With tools that let me create & edit
files, explore complex projects, use the browser, and execute terminal commands (after you grant
permission), I can assist you in ways that go beyond code completion or tech support. I can even use
MCP to create new tools and extend my own capabilities.
FuseO1-DeepSeekR1-QwQ-SkyT1-32B-Preview-GGUF
</VSCodeLink>
can now fuel Cline too. Web scraping mode is only available for Claude. The tested quant level was
Q4_K_M, and you can find more details on the original model creators' GGUF quants page:{" "}
<VSCodeLink
href="https://huggingface.co/FuseAI/FuseO1-DeepSeekR1-QwQ-SkyT1-32B-Preview-GGUF"
style={{ display: "inline" }}>
GGUF Quant Page
</VSCodeLink>
. Additionally,{" "}
<VSCodeLink
href="https://huggingface.co/FuseAI/FuseO1-DeepSeekR1-Qwen2.5-Coder-32B-Preview-GGUF"
style={{ display: "inline" }}>
FuseO1-DeepSeekR1-Qwen2.5-Coder-32B-Preview
</VSCodeLink>
scored a bit lower on the bench results and may not follow instructions as closely; That said, both
models can be complementary.
</p>
</div>
{taskHistory.length > 0 && <HistoryPreview showHistoryView={showHistoryView} />}
Expand Down
47 changes: 35 additions & 12 deletions webview-ui/src/components/welcome/WelcomeView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,42 @@ const WelcomeView = () => {
overflow: "auto",
}}>
<h2>Hi, I'm Cline</h2>
<p>
I can do all kinds of tasks thanks to the latest breakthroughs in{" "}
<VSCodeLink
href="https://www-cdn.anthropic.com/fed9cc193a14b84131812372d8d5857f8f304c52/Model_Card_Claude_3_Addendum.pdf"
style={{ display: "inline" }}>
Claude 3.5 Sonnet's agentic coding capabilities
</VSCodeLink>{" "}
and access to tools that let me create & edit files, explore complex projects, use the browser, and execute
terminal commands (with your permission, of course). I can even use MCP to create new tools and extend my own
capabilities.
</p>
<div style={{ padding: "0 20px", flexShrink: 0 }}>
<h2>What can I do for you?</h2>
<p>
Thanks to Claude's system prompt compression, locally loaded, and even reasoning models like{" "}
<VSCodeLink
href="https://huggingface.co/FuseAI/FuseO1-DeepSeekR1-QwQ-SkyT1-32B-Preview-GGUF"
style={{ display: "inline" }}>
FuseO1-DeepSeekR1-QwQ-SkyT1-32B-Preview-GGUF
</VSCodeLink>
can now fuel Cline too. Web scraping mode is only available for Claude. The tested quant level was Q4_K_M,
and you can find more details on the original model creators' GGUF quants page:{" "}
<VSCodeLink
href="https://huggingface.co/FuseAI/FuseO1-DeepSeekR1-QwQ-SkyT1-32B-Preview-GGUF"
style={{ display: "inline" }}>
GGUF Quant Page
</VSCodeLink>
. Additionally,{" "}
<VSCodeLink
href="https://huggingface.co/FuseAI/FuseO1-DeepSeekR1-Qwen2.5-Coder-32B-Preview-GGUF"
style={{ display: "inline" }}>
FuseO1-DeepSeekR1-Qwen2.5-Coder-32B-Preview
</VSCodeLink>
scored a bit lower on the bench results and may not follow instructions as closely; That said, both models
can be complementary.
</p>
</div>

<b>To get started, this extension needs an API provider for Claude 3.5 Sonnet.</b>
<p style={{ marginTop: "10px" }}>
Local models like <strong>FuseO1-DeepSeekR1-QwQ-SkyT1-32B-Preview-GGUF</strong> (tested with Q4_K_M
quantization) can be run directly on your machine. This model is available from{" "}
<VSCodeLink href="https://huggingface.co/FuseAI/FuseO1-DeepSeekR1-QwQ-SkyT1-32B-Preview-GGUF">
Hugging Face
</VSCodeLink>
and provides similar capabilities to Claude, with slight differences in output style between flash and coder
versions.
</p>

<div
style={{
Expand Down

0 comments on commit d4c80f5

Please sign in to comment.