@go1/go1-embedding-react-sdk 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/README.md +1 -0
- package/dist/common/types.d.ts +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -65,6 +65,7 @@ interface ThemeInformation {
|
|
|
65
65
|
export interface FeatureAttributesAIChat {
|
|
66
66
|
experience: 'manager' | 'learner';
|
|
67
67
|
intent?: 'skill_gap' | 'improve_skills' | 'next_role' | 'aspirational';
|
|
68
|
+
message?: string; // The desired message to start the chat, which will be shown to the user
|
|
68
69
|
existingSkills?: string[]; // max items 7, any more are discarded
|
|
69
70
|
desiredSkills?: string[]; // max items 7, any more are discarded
|
|
70
71
|
}
|
package/dist/README.md
CHANGED
|
@@ -65,6 +65,7 @@ interface ThemeInformation {
|
|
|
65
65
|
export interface FeatureAttributesAIChat {
|
|
66
66
|
experience: 'manager' | 'learner';
|
|
67
67
|
intent?: 'skill_gap' | 'improve_skills' | 'next_role' | 'aspirational';
|
|
68
|
+
message?: string; // The desired message to start the chat, which will be shown to the user
|
|
68
69
|
existingSkills?: string[]; // max items 7, any more are discarded
|
|
69
70
|
desiredSkills?: string[]; // max items 7, any more are discarded
|
|
70
71
|
}
|
package/dist/common/types.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ export interface Go1Message {
|
|
|
18
18
|
export interface FeatureAttributesAIChat {
|
|
19
19
|
experience: 'manager' | 'learner';
|
|
20
20
|
intent?: 'skill_gap' | 'improve_skills' | 'next_role' | 'aspirational';
|
|
21
|
+
message?: string;
|
|
21
22
|
existingSkills?: string[];
|
|
22
23
|
desiredSkills?: string[];
|
|
23
24
|
}
|