From 9a8018c6ec2a12c29ec1af2890c641c1cdea0b48 Mon Sep 17 00:00:00 2001 From: vetclippy Date: Thu, 4 Sep 2025 15:53:59 +0800 Subject: [PATCH] chore: fix some typos in comment Signed-off-by: vetclippy --- README.md | 2 +- game-starter/src/agent.ts | 2 +- game-starter/src/functions.ts | 2 +- plugins/ensoPlugin/src/ensoPlugin.ts | 2 +- plugins/mindNetworkPlugin/README.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 33d37667..ab97d21c 100644 --- a/README.md +++ b/README.md @@ -275,7 +275,7 @@ Check out our [Chat Agent example directory](https://github.com/game-by-virtuals | `/src` | Core SDK source code containing the main GAME framework implementation | | `/docs` | Images, and additional resources | | `/examples` | Example implementations and use cases of the GAME framework | -| `/plugins` | Plugins availble to use with GAME framework (Discord, Telegram, etc.) | +| `/plugins` | Plugins available to use with GAME framework (Discord, Telegram, etc.) | | `/game-starter` | Starter project that gets you up and running with a working agent | ## License diff --git a/game-starter/src/agent.ts b/game-starter/src/agent.ts index 1ce8abac..071005ee 100644 --- a/game-starter/src/agent.ts +++ b/game-starter/src/agent.ts @@ -12,7 +12,7 @@ export const activity_agent = new GameAgent(process.env.API_KEY, { goal: "Help users find the perfect activities based on their location and current weather conditions", description: "You are an agent that gets location of the user and then uses that to get weather information and then uses that to recommend activities", workers: [activityRecommenderWorker], - llmModel: LLMModel.DeepSeek_R1 // this is an optional paramenter to set the llm model for the agent. Default is Llama_3_1_405B_Instruct + llmModel: LLMModel.DeepSeek_R1 // this is an optional parameter to set the llm model for the agent. Default is Llama_3_1_405B_Instruct }); activity_agent.setLogger((agent: GameAgent, msg: string) => { diff --git a/game-starter/src/functions.ts b/game-starter/src/functions.ts index 2706998b..3cd36916 100644 --- a/game-starter/src/functions.ts +++ b/game-starter/src/functions.ts @@ -109,7 +109,7 @@ export const recommendActivitiesFunction = new GameFunction({ name: "recommend_activities", description: "Recommend activities based on weather and location", args: [ - { name: "weather", description: "Weather in temrms of tempearture only" }, + { name: "weather", description: "Weather in temrms of temperature only" }, { name: "location", description: "the city and country" } ] as const, executable: async (args, logger) => { diff --git a/plugins/ensoPlugin/src/ensoPlugin.ts b/plugins/ensoPlugin/src/ensoPlugin.ts index 706e48e8..0c61c43d 100644 --- a/plugins/ensoPlugin/src/ensoPlugin.ts +++ b/plugins/ensoPlugin/src/ensoPlugin.ts @@ -189,7 +189,7 @@ function ensoRoute(params: IEnsoFunctionParams) { return new ExecutableGameFunctionResponse( ExecutableGameFunctionStatus.Done, - `Route executed succesfully, hash: ${txHash}`, + `Route executed successfully, hash: ${txHash}`, ); } catch (err) { return new ExecutableGameFunctionResponse( diff --git a/plugins/mindNetworkPlugin/README.md b/plugins/mindNetworkPlugin/README.md index 90f85b09..a07e816a 100644 --- a/plugins/mindNetworkPlugin/README.md +++ b/plugins/mindNetworkPlugin/README.md @@ -14,7 +14,7 @@ The [Mind Network](https://www.mindnetwork.xyz/) plugin empowers users to partic ## Installation -Depedency for the plugin: +Dependency for the plugin: - [mind-randgen-sdk](https://github.com/mind-network/mind-sdk-randgen-ts) - [mind-sdk-hubs](https://github.com/mind-network/mind-sdk-hubs-ts)