diff --git a/packages/experiments-realm/AiAppGenerator/create-product-requirements-command.ts b/packages/experiments-realm/AiAppGenerator/create-product-requirements-command.ts index e1eee619b0..fbae99a397 100644 --- a/packages/experiments-realm/AiAppGenerator/create-product-requirements-command.ts +++ b/packages/experiments-realm/AiAppGenerator/create-product-requirements-command.ts @@ -11,7 +11,7 @@ import { SkillCard } from 'https://cardstack.com/base/skill-card'; import SaveCardCommand from '@cardstack/boxel-host/commands/save-card'; import PatchCardCommand from '@cardstack/boxel-host/commands/patch-card'; import ReloadCardCommand from '@cardstack/boxel-host/commands/reload-card'; -import CreateAIAssistantRoomCommand from '@cardstack/boxel-host/commands/create-ai-assistant-room'; +import CreateAiAssistantRoomCommand from '@cardstack/boxel-host/commands/create-ai-assistant-room'; import AddSkillsToRoomCommand from '@cardstack/boxel-host/commands/add-skills-to-room'; import SendAiAssistantMessageCommand from '@cardstack/boxel-host/commands/send-ai-assistant-message'; import OpenAiAssistantRoomCommand from '@cardstack/boxel-host/commands/open-ai-assistant-room'; @@ -72,7 +72,7 @@ export default class CreateProductRequirementsInstance extends Command< cardType: ProductRequirementDocument, }); - let createRoomCommand = new CreateAIAssistantRoomCommand( + let createRoomCommand = new CreateAiAssistantRoomCommand( this.commandContext, ); let { roomId } = await createRoomCommand.execute({ diff --git a/packages/experiments-realm/product-requirement-document.gts b/packages/experiments-realm/product-requirement-document.gts index 81858af57c..ad272eeb5c 100644 --- a/packages/experiments-realm/product-requirement-document.gts +++ b/packages/experiments-realm/product-requirement-document.gts @@ -17,7 +17,7 @@ import { tracked } from '@glimmer/tracking'; import { AppCard } from './app-card'; import ClipboardListIcon from '@cardstack/boxel-icons/clipboard-list'; -import CreateAIAssistantRoomCommand from '@cardstack/boxel-host/commands/create-ai-assistant-room'; +import CreateAiAssistantRoomCommand from '@cardstack/boxel-host/commands/create-ai-assistant-room'; import ShowCardCommand from '@cardstack/boxel-host/commands/show-card'; import SaveCardCommand from '@cardstack/boxel-host/commands/save-card'; import WriteTextFileCommand from '@cardstack/boxel-host/commands/write-text-file'; @@ -252,7 +252,7 @@ class Isolated extends Component { } this.errorMessage = ''; try { - let createRoomCommand = new CreateAIAssistantRoomCommand(commandContext); + let createRoomCommand = new CreateAiAssistantRoomCommand(commandContext); let { roomId } = await createRoomCommand.execute({ name: 'AI Assistant Room', }); diff --git a/packages/host/app/commands/create-ai-assistant-room.ts b/packages/host/app/commands/create-ai-assistant-room.ts index c5efaa05f0..6160f0483c 100644 --- a/packages/host/app/commands/create-ai-assistant-room.ts +++ b/packages/host/app/commands/create-ai-assistant-room.ts @@ -15,7 +15,7 @@ import HostBaseCommand from '../lib/host-base-command'; import type MatrixService from '../services/matrix-service'; -export default class CreateAIAssistantRoomCommand extends HostBaseCommand< +export default class CreateAiAssistantRoomCommand extends HostBaseCommand< typeof BaseCommandModule.CreateAIAssistantRoomInput, typeof BaseCommandModule.CreateAIAssistantRoomResult > { diff --git a/packages/host/app/components/ai-assistant/panel.gts b/packages/host/app/components/ai-assistant/panel.gts index f9f2a8ca2b..d5175746de 100644 --- a/packages/host/app/components/ai-assistant/panel.gts +++ b/packages/host/app/components/ai-assistant/panel.gts @@ -27,7 +27,7 @@ import ENV from '@cardstack/host/config/environment'; import OperatorModeStateService from '@cardstack/host/services/operator-mode-state-service'; import AddSkillsToRoomCommand from '../../commands/add-skills-to-room'; -import CreateAIAssistantRoomCommand from '../../commands/create-ai-assistant-room'; +import CreateAiAssistantRoomCommand from '../../commands/create-ai-assistant-room'; import { Message } from '../../lib/matrix-classes/message'; import { isMatrixError, eventDebounceMs } from '../../lib/matrix-utils'; import CommandService from '../../services/command-service'; @@ -458,7 +458,7 @@ export default class AiAssistantPanel extends Component { private doCreateRoom = restartableTask(async (name: string) => { try { - let createRoomCommand = new CreateAIAssistantRoomCommand( + let createRoomCommand = new CreateAiAssistantRoomCommand( this.commandService.commandContext, ); let { roomId } = await createRoomCommand.execute({ name }); diff --git a/packages/host/tests/cards/ai-command-example.gts b/packages/host/tests/cards/ai-command-example.gts index 41d4952c4a..8dd98dc4f1 100644 --- a/packages/host/tests/cards/ai-command-example.gts +++ b/packages/host/tests/cards/ai-command-example.gts @@ -1,6 +1,6 @@ import { on } from '@ember/modifier'; -import CreateAIAssistantRoomCommand from '@cardstack/boxel-host/commands/create-ai-assistant-room'; +import CreateAiAssistantRoomCommand from '@cardstack/boxel-host/commands/create-ai-assistant-room'; import SendAiAssistantMessageCommand from '@cardstack/boxel-host/commands/send-ai-assistant-message'; import { Button } from '@cardstack/boxel-ui/components'; @@ -57,7 +57,7 @@ export class AiCommandExample extends CardDef { let getWeatherCommand = new GetWeatherCommand(commandContext); - let createAIAssistantRoomCommand = new CreateAIAssistantRoomCommand( + let createAIAssistantRoomCommand = new CreateAiAssistantRoomCommand( commandContext, ); let { roomId } = await createAIAssistantRoomCommand.execute({ diff --git a/packages/host/tests/cards/person.gts b/packages/host/tests/cards/person.gts index e401189022..5dc157ab16 100644 --- a/packages/host/tests/cards/person.gts +++ b/packages/host/tests/cards/person.gts @@ -1,6 +1,6 @@ import { on } from '@ember/modifier'; -import CreateAIAssistantRoomCommand from '@cardstack/boxel-host/commands/create-ai-assistant-room'; +import CreateAiAssistantRoomCommand from '@cardstack/boxel-host/commands/create-ai-assistant-room'; import SendAiAssistantMessageCommand from '@cardstack/boxel-host/commands/send-ai-assistant-message'; import SwitchSubmodeCommand from '@cardstack/boxel-host/commands/switch-submode'; @@ -38,7 +38,7 @@ export class Person extends CardDef { console.error('No command context found'); return; } - let createAIAssistantRoomCommand = new CreateAIAssistantRoomCommand( + let createAIAssistantRoomCommand = new CreateAiAssistantRoomCommand( commandContext, ); let { roomId } = await createAIAssistantRoomCommand.execute({