Skip to content

Commit b92dfc3

Browse files
authored
MAX_TWEET_LENGTH env implementation
1 parent 216e312 commit b92dfc3

File tree

2 files changed

+22
-8
lines changed

2 files changed

+22
-8
lines changed

packages/client-twitter/src/environment.ts

+10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import { IAgentRuntime } from "@ai16z/eliza";
22
import { z } from "zod";
33

4+
const DEFAULT_MAX_TWEET_LENGTH = 200;
5+
46
export const twitterEnvSchema = z.object({
57
TWITTER_DRY_RUN: z
68
.string()
@@ -9,6 +11,10 @@ export const twitterEnvSchema = z.object({
911
TWITTER_PASSWORD: z.string().min(1, "Twitter password is required"),
1012
TWITTER_EMAIL: z.string().email("Valid Twitter email is required"),
1113
TWITTER_COOKIES: z.string().optional(),
14+
MAX_TWEET_LENGTH: z
15+
.string()
16+
.pipe(z.coerce.number().min(0).int())
17+
.default(DEFAULT_MAX_TWEET_LENGTH.toString()),
1218
});
1319

1420
export type TwitterConfig = z.infer<typeof twitterEnvSchema>;
@@ -34,6 +40,10 @@ export async function validateTwitterConfig(
3440
TWITTER_COOKIES:
3541
runtime.getSetting("TWITTER_COOKIES") ||
3642
process.env.TWITTER_COOKIES,
43+
MAX_TWEET_LENGTH:
44+
runtime.getSetting("MAX_TWEET_LENGTH") ||
45+
process.env.MAX_TWEET_LENGTH ||
46+
DEFAULT_MAX_TWEET_LENGTH.toString(),
3747
};
3848

3949
return twitterEnvSchema.parse(config);

packages/client-twitter/src/post.ts

+12-8
Original file line numberDiff line numberDiff line change
@@ -30,20 +30,21 @@ const twitterPostTemplate = `
3030
Write a 1-3 sentence post that is {{adjective}} about {{topic}} (without mentioning {{topic}} directly), from the perspective of {{agentName}}. Do not add commentary or acknowledge this request, just write the post.
3131
Your response should not contain any questions. Brief, concise statements only. The total character count MUST be less than 280. No emojis. Use \\n\\n (double spaces) between statements.`;
3232

33-
const MAX_TWEET_LENGTH = 280;
34-
3533
/**
3634
* Truncate text to fit within the Twitter character limit, ensuring it ends at a complete sentence.
3735
*/
38-
function truncateToCompleteSentence(text: string): string {
39-
if (text.length <= MAX_TWEET_LENGTH) {
36+
function truncateToCompleteSentence(
37+
text: string,
38+
maxTweetLength: number
39+
): string {
40+
if (text.length <= maxTweetLength) {
4041
return text;
4142
}
4243

4344
// Attempt to truncate at the last period within the limit
4445
const truncatedAtPeriod = text.slice(
4546
0,
46-
text.lastIndexOf(".", MAX_TWEET_LENGTH) + 1
47+
text.lastIndexOf(".", maxTweetLength) + 1
4748
);
4849
if (truncatedAtPeriod.trim().length > 0) {
4950
return truncatedAtPeriod.trim();
@@ -52,14 +53,14 @@ function truncateToCompleteSentence(text: string): string {
5253
// If no period is found, truncate to the nearest whitespace
5354
const truncatedAtSpace = text.slice(
5455
0,
55-
text.lastIndexOf(" ", MAX_TWEET_LENGTH)
56+
text.lastIndexOf(" ", maxTweetLength)
5657
);
5758
if (truncatedAtSpace.trim().length > 0) {
5859
return truncatedAtSpace.trim() + "...";
5960
}
6061

6162
// Fallback: Hard truncate and add ellipsis
62-
return text.slice(0, MAX_TWEET_LENGTH - 3).trim() + "...";
63+
return text.slice(0, maxTweetLength - 3).trim() + "...";
6364
}
6465

6566
export class TwitterPostClient {
@@ -171,7 +172,10 @@ export class TwitterPostClient {
171172
.trim();
172173

173174
// Use the helper function to truncate to complete sentence
174-
const content = truncateToCompleteSentence(formattedTweet);
175+
const content = truncateToCompleteSentence(
176+
formattedTweet,
177+
Number(this.runtime.getSetting("MAX_TWEET_LENGTH"))
178+
);
175179

176180
if (this.runtime.getSetting("TWITTER_DRY_RUN") === "true") {
177181
elizaLogger.info(

0 commit comments

Comments
 (0)