Skip to content

Commit d584a8b

Browse files
committed
Modify copy
1 parent 112eedd commit d584a8b

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

webview-ui/src/components/chat/ChatView.tsx

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { VSCodeButton } from "@vscode/webview-ui-toolkit/react"
1+
import { VSCodeButton, VSCodeLink } from "@vscode/webview-ui-toolkit/react"
22
import debounce from "debounce"
33
import { useCallback, useEffect, useMemo, useRef, useState } from "react"
44
import { useDeepCompareEffect, useEvent, useMount } from "react-use"
@@ -797,11 +797,14 @@ const ChatView = ({ isHidden, showAnnouncement, hideAnnouncement, showHistoryVie
797797
<div style={{ padding: "0 20px", flexShrink: 0 }}>
798798
<h2>What can I do for you?</h2>
799799
<p>
800-
Thanks to Claude 3.7 Sonnet's agentic coding capabilities, I can handle complex software development
801-
tasks step-by-step. With tools that let me create & edit files, explore complex projects, use the
802-
browser, and execute terminal commands (after you grant permission), I can assist you in ways that go
803-
beyond code completion or tech support. I can even use MCP to create new tools and extend my own
804-
capabilities.
800+
Thanks to{" "}
801+
<VSCodeLink href="https://www.anthropic.com/claude/sonnet" style={{ display: "inline" }}>
802+
Claude 3.7 Sonnet's
803+
</VSCodeLink>
804+
agentic coding capabilities, I can handle complex software development tasks step-by-step. With tools
805+
that let me create & edit files, explore complex projects, use a browser, and execute terminal
806+
commands (after you grant permission), I can assist you in ways that go beyond code completion or tech
807+
support. I can even use MCP to create new tools and extend my own capabilities.
805808
</p>
806809
</div>
807810
{taskHistory.length > 0 && <HistoryPreview showHistoryView={showHistoryView} />}

0 commit comments

Comments
 (0)