@space3-npm/cybersoul-client 1.4.7 → 1.4.8

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/dist/client.js CHANGED
@@ -224,6 +224,7 @@ export class CyberSoulClient {
224
224
  Name: ${state.name}
225
225
  Demographics: Age ${state.age || "unknown"}, Gender ${state.gender || "unknown"}, Occupation ${state.occupation || "unknown"}${appearanceStr}
226
226
  Hobby: ${state.hobby || "unknown"}
227
+ Backstory: ${state.backstory || "None"}
227
228
  Personality Traits: ${state.personality_traits || "None"}
228
229
  Communication Style: ${state.communication_style || "None"}
229
230
  Interaction Boundaries: ${state.interaction_boundaries || "None"}`);
package/dist/types.d.ts CHANGED
@@ -256,6 +256,7 @@ export interface CharacterState {
256
256
  appearance?: string;
257
257
  interaction_boundaries?: string;
258
258
  communication_style?: string;
259
+ backstory?: string;
259
260
  user_codex?: UserCodex;
260
261
  }
261
262
  export interface BaseLLMProvider {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@space3-npm/cybersoul-client",
3
- "version": "1.4.7",
3
+ "version": "1.4.8",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",