Skip to content

Commit

Permalink
Clara - client: Story
Browse files Browse the repository at this point in the history
  • Loading branch information
asiaziola committed Feb 14, 2025
1 parent 5d35f0c commit 0abc36c
Show file tree
Hide file tree
Showing 43 changed files with 1,299 additions and 907 deletions.
6 changes: 6 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,12 @@ AO_MARKET_ID=
AO_USERNAME=
AO_WALLET_ID=

# Story Protocol
STORY_WALLET=
STORY_USERNAME=
STORY_WALLET_ID=
STORY_MARKET_ID=

# Grok Configuration
GROK_API_KEY= # GROK/xAI API Key
SMALL_GROK_MODEL= # Default: grok-2-1212
Expand Down
2 changes: 1 addition & 1 deletion agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"@elizaos/adapter-qdrant": "workspace:*",
"@elizaos/adapter-mongodb": "workspace:*",
"@elizaos/client-auto": "workspace:*",
"@elizaos/client-ao": "workspace:*",
"@elizaos/client-clara": "workspace:*",
"@elizaos/client-direct": "workspace:*",
"@elizaos/client-discord": "workspace:*",
"@elizaos/client-farcaster": "workspace:*",
Expand Down
8 changes: 4 additions & 4 deletions agent/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ import { ankrPlugin } from "@elizaos/plugin-ankr";
import { formPlugin } from "@elizaos/plugin-form";
import { MongoClient } from "mongodb";
import { quickIntelPlugin } from "@elizaos/plugin-quick-intel";
import AoTheComputerClientInterface from "@elizaos/client-ao";
import ClaraClientInterface from "@elizaos/client-clara";
import { aoPlugin } from "@elizaos/plugin-ao";
import twitterPlugin from "@elizaos/plugin-twitter";

Expand Down Expand Up @@ -815,9 +815,9 @@ export async function initializeClients(
if (xmtpClient) clients.xmtp = xmtpClient;
}

if (clientTypes.includes(Clients.AO)) {
const aoTheComputer = await AoTheComputerClientInterface.start(runtime);
if (aoTheComputer) clients.aoTheComputer = aoTheComputer;
if (clientTypes.includes(Clients.CLARA)) {
const claraClient = await ClaraClientInterface.start(runtime);
if (claraClient) clients.clara = claraClient;
}

if (clientTypes.includes(Clients.DISCORD)) {
Expand Down
2 changes: 1 addition & 1 deletion client/src/lib/info.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version": "0.1.9"}
{"version": "0.25.6-alpha.1"}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.3",
"@permaweb/aoconnect": "^0.0.62",
"@story-protocol/core-sdk": "1.2.0-rc.3",
"@types/jest": "^29.5.11",
"concurrently": "9.1.0",
"cross-env": "7.0.3",
Expand Down
115 changes: 0 additions & 115 deletions packages/client-ao/src/AoClient.ts

This file was deleted.

64 changes: 0 additions & 64 deletions packages/client-ao/src/ao_graphql_query.ts

This file was deleted.

63 changes: 0 additions & 63 deletions packages/client-ao/src/ao_types.ts

This file was deleted.

Loading

0 comments on commit 0abc36c

Please sign in to comment.