change Remix AI to RemixAI

pull/5386/head
ryestew 2 weeks ago committed by Aniket
parent 68f428281b
commit a59c052733
  1. 2
      apps/remix-ide/src/app/plugins/remixAIPlugin.tsx
  2. 2
      apps/remix-ide/src/app/tabs/locales/en/remixUiTabs.json
  3. 2
      apps/remixdesktop/src/plugins/remixAIDektop.ts
  4. 4
      libs/remix-ui/remix-ai/src/lib/components/Default.tsx
  5. 2
      libs/remix-ui/remix-ai/src/lib/components/ModelSelection.tsx

@ -13,7 +13,7 @@ type chatRequestBufferT<T> = {
const profile = {
name: 'remixAI',
displayName: 'Remix AI',
displayName: 'RemixAI',
methods: ['code_generation', 'code_completion',
"solidity_answer", "code_explaining",
"code_insertion", "error_explaining",

@ -6,7 +6,7 @@
"remixUiTabs.tooltipText5": "Explain the contract(s) in current file [BETA]",
"remixUiTabs.tooltipText6": "Enable RemixAI Copilot [BETA]",
"remixUiTabs.tooltipText7": "Disable RemixAI Copilot [BETA]",
"remixUiTabs.tooltipText8": "Remix AI Tools Documentation",
"remixUiTabs.tooltipText8": "RemixAI Tools Documentation",
"remixUiTabs.tooltipText9": "Configure scripting dependencies",
"remixUiTabs.tooltipTextDisabledCopilot": "To use RemixAI Copilot, choose a .sol file",
"remixUiTabs.zoomOut": "Zoom out",

@ -50,7 +50,7 @@ class RemixAIDesktopPluginClient extends ElectronBasePluginClient {
}
async enable (){
console.log('Remix AI desktop plugin enabled')
console.log('RemixAI desktop plugin enabled')
this.emit('enabled')
}

@ -49,7 +49,7 @@ export const Default = (props) => {
const initialMessages: ChatItem[] = [
{
role: 'assistant',
message: 'Welcome to Remix AI! How can I assist you today?'
message: 'Welcome to RemixAI! How can I assist you today?'
}
];
const adapter = useAsStreamAdapter(send, []);
@ -60,7 +60,7 @@ export const Default = (props) => {
adapter={ adapter }
personaOptions={{
assistant: {
name: "Remix AI",
name: "RemixAI",
tagline: "Your Web3 AI Assistant",
avatar: assistantAvatar
},

@ -6,7 +6,7 @@
// The user can select a model from the dropdown list
// the panel controlling the model selection can be hidden or shown
// Once selected, the model is either loaded from the local storage or downloaded
// the remix ai desktop plugin provided the interface for storing the model in the local storage after downloading
// the RemixAI desktop plugin provided the interface for storing the model in the local storage after downloading
import React, { useState, useEffect } from 'react';
import { Select, Input, Button, Icon } from 'antd';

Loading…
Cancel
Save