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 Eliza is posting an '\n\n' to X instead of two carriage returns. This is using CLAUDE_VERTEX.
It appears every post has this symptom. To Reproduce I run on a mac, so compiled eliza with settings for mac. Example: https://x.com/waggyhappytail/status/1869352624656716210
I run with pnpm tsx agent/src/index.ts Expected behavior It should post carriage returns.
Screenshots https://imgur.com/a/BFJ2RlH
Additional context If I exit eliza and restart, it doesn't always reproduce the issue. The only filed edited is the character file.
The text was updated successfully, but these errors were encountered:
@tekspirit I fix this by adding following line in pacakages -> client-twitter -> src -> post.js in "generateNewTweet()" function
after cleanedContent = removeQuotes(content);
cleanedContent = cleanedContent.replace(/\\n/g, '\n');
Sorry, something went wrong.
I think .replaceAll is more appropriate. I fixed it here #1141. I guess it waits for a release.
.replaceAll
The issue was solved by @owlcode in 1141 already merged. I close this issue now.
No branches or pull requests
Describe the bug
Eliza is posting an '\n\n' to X instead of two carriage returns. This is using CLAUDE_VERTEX.
It appears every post has this symptom.
To Reproduce
I run on a mac, so compiled eliza with settings for mac. Example: https://x.com/waggyhappytail/status/1869352624656716210
I run with pnpm tsx agent/src/index.ts
Expected behavior
It should post carriage returns.
Screenshots
https://imgur.com/a/BFJ2RlH
Additional context
If I exit eliza and restart, it doesn't always reproduce the issue. The only filed edited is the character file.
The text was updated successfully, but these errors were encountered: