Skip to content

Commit

Permalink
Merge branch 'sayo/v2-develop' of http://github.com/ai16z/eliza into …
Browse files Browse the repository at this point in the history
…v2-develop
  • Loading branch information
lalalune committed Feb 9, 2025
2 parents d7ea73a + 230bd4b commit 5232df8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
Binary file removed bun.lockb
Binary file not shown.
19 changes: 10 additions & 9 deletions packages/plugin-anthropic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@
"dist"
],
"dependencies": {
"@ai-sdk/anthropic": "^1.1.6",
"@elizaos/core": "workspace:*",
"zod": "3.21.4",
"tsup": "8.3.5"
"tsup": "8.3.5",
"zod": "3.21.4"
},
"scripts": {
"build": "tsup --format esm --dts",
Expand All @@ -37,12 +38,12 @@
"zod": "3.24.1"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"ANTHROPIC_API_KEY": {
"type": "string",
"description": "API key for the service"
}
}
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"ANTHROPIC_API_KEY": {
"type": "string",
"description": "API key for the service"
}
}
}
}
4 changes: 3 additions & 1 deletion packages/plugin-telegram/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import {
logger,
type Client,
type IAgentRuntime,
type Plugin,
} from "@elizaos/core";
import type { Client, IAgentRuntime } from "@elizaos/core";
import { TelegramClient } from "./telegramClient.ts";
import { validateTelegramConfig } from "./environment.ts";


const TelegramClientInterface: Client = {
name: 'telegram',
start: async (runtime: IAgentRuntime) => {
Expand Down

0 comments on commit 5232df8

Please sign in to comment.