@ai-sdk/harness-codex 0.0.0 → 1.0.0-canary.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/index.ts ADDED
@@ -0,0 +1,12 @@
1
+ import { createCodex } from './codex-harness';
2
+
3
+ /**
4
+ * Default `codex` harness instance with no overrides — suitable for the
5
+ * common case where the underlying `codex` CLI's defaults are fine.
6
+ * Equivalent to `createCodex()`.
7
+ */
8
+ export const codex = createCodex();
9
+
10
+ export { createCodex } from './codex-harness';
11
+ export type { CodexHarnessSettings } from './codex-harness';
12
+ export type { CodexAuthOptions } from './codex-auth';