We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Currently, when a character file wants to use the Auto Client, the agent will return an error.
["⛔ Error parsing character from ../characters/schlomo.character.json: Error: Character configuration validation failed:\nclients.2: Invalid enum value. Expected 'discord' | 'direct' | 'twitter' | 'telegram' | 'farcaster', received 'auto'"]
This is due to the types.ts file does not define an enum AUTO = "auto".
types.ts
AUTO = "auto"
To Reproduce Define the "clients": ["auto"], in the character file to reproduce the error.
"clients": ["auto"],
Expected behavior Expected behavior should start the auto client and print a log
["◎ running auto client..."]
Screenshots
Additional context
The text was updated successfully, but these errors were encountered:
HashWarlock
No branches or pull requests
Describe the bug
Currently, when a character file wants to use the Auto Client, the agent will return an error.
This is due to the
types.ts
file does not define an enumAUTO = "auto"
.To Reproduce
Define the
"clients": ["auto"],
in the character file to reproduce the error.Expected behavior
Expected behavior should start the auto client and print a log
Screenshots
Additional context
The text was updated successfully, but these errors were encountered: