@wasmagent/core
v1.0.3
Published
Core runtime for wasmagent — agents, executor, memory, models, tools
Downloads
234
Maintainers
Readme
/core
Agent runtime — agents, kernels, models, tools, quality runners, evals, checkpoints.
Part of wasmagent — a TypeScript + WASM agent runtime.
Install
npm install /core @anthropic-ai/sdkUsage
import { CodeAgent, AnthropicModel, AnthropicModels } from "/core";
const agent = new CodeAgent({
model: new AnthropicModel(AnthropicModels.SONNET_LATEST, { apiKey: process.env.ANTHROPIC_API_KEY }),
});
const result = await agent.run({ task: "What is 12 * 13?" });
console.log(result.finalAnswer);See the main README for the full surface area: agents, runners, kernels, models, tools, evals, checkpoints, and observability.
License
Apache-2.0 — © wasmagent contributors
