File tree 2 files changed +9
-10
lines changed
2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ import { service } from '@ember/service';
2
2
3
3
import format from 'date-fns/format' ;
4
4
5
- import { aiBotUsername } from '@cardstack/runtime-common' ;
6
-
7
5
import {
8
6
APP_BOXEL_ACTIVE_LLM ,
9
7
DEFAULT_LLM ,
@@ -31,14 +29,8 @@ export default class CreateAIAssistantRoomCommand extends HostBaseCommand<
31
29
input : BaseCommandModule . CreateAIAssistantRoomInput ,
32
30
) : Promise < BaseCommandModule . CreateAIAssistantRoomResult > {
33
31
let { matrixService } = this ;
34
- let { userId } = matrixService ;
35
- if ( ! userId ) {
36
- throw new Error (
37
- `bug: there is no userId associated with the matrix client` ,
38
- ) ;
39
- }
40
- let server = userId ! . split ( ':' ) [ 1 ] ;
41
- let aiBotFullId = `@${ aiBotUsername } :${ server } ` ;
32
+ let userId = matrixService . userId ;
33
+ let aiBotFullId = matrixService . aiBotUserId ;
42
34
let { room_id : roomId } = await matrixService . createRoom ( {
43
35
preset : matrixService . privateChatPreset ,
44
36
invite : [ aiBotFullId ] ,
Original file line number Diff line number Diff line change @@ -26,7 +26,9 @@ import {
26
26
baseRealm ,
27
27
LooseCardResource ,
28
28
ResolvedCodeRef ,
29
+ aiBotUsername ,
29
30
} from '@cardstack/runtime-common' ;
31
+
30
32
import {
31
33
basicMappings ,
32
34
generateJsonSchemaForCardType ,
@@ -233,6 +235,11 @@ export default class MatrixService extends Service {
233
235
return this . client . getUserId ( ) ;
234
236
}
235
237
238
+ get aiBotUserId ( ) {
239
+ let server = this . userId ! . split ( ':' ) [ 1 ] ;
240
+ return `@${ aiBotUsername } :${ server } ` ;
241
+ }
242
+
236
243
get userName ( ) {
237
244
return this . userId ? getMatrixUsername ( this . userId ) : null ;
238
245
}
You can’t perform that action at this time.
0 commit comments