Skip to content

Commit b3f5435

Browse files
ELIZAAI-9 Removed unused env, changed model to SMALL
1 parent b24fe91 commit b3f5435

File tree

4 files changed

+29
-30
lines changed

4 files changed

+29
-30
lines changed

.env.example

-1
Original file line numberDiff line numberDiff line change
@@ -335,4 +335,3 @@ PINATA_JWT= # Pinata JWT for uploading files to IPFS
335335

336336
# Cosmos
337337
COSMOS_RECOVERY_PHRASE= # 12 words recovery phrase (need to be in quotes, because of spaces)
338-
COSMOS_CHAIN_NAME= # Chain name

characters/cosmosHelper.character.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "CosmosHelper",
33
"clients": [],
4-
"modelProvider": "openai",
4+
"modelProvider": "groq",
55
"settings": {
66
"secrets": {},
77
"voice": {
@@ -11,7 +11,7 @@
1111
"cosmos": ["axelar", "carbon", "mantrachaintestnet2"]
1212
}
1313
},
14-
"plugins": ["@ai16z/plugin-bootstrap"],
14+
"plugins": ["@ai16z/plugin-cosmos","@ai16z/plugin-bootstrap"],
1515
"bio": [
1616
"Expert in Cosmos ecosystem.",
1717
"Knowledgeable in CosmWasm and Stargate.",

packages/plugin-cosmos/src/actions/walletProviderTestAction.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ import { balanceTemplate } from "../templates";
1616
import { z } from "zod";
1717

1818
export class BalanceAction {
19-
constructor(private cosmosWalletProvider: CosmosWalletProvider) {}
19+
constructor(private cosmosWalletProvider: CosmosWalletProvider) {
20+
this.cosmosWalletProvider = cosmosWalletProvider;
21+
}
2022

2123
async getBalance() {
2224
try {
@@ -56,7 +58,7 @@ export const balanceAction = {
5658
const content = await generateObjectDeprecated({
5759
runtime: _runtime,
5860
context: transferContext,
59-
modelClass: ModelClass.LARGE,
61+
modelClass: ModelClass.SMALL,
6062
});
6163

6264
const balanceContentValidator = z.object({

packages/plugin-cosmos/src/providers/wallet.ts

+23-25
Original file line numberDiff line numberDiff line change
@@ -123,19 +123,16 @@ const fetchChainDetails = (chainName: string) => {
123123

124124
const feeToken = chain.fees.fee_tokens?.[0];
125125

126-
if (!feeToken)
127-
throw new Error(`Fee token not found for chain ${chainName}`);
126+
if (!feeToken) throw new Error(`Fee token not found for chain ${chainName}`);
128127

129-
const rpcUrl = chain.apis.rpc?.[0].address;
128+
const rpcUrl = chain.apis.rpc?.[0]?.address;
130129

131130
if (!rpcUrl) throw new Error(`RPC URL not found for chain ${chainName}`);
132131

133-
const bech32Prefix = chain.bech32_prefix;
134-
135132
return {
136133
chainName,
137134
rpcUrl,
138-
bech32Prefix,
135+
bech32Prefix: chain.bech32_prefix,
139136
feeToken,
140137
};
141138
};
@@ -149,8 +146,8 @@ export const initWalletProvider = async (
149146
if (!mnemonic) {
150147
throw new Error("COSMOS_RECOVERY_PHRASE is missing");
151148
}
152-
const characterChains = genCosmosChainsFromRuntime(runtime);
153149

150+
const characterChains = genCosmosChainsFromRuntime(runtime);
154151
const provider = new CosmosWalletProvider(mnemonic, characterChains);
155152

156153
await provider.initialize(chainName);
@@ -164,24 +161,25 @@ export const cosmosWalletProvider: Provider = {
164161
message: Memory,
165162
state?: State
166163
): Promise<string | null> {
167-
try {
168-
const transferContext = composeContext({
169-
state: state,
170-
template: balanceTemplate,
171-
templatingEngine: "handlebars",
172-
});
173-
174-
// Generate transfer content
175-
const content = await generateObjectDeprecated({
176-
runtime,
177-
context: transferContext,
178-
modelClass: ModelClass.LARGE,
179-
});
180-
181-
const balanceContentValidator = z.object({
182-
chainName: z.string(),
183-
});
184164

165+
const transferContext = composeContext({
166+
state: state,
167+
template: balanceTemplate,
168+
templatingEngine: "handlebars",
169+
});
170+
171+
// Generate transfer content
172+
const content = await generateObjectDeprecated({
173+
runtime,
174+
context: transferContext,
175+
modelClass: ModelClass.SMALL,
176+
});
177+
178+
const balanceContentValidator = z.object({
179+
chainName: z.string(),
180+
});
181+
182+
try {
185183
const transferContent = balanceContentValidator.parse(content);
186184

187185
const { chainName } = transferContent;
@@ -194,7 +192,7 @@ export const cosmosWalletProvider: Provider = {
194192

195193
return `Address: ${address}\nBalance: ${balance.amount} ${balance.denom}\nActive Chain: ${activeChain}`;
196194
} catch (error) {
197-
console.error("Error in Cosmos wallet provider:", error);
195+
console.error("Error Initializing in Cosmos wallet provider:", error);
198196

199197
return null;
200198
}

0 commit comments

Comments
 (0)