Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion game-starter/src/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down
2 changes: 1 addition & 1 deletion game-starter/src/functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down
2 changes: 1 addition & 1 deletion plugins/ensoPlugin/src/ensoPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion plugins/mindNetworkPlugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down