Skip to content

Commit

Permalink
name change from couchbase iq to capella
Browse files Browse the repository at this point in the history
  • Loading branch information
lokesh-couchbase committed Jan 23, 2024
1 parent 7d086e3 commit e02e5a9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@
},
{
"command": "vscode-couchbase.iq.logout",
"title": "Logout couchbase iQ",
"title": "Logout capella iQ",
"category": "Couchbase",
"icon": "$(sign-out)"
},
Expand Down Expand Up @@ -1000,7 +1000,7 @@
},
{
"id": "couchbase-iq",
"name": "Couchbase iQ (Beta)",
"name": "Capella iQ (Beta)",
"type": "webview"
},
{
Expand Down
4 changes: 2 additions & 2 deletions src/commands/iq/iqLoginhandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ export const verifyOrganization = async (orgId: string): Promise<any> => {
if(!orgDetails.iq || orgDetails.iq.enabled === false) {
return {
isOrgVerified: false,
errorMessage: `Couchbase iQ is not enabled for this organization, Please enable it on <a href="cloud.couchbase.com"> cloud.couchbase.com </a>`
errorMessage: `Capella iQ is not enabled for this organization, Please enable it on cloud.couchbase.com`
};
}
if(orgDetails.iq.other.isTermsAcceptedForOrg === false) {
return {
isOrgVerified: false,
errorMessage: `Terms and conditions to use Couchbase iQ are not accepted for this organization, Please accept it on <a href="cloud.couchbase.com"> cloud.couchbase.com </a>`
errorMessage: `Terms and conditions to use Capella iQ are not accepted for this organization, Please accept it on cloud.couchbase.com`
};
}
return {
Expand Down
4 changes: 2 additions & 2 deletions src/reactViews/iq/pages/chatscreen/IqChat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const IqChat = ({ org, setIsLoading }) => {
userChats: [
{
message:
"Greetings, I am Couchbase iQ! Feel free to inquire about anything related to Couchbase.",
"Greetings, I am Capella iQ! Feel free to inquire about anything related to Couchbase.",
sender: "assistant",
msgDate: (Date.now() / 1000).toFixed(0),
qaId: "firstMessage",
Expand Down Expand Up @@ -276,7 +276,7 @@ const IqChat = ({ org, setIsLoading }) => {
userChats: [
{
message:
"Greetings, I am Couchbase iQ! Feel free to inquire about anything related to Couchbase.",
"Greetings, I am Capella iQ! Feel free to inquire about anything related to Couchbase.",
sender: "assistant",
msgDate: (Date.now() / 1000).toFixed(0),
qaId: "firstMessage",
Expand Down
2 changes: 1 addition & 1 deletion src/reactViews/iq/pages/login/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export const Login = ({ setIsLoading, logoutReason = "" }) => {

return (
<div className="login-page">
<h1>Welcome to Couchbase iQ</h1>
<h1>Welcome to Capella iQ</h1>
<p>
Need a productivity boost? Try chatting with Capella iQ, our LLM
powered AI Chat Service. Capella iQ is a generative AI-powered
Expand Down
2 changes: 1 addition & 1 deletion src/reactViews/iq/pages/login/LoginSingleClick.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const LoginSingleClick = ({ userId, setIsLoading, setShowPage, logoutReason = ""

return (
<div className="login-page">
<h1>Welcome to Couchbase iQ</h1>
<h1>Welcome to Capella iQ</h1>
<p>
Need a productivity boost? Try chatting with Capella iQ, our LLM
powered AI Chat Service. Capella iQ is a generative AI-powered
Expand Down

0 comments on commit e02e5a9

Please sign in to comment.