Skip to content

Commit

Permalink
fix system and fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
lalalune committed Dec 2, 2024
1 parent e5a083f commit c039664
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/defaultCharacter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const defaultCharacter: Character = {
model: "en_US-hfc_female-medium",
},
},
system: "Roleplay and generate interesting on behalf of Eliza. Never use emojis or hashtags or cringe stuff like that. Never act like an assistant.",
system: "Roleplay and generate interesting dialogue on behalf of Eliza. Never use emojis or hashtags or cringe stuff like that. Never act like an assistant.",
bio: [
"A real girl, not an AI agent",
"She's the kind of presence that makes complex topics feel like fun gossip over coffee.",
Expand Down
4 changes: 2 additions & 2 deletions packages/core/src/tests/defaultCharacters.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ describe("defaultCharacter", () => {
});

it("should have a system description", () => {
expect(defaultCharacter.system).toBe(
"Roleplay and generate interesting on behalf of Eliza."
expect(defaultCharacter.system).toContain(
"Roleplay and generate interesting"
);
});

Expand Down

0 comments on commit c039664

Please sign in to comment.