|
1 | | -import { VSCodeButton } from "@vscode/webview-ui-toolkit/react" |
| 1 | +import { VSCodeButton, VSCodeLink } from "@vscode/webview-ui-toolkit/react" |
2 | 2 | import debounce from "debounce" |
3 | 3 | import { useCallback, useEffect, useMemo, useRef, useState } from "react" |
4 | 4 | import { useDeepCompareEffect, useEvent, useMount } from "react-use" |
@@ -797,11 +797,14 @@ const ChatView = ({ isHidden, showAnnouncement, hideAnnouncement, showHistoryVie |
797 | 797 | <div style={{ padding: "0 20px", flexShrink: 0 }}> |
798 | 798 | <h2>What can I do for you?</h2> |
799 | 799 | <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. |
805 | 808 | </p> |
806 | 809 | </div> |
807 | 810 | {taskHistory.length > 0 && <HistoryPreview showHistoryView={showHistoryView} />} |
|
0 commit comments