Skip to content

Commit ffdf75c

Browse files
committed
feat(server):jovu onboarding
1 parent 1188056 commit ffdf75c

File tree

13 files changed

+89
-31
lines changed

13 files changed

+89
-31
lines changed

ee/packages/git-sync-manager/src/models.ts

+6
Original file line numberDiff line numberDiff line change
@@ -739,6 +739,11 @@ export enum EnumAssistantMessageRole {
739739
User = 'User'
740740
}
741741

742+
export enum EnumAssistantMessageType {
743+
Default = 'Default',
744+
Onboarding = 'Onboarding'
745+
}
746+
742747
export enum EnumAuthProviderType {
743748
Auth0 = 'Auth0',
744749
Http = 'Http',
@@ -2749,6 +2754,7 @@ export enum Role {
27492754

27502755
export type SendAssistantMessageInput = {
27512756
message: Scalars['String']['input'];
2757+
messageType?: InputMaybe<EnumAssistantMessageType>;
27522758
threadId?: InputMaybe<Scalars['String']['input']>;
27532759
};
27542760

libs/util/code-gen-types/src/models.ts

+6
Original file line numberDiff line numberDiff line change
@@ -739,6 +739,11 @@ export enum EnumAssistantMessageRole {
739739
User = 'User'
740740
}
741741

742+
export enum EnumAssistantMessageType {
743+
Default = 'Default',
744+
Onboarding = 'Onboarding'
745+
}
746+
742747
export enum EnumAuthProviderType {
743748
Auth0 = 'Auth0',
744749
Http = 'Http',
@@ -2749,6 +2754,7 @@ export enum Role {
27492754

27502755
export type SendAssistantMessageInput = {
27512756
message: Scalars['String']['input'];
2757+
messageType?: InputMaybe<EnumAssistantMessageType>;
27522758
threadId?: InputMaybe<Scalars['String']['input']>;
27532759
};
27542760

packages/amplication-cli/src/models.ts

+6
Original file line numberDiff line numberDiff line change
@@ -739,6 +739,11 @@ export enum EnumAssistantMessageRole {
739739
User = 'User'
740740
}
741741

742+
export enum EnumAssistantMessageType {
743+
Default = 'Default',
744+
Onboarding = 'Onboarding'
745+
}
746+
742747
export enum EnumAuthProviderType {
743748
Auth0 = 'Auth0',
744749
Http = 'Http',
@@ -2749,6 +2754,7 @@ export enum Role {
27492754

27502755
export type SendAssistantMessageInput = {
27512756
message: Scalars['String']['input'];
2757+
messageType?: InputMaybe<EnumAssistantMessageType>;
27522758
threadId?: InputMaybe<Scalars['String']['input']>;
27532759
};
27542760

packages/amplication-client/src/models.ts

+6
Original file line numberDiff line numberDiff line change
@@ -742,6 +742,11 @@ export enum EnumAssistantMessageRole {
742742
User = 'User'
743743
}
744744

745+
export enum EnumAssistantMessageType {
746+
Default = 'Default',
747+
Onboarding = 'Onboarding'
748+
}
749+
745750
export enum EnumAuthProviderType {
746751
Auth0 = 'Auth0',
747752
Http = 'Http',
@@ -2752,6 +2757,7 @@ export enum Role {
27522757

27532758
export type SendAssistantMessageInput = {
27542759
message: Scalars['String']['input'];
2760+
messageType?: InputMaybe<EnumAssistantMessageType>;
27552761
threadId?: InputMaybe<Scalars['String']['input']>;
27562762
};
27572763

packages/amplication-server/src/core/assistant/assistant.resolver.ts

+2-16
Original file line numberDiff line numberDiff line change
@@ -46,22 +46,8 @@ export class AssistantResolver {
4646
return this.service.processMessageWithStream(
4747
args.data.message,
4848
args.data.threadId,
49-
args.context
49+
args.context,
50+
args.data.messageType
5051
);
5152
}
52-
53-
// @Mutation(() => AssistantThread)
54-
// async sendAssistantMessage(
55-
// @UserEntity() user: User,
56-
// @Args() args: SendAssistantMessageArgs
57-
// ): Promise<AssistantThread> {
58-
// args.context.user = user;
59-
// args.context.workspaceId = user.workspace.id;
60-
61-
// return this.service.processMessage(
62-
// args.data.message,
63-
// args.data.threadId,
64-
// args.context
65-
// );
66-
// }
6753
}

packages/amplication-server/src/core/assistant/assistant.service.ts

+17-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import { AssistantMessageDelta } from "./dto/AssistantMessageDelta";
1515
import { AssistantThread } from "./dto/AssistantThread";
1616
import { EnumAssistantFunctions } from "./dto/EnumAssistantFunctions";
1717
import { GraphqlSubscriptionPubSubKafkaService } from "./graphqlSubscriptionPubSubKafka.service";
18+
import { EnumAssistantMessageType } from "./dto/EnumAssistantMessageType";
1819

1920
export const MESSAGE_UPDATED_EVENT = "assistantMessageUpdated";
2021

@@ -23,6 +24,16 @@ export const PLUGIN_LATEST_VERSION_TAG = "latest";
2324
const STREAM_ERROR_MESSAGE =
2425
"It looks like we're experiencing a high demand right now, which might be affecting our connection to the AI model. Please give it a little time and try again later. We appreciate your patience and understanding as we work to resolve this. Thank you! 🙏";
2526

27+
const ASSISTANT_INSTRUCTIONS: { [key in EnumAssistantMessageType]: string } = {
28+
[EnumAssistantMessageType.Default]: ``,
29+
[EnumAssistantMessageType.Onboarding]: `
30+
The user is creating a new service and you need to generate everything needed for the service, including entities, fields, relations, apis, and install plugins.
31+
You can suggest names and different configuration as needed.
32+
After you create entities, also create fields and relations for all entities. Aim to create as many fields and relations as needed.
33+
Install any plugins that are needed for the service.
34+
Your reply should start with "Welcome to Amplication!" and include a brief introduction to the service and the entities you created.`,
35+
};
36+
2637
export type MessageLoggerContext = {
2738
messageContext: {
2839
workspaceId: string;
@@ -149,7 +160,8 @@ export class AssistantService {
149160
async processMessageWithStream(
150161
messageText: string,
151162
threadId: string,
152-
context: AssistantContext
163+
context: AssistantContext,
164+
messageType?: EnumAssistantMessageType
153165
): Promise<AssistantThread> {
154166
await this.validateAndReportUsage(context);
155167

@@ -165,7 +177,10 @@ export class AssistantService {
165177
// eslint-disable-next-line @typescript-eslint/naming-convention
166178
assistant_id: this.assistantId,
167179
// eslint-disable-next-line @typescript-eslint/naming-convention
168-
additional_instructions: `The following context is available:
180+
additional_instructions: `${
181+
messageType && ASSISTANT_INSTRUCTIONS[messageType]
182+
}.
183+
The following context is available:
169184
${JSON.stringify(preparedThread.shortContext)}`,
170185
});
171186

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { registerEnumType } from "@nestjs/graphql";
2+
3+
export enum EnumAssistantMessageType {
4+
Default = "Default",
5+
Onboarding = "Onboarding",
6+
}
7+
8+
registerEnumType(EnumAssistantMessageType, {
9+
name: "EnumAssistantMessageType",
10+
});

packages/amplication-server/src/core/assistant/dto/SendAssistantMessageInput.ts

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { Field, InputType } from "@nestjs/graphql";
2+
import { EnumAssistantMessageType } from "./EnumAssistantMessageType";
23

34
@InputType()
45
export class SendAssistantMessageInput {
@@ -11,4 +12,9 @@ export class SendAssistantMessageInput {
1112
nullable: true,
1213
})
1314
threadId?: string;
15+
16+
@Field(() => EnumAssistantMessageType, {
17+
nullable: true,
18+
})
19+
messageType?: EnumAssistantMessageType;
1420
}

packages/amplication-server/src/core/auth/auth.service.ts

+10-5
Original file line numberDiff line numberDiff line change
@@ -532,12 +532,17 @@ export class AuthService {
532532
name: string,
533533
account: Account
534534
): Promise<Workspace & { users: AuthUser[] }> {
535-
const workspace = await this.workspaceService.createWorkspace(account.id, {
536-
data: {
537-
name,
535+
const workspace = await this.workspaceService.createWorkspace(
536+
account.id,
537+
{
538+
data: {
539+
name,
540+
},
541+
include: WORKSPACE_INCLUDE,
538542
},
539-
include: WORKSPACE_INCLUDE,
540-
});
543+
undefined,
544+
true
545+
);
541546

542547
return workspace as unknown as Workspace & { users: AuthUser[] };
543548
}

packages/amplication-server/src/core/resource/resource.service.ts

+1-6
Original file line numberDiff line numberDiff line change
@@ -596,12 +596,7 @@ export class ResourceService {
596596
authProvider: EnumAuthProviderType.Jwt, //@todo: remove this property
597597
},
598598

599-
gitRepository: {
600-
isOverrideGitRepository: false,
601-
name: "",
602-
resourceId: "",
603-
gitOrganizationId: "",
604-
},
599+
gitRepository: null,
605600
},
606601
};
607602

packages/amplication-server/src/core/workspace/workspace.service.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,8 @@ export class WorkspaceService {
189189
async createWorkspace(
190190
accountId: string,
191191
args: Prisma.WorkspaceCreateArgs,
192-
currentWorkspaceId?: string
192+
currentWorkspaceId?: string,
193+
connectToDemoRepo?: boolean
193194
): Promise<Workspace> {
194195
if (await this.shouldBlockWorkspaceCreation(currentWorkspaceId)) {
195196
const message = "Your current plan does not allow creating workspaces";
@@ -226,7 +227,7 @@ export class WorkspaceService {
226227
await this.billingService.provisionCustomer(workspace.id);
227228

228229
const [user] = workspace.users;
229-
await this.projectService.createProject(
230+
const newProject = await this.projectService.createProject(
230231
{
231232
data: {
232233
name: "Sample Project",
@@ -236,6 +237,10 @@ export class WorkspaceService {
236237
user.id
237238
);
238239

240+
if (connectToDemoRepo) {
241+
await this.projectService.createDemoRepo(newProject.id);
242+
}
243+
239244
await this.billingService.reportUsage(
240245
workspace.id,
241246
BillingFeature.TeamMembers

packages/amplication-server/src/schema.graphql

+6
Original file line numberDiff line numberDiff line change
@@ -703,6 +703,11 @@ enum EnumAssistantMessageRole {
703703
User
704704
}
705705

706+
enum EnumAssistantMessageType {
707+
Default
708+
Onboarding
709+
}
710+
706711
enum EnumAuthProviderType {
707712
Auth0
708713
Http
@@ -1942,6 +1947,7 @@ enum Role {
19421947

19431948
input SendAssistantMessageInput {
19441949
message: String!
1950+
messageType: EnumAssistantMessageType
19451951
threadId: String
19461952
}
19471953

packages/data-service-generator/src/models.ts

+6
Original file line numberDiff line numberDiff line change
@@ -739,6 +739,11 @@ export enum EnumAssistantMessageRole {
739739
User = 'User'
740740
}
741741

742+
export enum EnumAssistantMessageType {
743+
Default = 'Default',
744+
Onboarding = 'Onboarding'
745+
}
746+
742747
export enum EnumAuthProviderType {
743748
Auth0 = 'Auth0',
744749
Http = 'Http',
@@ -2749,6 +2754,7 @@ export enum Role {
27492754

27502755
export type SendAssistantMessageInput = {
27512756
message: Scalars['String']['input'];
2757+
messageType?: InputMaybe<EnumAssistantMessageType>;
27522758
threadId?: InputMaybe<Scalars['String']['input']>;
27532759
};
27542760

0 commit comments

Comments
 (0)