You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Copy file name to clipboardExpand all lines: app/dashboard/ai-tools/page.tsx
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ export default function AIToolsPage() {
24
24
{
25
25
role: "assistant",
26
26
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?",
28
28
timestamp: newDate().toLocaleTimeString(),
29
29
},
30
30
])
@@ -73,11 +73,11 @@ export default function AIToolsPage() {
73
73
74
74
setMessages((prev)=>[...prev,aiMessage])
75
75
}catch(error){
76
-
console.error("Error calling Gemini API:",error)
76
+
console.error("Error calling AI API:",error)
77
77
consterrorMessage: Message={
78
78
role: "assistant",
79
79
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).",
81
81
timestamp: newDate().toLocaleTimeString(),
82
82
}
83
83
setMessages((prev)=>[...prev,errorMessage])
@@ -94,7 +94,7 @@ export default function AIToolsPage() {
0 commit comments