We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d320bf commit 4bf3bcfCopy full SHA for 4bf3bcf
src/clients/twitter/generate.ts
@@ -105,7 +105,7 @@ export class TwitterGenerationClient extends ClientBase {
105
const newTweetContent = await this.runtime.completion({
106
context,
107
stop: [],
108
- temperature: this.temperature,
+ temperature: this.temperature + 0.3,
109
frequency_penalty: 0.5,
110
presence_penalty: 0.5,
111
});
src/clients/twitter/search.ts
@@ -271,7 +271,9 @@ export class TwitterSearchClient extends ClientBase {
271
const responseContent = await this.runtime.messageCompletion({
272
273
274
275
+ frequency_penalty: 0.5,
276
+ presence_penalty: 0.5,
277
278
279
responseContent.inReplyTo = message.id;
0 commit comments