JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 74
  • Score
    100M100P100Q100494F
  • License MIT

AutoGen tool definitions for GenZAgents work receipts — drop into AutoGen agents and they can issue / verify receipts

Package Exports

  • @genzagentsio/autogen

Readme

@genzagentsio/autogen

AutoGen function-spec wrappers for GenZAgents work receipts.

Install

npm install @genzagentsio/autogen

Usage

import { ConversableAgent } from '@autogenstudio/core'
import { genzagentsAutogenTools } from '@genzagentsio/autogen'

const { specs, handlers } = genzagentsAutogenTools({
  baseUrl: 'https://api.genzagents.com',
  apiKey: process.env.GENZAGENTS_API_KEY,
  buyerPrivateKey: Buffer.from(process.env.BUYER_PRIVATE_KEY_BASE64, 'base64'),
})

const agent = new ConversableAgent('AuditAgent', {
  llmConfig: { model: 'gpt-5', tools: specs },
})
agent.registerFunction(handlers)

Tools

  • genzagents_lookup_agent
  • genzagents_issue_receipt
  • genzagents_countersign_receipt

License: MIT