- Regenerate fusion-plugin-hermes-runtime build artifacts and manifest metadata for runtime packaging - Refactor Hermes runtime source into dedicated pi-module, runtime-adapter, and shared type modules - Expand Hermes and engine plugin-runner tests to validate cross-runtime compatibility behavior - Update getting-started, settings reference, and Hermes README docs to reflect the current runtime integration guidance
10 lines
560 B
TypeScript
10 lines
560 B
TypeScript
import type { AgentRuntime, AgentRuntimeOptions, AgentSession, AgentSessionResult } from "./types.js";
|
|
export declare class HermesRuntimeAdapter implements AgentRuntime {
|
|
readonly id = "hermes";
|
|
readonly name = "Hermes Runtime";
|
|
createSession(options: AgentRuntimeOptions): Promise<AgentSessionResult>;
|
|
promptWithFallback(session: AgentSession, prompt: string, options?: unknown): Promise<void>;
|
|
describeModel(session: AgentSession): string;
|
|
dispose(session: AgentSession): Promise<void>;
|
|
}
|
|
//# sourceMappingURL=runtime-adapter.d.ts.map
|