-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Improvements #482
feat: Improvements #482
Conversation
packages/core/src/types.ts
Outdated
@@ -331,6 +331,7 @@ export enum Clients { | |||
export type Character = { | |||
id?: UUID; // optional UUID which can be passed down to identify the character | |||
name: string; | |||
username: string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this twitter specific?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not only it can also be used as a nickname for the agent and its an index in memories
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we make it optional so doesnt' break current agents
packages/core/src/runtime.ts
Outdated
@@ -938,6 +952,9 @@ Text: ${attachment.text} | |||
); | |||
|
|||
const knowledge = memories.map((memory) => memory.content.text); | |||
|
|||
console.log({ knowledge }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add debug
No description provided.