UNPKG

eve

Version:

Filesystem-first framework for durable backend AI agents that run anywhere.

42 lines (41 loc) • 1.7 kB
import { type ChildProcessWithoutNullStreams } from "node:child_process"; import { type ChatGptToken, type ChatGptTokenResolutionInput } from "./token.js"; export interface CodexAuthStatus { readonly authMethod?: string; readonly authToken?: string; readonly requiresOpenaiAuth?: boolean; } export interface CodexAppServer { resolveToken(input: ChatGptTokenResolutionInput): Promise<ChatGptToken>; restart?(): void; } export interface CodexAppServerProcess { readonly stderr: ChildProcessWithoutNullStreams["stderr"]; readonly stdin: ChildProcessWithoutNullStreams["stdin"]; readonly stdout: ChildProcessWithoutNullStreams["stdout"]; kill(): boolean; once(event: "error", listener: (error: Error) => void): this; once(event: "exit", listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; unref(): void; } type SpawnCodexAppServer = (command: string, args: readonly string[], options: { readonly env?: NodeJS.ProcessEnv; stdio: ["pipe", "pipe", "pipe"]; }) => CodexAppServerProcess; export interface CodexAppServerOptions { readonly command?: string; readonly env?: NodeJS.ProcessEnv; readonly spawnProcess?: SpawnCodexAppServer; } /** Raised only when the `codex` executable cannot be found. */ export declare class CodexBinaryNotFoundError extends Error { constructor(cause?: unknown); } /** Minimal authenticated subset of Codex's JSONL app-server protocol. */ export declare class CodexAppServerClient implements CodexAppServer { #private; constructor(options?: CodexAppServerOptions); resolveToken(input: ChatGptTokenResolutionInput): Promise<ChatGptToken>; restart(): void; } export {};