Skip to content

Commit

Permalink
Revert "Merge remote-tracking branch 'origin/develop'"
Browse files Browse the repository at this point in the history
This reverts commit 8771cb2, reversing
changes made to 393851e.
  • Loading branch information
marvinmarnold committed Feb 2, 2025
1 parent 8771cb2 commit 8b82812
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 10 deletions.
2 changes: 0 additions & 2 deletions packages/client-twitter/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ export async function buildConversationThread(
text: currentTweet.text,
source: "twitter",
url: currentTweet.permanentUrl,
imageUrls: currentTweet.photos.map((p) => p.url) || [],
inReplyTo: currentTweet.inReplyToStatusId
? stringToUuid(
currentTweet.inReplyToStatusId +
Expand Down Expand Up @@ -279,7 +278,6 @@ export async function sendTweet(
text: tweet.text,
source: "twitter",
url: tweet.permanentUrl,
imageUrls: tweet.photos.map((p) => p.url) || [],
inReplyTo: tweet.inReplyToStatusId
? stringToUuid(
tweet.inReplyToStatusId + "-" + client.runtime.agentId
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@
"@ai-sdk/google-vertex": "0.0.43",
"@ai-sdk/groq": "0.0.3",
"@ai-sdk/mistral": "1.0.9",
"@ai-sdk/openai": "1.1.9",
"@ai-sdk/openai": "1.0.5",
"@ai-sdk/amazon-bedrock": "1.1.0",
"@fal-ai/client": "1.2.0",
"@tavily/core": "^0.0.2",
"@types/uuid": "10.0.0",
"ai": "4.1.16",
"ai": "3.4.33",
"anthropic-vertex-ai": "1.0.2",
"dotenv": "16.4.5",
"fastembed": "1.14.1",
Expand All @@ -84,7 +84,7 @@
"js-tiktoken": "1.0.15",
"langchain": "0.3.6",
"ollama-ai-provider": "0.16.1",
"openai": "4.82.0",
"openai": "4.73.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"tinyld": "1.3.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-cosmos/src/templates/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Respond with a JSON markdown block containing only the extracted values. All fie
"chainName": string // The chain name.
\`\`\`
Example response for the input: "Make transfer 0.0001 OM to mantra1pcnw46km8m5amvf7jlk2ks5std75k73aralhcf on mantrachaintestnet2", the response should be:
Example reponse for the input: "Make transfer 0.0001 OM to mantra1pcnw46km8m5amvf7jlk2ks5std75k73aralhcf on mantrachaintestnet2", the response should be:
\`\`\`json
{
"symbol": "OM",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-email/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The following settings will be declared on your environment variable or inside y
## IMAP Section

- `EMAIL_INCOMING_SERVICE`: "imap"
- `EMAIL_INCOMING_HOST`: IMAP Hostname or IP to connect to
- `EMAIL_INCOMING_HOST`: IMAP Hostname or IP to conenct to
- `EMAIL_INCOMING_PORT`: the port to connect to (defaults to 993)
- `EMAIL_INCOMING_USER`: Username
- `EMAIL_INCOMING_PASS`: Password
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class GoplusSecurityService extends Service implements IGoplusSecuritySer
checkResult = await goPlusManage.dappSecurityAndPhishingSite(obj.url);
break;
default:
throw new Error("type is invalid")
throw new Error("type is invaild")
}

elizaLogger.log("checkResult text", checkResult);
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-story/src/types/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export enum RESOURCE_TYPE {
LATEST_TRANSACTIONS = "transactions/latest",
}

export enum RESOURCE_RESPONSE_TYPE {
export enum RESPOURCE_REPONSE_TYPE {
LICENSE_TOKEN = "LICENSETOKEN", // new version
LICENSE_TEMPLATES = "LICENSETEMPLATE", // new version
LICENSE_TERMS = "LICENSETERM", // new version
Expand Down Expand Up @@ -556,4 +556,4 @@ export type LicenseTerms = {
licenseTemplate: Address;
blockNumber: string;
blockTime: string;
};
};

0 comments on commit 8b82812

Please sign in to comment.