@waldzellai/adk-typescript
Version:
TypeScript SDK for Google Agent Development Kit (ADK) - A comprehensive framework for building AI agents
19 lines (18 loc) • 455 B
JavaScript
;
// Example module for the Google Agent Development Kit (ADK) in TypeScript
// Mirrors the example functionality from the Python SDK
Object.defineProperty(exports, "__esModule", { value: true });
exports.Example = void 0;
/**
* A few-shot example.
*/
class Example {
/**
* Creates a new Example.
*/
constructor(data) {
this.input = data.input;
this.output = data.output;
}
}
exports.Example = Example;