Skip to content

Commit 2dfb24d

Browse files
committed
modify: Update AI assistant branding to DeepSeek AI
Replaced references to Google Gemini with DeepSeek AI in user messages, error handling, and UI text to reflect the change in AI provider. Updated environment variable instructions accordingly.
1 parent 167bfb5 commit 2dfb24d

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

app/dashboard/ai-tools/page.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default function AIToolsPage() {
2424
{
2525
role: "assistant",
2626
content:
27-
"Hello! I'm your AI development assistant powered by Google Gemini. I can help you with code generation, debugging, architecture decisions, and more. What would you like to work on today?",
27+
"Hello! I'm your AI development assistant powered by DeepSeek AI. I can help you with code generation, debugging, architecture decisions, and more. What would you like to work on today?",
2828
timestamp: new Date().toLocaleTimeString(),
2929
},
3030
])
@@ -73,11 +73,11 @@ export default function AIToolsPage() {
7373

7474
setMessages((prev) => [...prev, aiMessage])
7575
} catch (error) {
76-
console.error("Error calling Gemini API:", error)
76+
console.error("Error calling AI API:", error)
7777
const errorMessage: Message = {
7878
role: "assistant",
7979
content:
80-
"Sorry, I encountered an error. Please make sure you have set up your Google Gemini API key in the environment variables (GEMINI_API_KEY).",
80+
"Sorry, I encountered an error. Please make sure you have set up your DeepSeek API key in the environment variables (DEEPSEEK_API_KEY).",
8181
timestamp: new Date().toLocaleTimeString(),
8282
}
8383
setMessages((prev) => [...prev, errorMessage])
@@ -94,7 +94,7 @@ export default function AIToolsPage() {
9494
<Sparkles className="h-8 w-8 text-primary" />
9595
<div>
9696
<h1 className="text-4xl font-bold">{t.nav.aiTools}</h1>
97-
<p className="text-muted-foreground">Your intelligent development assistant powered by Google Gemini</p>
97+
<p className="text-muted-foreground">Your intelligent development assistant powered by DeepSeek AI</p>
9898
</div>
9999
</div>
100100
</div>
@@ -152,7 +152,7 @@ export default function AIToolsPage() {
152152
</Button>
153153
</div>
154154
<p className="text-xs text-muted-foreground mt-2">
155-
Powered by Google Gemini AI. Responses are generated in real-time.
155+
Powered by DeepSeek AI. Responses are generated in real-time.
156156
</p>
157157
</div>
158158
</div>

0 commit comments

Comments
 (0)