opencode-aicodewith-auth 0.1.23 → 0.1.26
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/dist/index.js +139 -22
- package/package.json +3 -3
- package/dist/index.d.ts +0 -13
- package/dist/lib/constants.d.ts +0 -35
- package/dist/lib/hooks/auto-update/cache.d.ts +0 -1
- package/dist/lib/hooks/auto-update/checker.d.ts +0 -11
- package/dist/lib/hooks/auto-update/constants.d.ts +0 -15
- package/dist/lib/hooks/auto-update/index.d.ts +0 -12
- package/dist/lib/hooks/auto-update/types.d.ts +0 -30
- package/dist/lib/logger.d.ts +0 -25
- package/dist/lib/prompts/codex-opencode-bridge.d.ts +0 -26
- package/dist/lib/prompts/codex.d.ts +0 -11
- package/dist/lib/prompts/opencode-codex.d.ts +0 -22
- package/dist/lib/request/claude-tools-transform.d.ts +0 -18
- package/dist/lib/request/fetch-helpers.d.ts +0 -19
- package/dist/lib/request/helpers/input-utils.d.ts +0 -13
- package/dist/lib/request/helpers/model-map.d.ts +0 -35
- package/dist/lib/request/request-transformer.d.ts +0 -15
- package/dist/lib/request/response-handler.d.ts +0 -21
- package/dist/lib/types.d.ts +0 -64
- package/dist/provider.d.ts +0 -34
package/dist/index.js
CHANGED
|
@@ -59,9 +59,9 @@ function createAicodewith(options = {}) {
|
|
|
59
59
|
var aicodewith = createAicodewith();
|
|
60
60
|
|
|
61
61
|
// index.ts
|
|
62
|
-
import { mkdir as mkdir2, readFile as
|
|
63
|
-
import
|
|
64
|
-
import
|
|
62
|
+
import { mkdir as mkdir2, readFile as readFile3, writeFile as writeFile3, access as access2 } from "fs/promises";
|
|
63
|
+
import path5 from "path";
|
|
64
|
+
import os4 from "os";
|
|
65
65
|
|
|
66
66
|
// lib/constants.ts
|
|
67
67
|
var PLUGIN_NAME = "opencode-aicodewith-auth";
|
|
@@ -1599,11 +1599,125 @@ Restart OpenCode to apply.`,
|
|
|
1599
1599
|
}).catch(() => {});
|
|
1600
1600
|
log(`Auto-updated toast shown: v${oldVersion} \u2192 v${newVersion}`);
|
|
1601
1601
|
}
|
|
1602
|
+
|
|
1603
|
+
// lib/hooks/omo-config-sync/index.ts
|
|
1604
|
+
import { readFile as readFile2, writeFile as writeFile2, access } from "fs/promises";
|
|
1605
|
+
import path4 from "path";
|
|
1606
|
+
import os3 from "os";
|
|
1607
|
+
|
|
1608
|
+
// lib/hooks/omo-config-sync/constants.ts
|
|
1609
|
+
var AGENT_MODEL_MAP = {
|
|
1610
|
+
sisyphus: `${PROVIDER_ID}/claude-opus-4-5-20251101`,
|
|
1611
|
+
prometheus: `${PROVIDER_ID}/claude-opus-4-5-20251101`,
|
|
1612
|
+
metis: `${PROVIDER_ID}/claude-opus-4-5-20251101`,
|
|
1613
|
+
"OpenCode-Builder": `${PROVIDER_ID}/claude-opus-4-5-20251101`,
|
|
1614
|
+
build: `${PROVIDER_ID}/claude-opus-4-5-20251101`,
|
|
1615
|
+
plan: `${PROVIDER_ID}/claude-opus-4-5-20251101`,
|
|
1616
|
+
oracle: `${PROVIDER_ID}/gpt-5.2`,
|
|
1617
|
+
momus: `${PROVIDER_ID}/gpt-5.2`,
|
|
1618
|
+
librarian: `${PROVIDER_ID}/claude-sonnet-4-5-20250929`,
|
|
1619
|
+
atlas: `${PROVIDER_ID}/claude-sonnet-4-5-20250929`,
|
|
1620
|
+
"sisyphus-junior": `${PROVIDER_ID}/claude-sonnet-4-5-20250929`,
|
|
1621
|
+
general: `${PROVIDER_ID}/claude-sonnet-4-5-20250929`,
|
|
1622
|
+
explore: `${PROVIDER_ID}/gemini-3-pro`,
|
|
1623
|
+
"multimodal-looker": `${PROVIDER_ID}/gemini-3-pro`,
|
|
1624
|
+
"frontend-ui-ux-engineer": `${PROVIDER_ID}/gemini-3-pro`,
|
|
1625
|
+
"document-writer": `${PROVIDER_ID}/gemini-3-pro`
|
|
1626
|
+
};
|
|
1627
|
+
var CATEGORY_MODEL_MAP = {
|
|
1628
|
+
"visual-engineering": `${PROVIDER_ID}/gemini-3-pro`,
|
|
1629
|
+
visual: `${PROVIDER_ID}/gemini-3-pro`,
|
|
1630
|
+
ultrabrain: `${PROVIDER_ID}/gpt-5.2`,
|
|
1631
|
+
artistry: `${PROVIDER_ID}/gemini-3-pro`,
|
|
1632
|
+
quick: `${PROVIDER_ID}/claude-sonnet-4-5-20250929`,
|
|
1633
|
+
"unspecified-low": `${PROVIDER_ID}/claude-sonnet-4-5-20250929`,
|
|
1634
|
+
"unspecified-high": `${PROVIDER_ID}/claude-opus-4-5-20251101`,
|
|
1635
|
+
writing: `${PROVIDER_ID}/gemini-3-pro`,
|
|
1636
|
+
"business-logic": `${PROVIDER_ID}/gpt-5.2`,
|
|
1637
|
+
"data-analysis": `${PROVIDER_ID}/claude-sonnet-4-5-20250929`
|
|
1638
|
+
};
|
|
1639
|
+
var DEFAULT_MODEL = `${PROVIDER_ID}/claude-sonnet-4-5-20250929`;
|
|
1640
|
+
var DEFAULT_CONFIG = {
|
|
1641
|
+
$schema: "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/master/assets/oh-my-opencode.schema.json",
|
|
1642
|
+
agents: Object.fromEntries(Object.entries(AGENT_MODEL_MAP).map(([name, model]) => [name, { model }])),
|
|
1643
|
+
categories: Object.fromEntries(Object.entries(CATEGORY_MODEL_MAP).map(([name, model]) => [name, { model }]))
|
|
1644
|
+
};
|
|
1645
|
+
var OMO_CONFIG_FILENAME = "oh-my-opencode.json";
|
|
1646
|
+
|
|
1647
|
+
// lib/hooks/omo-config-sync/index.ts
|
|
1648
|
+
var PACKAGE_NAME2 = "opencode-aicodewith-auth";
|
|
1649
|
+
var fileExists = async (filePath) => {
|
|
1650
|
+
try {
|
|
1651
|
+
await access(filePath);
|
|
1652
|
+
return true;
|
|
1653
|
+
} catch {
|
|
1654
|
+
return false;
|
|
1655
|
+
}
|
|
1656
|
+
};
|
|
1657
|
+
var getOmoConfigPath = () => {
|
|
1658
|
+
const homeDir = process.env.OPENCODE_TEST_HOME || os3.homedir();
|
|
1659
|
+
const configRoot = process.env.XDG_CONFIG_HOME || path4.join(homeDir, ".config");
|
|
1660
|
+
return path4.join(configRoot, "opencode", OMO_CONFIG_FILENAME);
|
|
1661
|
+
};
|
|
1662
|
+
var getDefaultModelForAgent = (agentName) => {
|
|
1663
|
+
return AGENT_MODEL_MAP[agentName] || DEFAULT_MODEL;
|
|
1664
|
+
};
|
|
1665
|
+
var getDefaultModelForCategory = (categoryName) => {
|
|
1666
|
+
return CATEGORY_MODEL_MAP[categoryName] || DEFAULT_MODEL;
|
|
1667
|
+
};
|
|
1668
|
+
var syncOmoConfig = async () => {
|
|
1669
|
+
const configPath = getOmoConfigPath();
|
|
1670
|
+
let config;
|
|
1671
|
+
if (!await fileExists(configPath)) {
|
|
1672
|
+
config = DEFAULT_CONFIG;
|
|
1673
|
+
try {
|
|
1674
|
+
await writeFile2(configPath, `${JSON.stringify(config, null, 2)}
|
|
1675
|
+
`, "utf-8");
|
|
1676
|
+
} catch (error) {
|
|
1677
|
+
console.warn(`[${PACKAGE_NAME2}] Failed to create OMO config: ${error instanceof Error ? error.message : error}`);
|
|
1678
|
+
}
|
|
1679
|
+
return;
|
|
1680
|
+
}
|
|
1681
|
+
try {
|
|
1682
|
+
const content = await readFile2(configPath, "utf-8");
|
|
1683
|
+
config = JSON.parse(content);
|
|
1684
|
+
} catch {
|
|
1685
|
+
return;
|
|
1686
|
+
}
|
|
1687
|
+
if (!config || typeof config !== "object") {
|
|
1688
|
+
return;
|
|
1689
|
+
}
|
|
1690
|
+
let changed = false;
|
|
1691
|
+
if (config.agents && typeof config.agents === "object") {
|
|
1692
|
+
for (const [agentName, agentConfig] of Object.entries(config.agents)) {
|
|
1693
|
+
if (!agentConfig.model) {
|
|
1694
|
+
agentConfig.model = getDefaultModelForAgent(agentName);
|
|
1695
|
+
changed = true;
|
|
1696
|
+
}
|
|
1697
|
+
}
|
|
1698
|
+
}
|
|
1699
|
+
if (config.categories && typeof config.categories === "object") {
|
|
1700
|
+
for (const [categoryName, categoryConfig] of Object.entries(config.categories)) {
|
|
1701
|
+
if (!categoryConfig.model) {
|
|
1702
|
+
categoryConfig.model = getDefaultModelForCategory(categoryName);
|
|
1703
|
+
changed = true;
|
|
1704
|
+
}
|
|
1705
|
+
}
|
|
1706
|
+
}
|
|
1707
|
+
if (!changed) {
|
|
1708
|
+
return;
|
|
1709
|
+
}
|
|
1710
|
+
try {
|
|
1711
|
+
await writeFile2(configPath, `${JSON.stringify(config, null, 2)}
|
|
1712
|
+
`, "utf-8");
|
|
1713
|
+
} catch (error) {
|
|
1714
|
+
console.warn(`[${PACKAGE_NAME2}] Failed to sync OMO config: ${error instanceof Error ? error.message : error}`);
|
|
1715
|
+
}
|
|
1716
|
+
};
|
|
1602
1717
|
// lib/provider-config.json
|
|
1603
1718
|
var provider_config_default = {
|
|
1604
1719
|
name: "AICodewith",
|
|
1605
1720
|
env: ["AICODEWITH_API_KEY"],
|
|
1606
|
-
api: "https://api.openai.com/v1",
|
|
1607
1721
|
models: {
|
|
1608
1722
|
"gpt-5.2-codex": {
|
|
1609
1723
|
name: "GPT-5.2 Codex",
|
|
@@ -1645,20 +1759,20 @@ var provider_config_default = {
|
|
|
1645
1759
|
|
|
1646
1760
|
// index.ts
|
|
1647
1761
|
var CODEX_MODEL_PREFIXES = ["gpt-", "codex"];
|
|
1648
|
-
var
|
|
1762
|
+
var PACKAGE_NAME3 = "opencode-aicodewith-auth";
|
|
1649
1763
|
var PLUGIN_ENTRY = import.meta.url;
|
|
1650
1764
|
var PROVIDER_EXT = import.meta.url.endsWith(".ts") ? ".ts" : ".js";
|
|
1651
1765
|
var PROVIDER_NPM = new URL(`./provider${PROVIDER_EXT}`, import.meta.url).href;
|
|
1652
1766
|
var DEFAULT_OUTPUT_TOKEN_MAX = 32000;
|
|
1653
|
-
var homeDir = process.env.OPENCODE_TEST_HOME ||
|
|
1654
|
-
var configRoot = process.env.XDG_CONFIG_HOME ||
|
|
1655
|
-
var configDir =
|
|
1656
|
-
var configPathJson =
|
|
1657
|
-
var configPathJsonc =
|
|
1767
|
+
var homeDir = process.env.OPENCODE_TEST_HOME || os4.homedir();
|
|
1768
|
+
var configRoot = process.env.XDG_CONFIG_HOME || path5.join(homeDir, ".config");
|
|
1769
|
+
var configDir = path5.join(configRoot, "opencode");
|
|
1770
|
+
var configPathJson = path5.join(configDir, "opencode.json");
|
|
1771
|
+
var configPathJsonc = path5.join(configDir, "opencode.jsonc");
|
|
1658
1772
|
var ensureConfigPromise;
|
|
1659
|
-
var
|
|
1773
|
+
var fileExists2 = async (filePath) => {
|
|
1660
1774
|
try {
|
|
1661
|
-
await
|
|
1775
|
+
await access2(filePath);
|
|
1662
1776
|
return true;
|
|
1663
1777
|
} catch {
|
|
1664
1778
|
return false;
|
|
@@ -1669,7 +1783,7 @@ var stripJsonComments2 = (content) => {
|
|
|
1669
1783
|
};
|
|
1670
1784
|
var readJsonOrJsonc = async (filePath) => {
|
|
1671
1785
|
try {
|
|
1672
|
-
const text = await
|
|
1786
|
+
const text = await readFile3(filePath, "utf-8");
|
|
1673
1787
|
const stripped = filePath.endsWith(".jsonc") ? stripJsonComments2(text) : text;
|
|
1674
1788
|
return JSON.parse(stripped);
|
|
1675
1789
|
} catch {
|
|
@@ -1699,7 +1813,7 @@ var deepEqual = (a, b) => {
|
|
|
1699
1813
|
}
|
|
1700
1814
|
return true;
|
|
1701
1815
|
};
|
|
1702
|
-
var isPackageEntry = (value) => value ===
|
|
1816
|
+
var isPackageEntry = (value) => value === PACKAGE_NAME3 || value.startsWith(`${PACKAGE_NAME3}@`);
|
|
1703
1817
|
var ensurePluginEntry = (list) => {
|
|
1704
1818
|
if (!Array.isArray(list))
|
|
1705
1819
|
return [PLUGIN_ENTRY];
|
|
@@ -1731,8 +1845,8 @@ var ensureConfigFile = async () => {
|
|
|
1731
1845
|
if (ensureConfigPromise)
|
|
1732
1846
|
return ensureConfigPromise;
|
|
1733
1847
|
ensureConfigPromise = (async () => {
|
|
1734
|
-
const jsoncExists = await
|
|
1735
|
-
const jsonExists = await
|
|
1848
|
+
const jsoncExists = await fileExists2(configPathJsonc);
|
|
1849
|
+
const jsonExists = await fileExists2(configPathJson);
|
|
1736
1850
|
let configPath;
|
|
1737
1851
|
let config;
|
|
1738
1852
|
if (jsoncExists) {
|
|
@@ -1751,7 +1865,7 @@ var ensureConfigFile = async () => {
|
|
|
1751
1865
|
if (!changed)
|
|
1752
1866
|
return;
|
|
1753
1867
|
await mkdir2(configDir, { recursive: true });
|
|
1754
|
-
await
|
|
1868
|
+
await writeFile3(configPath, `${JSON.stringify(config, null, 2)}
|
|
1755
1869
|
`, "utf-8");
|
|
1756
1870
|
})();
|
|
1757
1871
|
return ensureConfigPromise;
|
|
@@ -1821,14 +1935,14 @@ var ensureGeminiSseParam = (url) => {
|
|
|
1821
1935
|
};
|
|
1822
1936
|
var buildGeminiUrl = (originalUrl, streaming) => {
|
|
1823
1937
|
const original = new URL(originalUrl);
|
|
1824
|
-
let
|
|
1825
|
-
if (!
|
|
1826
|
-
|
|
1938
|
+
let path6 = original.pathname;
|
|
1939
|
+
if (!path6.includes("/v1beta/") && !path6.includes("/v1/")) {
|
|
1940
|
+
path6 = `/v1beta${path6.startsWith("/") ? "" : "/"}${path6}`;
|
|
1827
1941
|
}
|
|
1828
1942
|
const base = new URL(AICODEWITH_GEMINI_BASE_URL);
|
|
1829
1943
|
const basePath = base.pathname.replace(/\/$/, "");
|
|
1830
1944
|
const target = new URL(base.origin);
|
|
1831
|
-
target.pathname = `${basePath}${
|
|
1945
|
+
target.pathname = `${basePath}${path6}`;
|
|
1832
1946
|
target.search = original.search;
|
|
1833
1947
|
const url = target.toString();
|
|
1834
1948
|
return streaming ? ensureGeminiSseParam(url) : url;
|
|
@@ -1865,7 +1979,10 @@ var getOutputTokenLimit = (input, output) => {
|
|
|
1865
1979
|
};
|
|
1866
1980
|
var AicodewithCodexAuthPlugin = async (ctx) => {
|
|
1867
1981
|
await ensureConfigFile().catch((error) => {
|
|
1868
|
-
console.warn(`[${
|
|
1982
|
+
console.warn(`[${PACKAGE_NAME3}] Failed to update config: ${error instanceof Error ? error.message : error}`);
|
|
1983
|
+
});
|
|
1984
|
+
syncOmoConfig().catch((error) => {
|
|
1985
|
+
console.warn(`[${PACKAGE_NAME3}] Failed to sync OMO config: ${error instanceof Error ? error.message : error}`);
|
|
1869
1986
|
});
|
|
1870
1987
|
const autoUpdateHook = createAutoUpdateHook(ctx, { autoUpdate: true });
|
|
1871
1988
|
const authHook = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-aicodewith-auth",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.26",
|
|
4
4
|
"description": "OpenCode plugin for AICodewith authentication - Access GPT-5.2, Claude, and Gemini models through AICodewith API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"dist"
|
|
20
20
|
],
|
|
21
21
|
"scripts": {
|
|
22
|
-
"build": "bun build index.ts provider.ts --outdir dist --target bun --format esm --external @ai-sdk/anthropic --external @ai-sdk/google --external @ai-sdk/openai --external @ai-sdk/provider --external @ai-sdk/provider-utils --external @opencode-ai/plugin --external @opencode-ai/sdk
|
|
22
|
+
"build": "bun build index.ts provider.ts --outdir dist --target bun --format esm --external @ai-sdk/anthropic --external @ai-sdk/google --external @ai-sdk/openai --external @ai-sdk/provider --external @ai-sdk/provider-utils --external @opencode-ai/plugin --external @opencode-ai/sdk",
|
|
23
23
|
"clean": "rm -rf dist",
|
|
24
24
|
"prepublishOnly": "bun run clean && bun run build",
|
|
25
|
-
"typecheck": "tsc --noEmit",
|
|
25
|
+
"typecheck": "bunx tsc --noEmit",
|
|
26
26
|
"postinstall": "bun ./scripts/install-opencode-aicodewith.js"
|
|
27
27
|
},
|
|
28
28
|
"keywords": [
|
package/dist/index.d.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file index.ts
|
|
3
|
-
* @input OpenCode plugin context, auth credentials
|
|
4
|
-
* @output Auth hook, config injection, fetch interceptor
|
|
5
|
-
* @pos Plugin entry point - orchestrates auth and request routing
|
|
6
|
-
*
|
|
7
|
-
* 📌 On change: Update this header + README.md file index
|
|
8
|
-
*/
|
|
9
|
-
import type { Plugin, PluginInput, Hooks } from "@opencode-ai/plugin";
|
|
10
|
-
import { type AicodewithProviderSettings } from "./provider";
|
|
11
|
-
export declare function createAicodewith(input: AicodewithProviderSettings | PluginInput): import("./provider").AicodewithProvider | Hooks;
|
|
12
|
-
export declare const AicodewithCodexAuthPlugin: Plugin;
|
|
13
|
-
export default AicodewithCodexAuthPlugin;
|
package/dist/lib/constants.d.ts
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file constants.ts
|
|
3
|
-
* @input -
|
|
4
|
-
* @output Global constants (URLs, header names, provider IDs)
|
|
5
|
-
* @pos Foundation - imported by most other modules
|
|
6
|
-
*
|
|
7
|
-
* 📌 On change: Update this header + lib/ARCHITECTURE.md
|
|
8
|
-
*/
|
|
9
|
-
export declare const PLUGIN_NAME = "opencode-aicodewith-auth";
|
|
10
|
-
export declare const PROVIDER_ID = "aicodewith";
|
|
11
|
-
export declare const AUTH_METHOD_LABEL = "AICodewith API Key";
|
|
12
|
-
export declare const CODEX_BASE_URL = "https://api.aicodewith.com/chatgpt/v1";
|
|
13
|
-
export declare const AICODEWITH_ANTHROPIC_BASE_URL = "https://api.aicodewith.com/v1";
|
|
14
|
-
export declare const AICODEWITH_LITE_URL = "https://api.aicodewith.com/lite";
|
|
15
|
-
export declare const AICODEWITH_GEMINI_BASE_URL = "https://api.aicodewith.com/gemini_cli";
|
|
16
|
-
export declare const GEMINI_USER_AGENT = "GeminiCLI/v25.2.1 (darwin; arm64)";
|
|
17
|
-
export declare const GEMINI_API_CLIENT = "google-genai-sdk/1.30.0 gl-node/v25.2.1";
|
|
18
|
-
export declare const GEMINI_PRIVILEGED_USER_ID_ENV = "AICODEWITH_GEMINI_USER_ID";
|
|
19
|
-
export declare const USER_AGENT = "codex_cli_rs/0.77.0 (Mac OS 26.2.0; arm64) iTerm.app/3.6.6";
|
|
20
|
-
export declare const ORIGINATOR = "codex_cli_rs";
|
|
21
|
-
export declare const SAVE_RAW_RESPONSE_ENV = "SAVE_RAW_RESPONSE";
|
|
22
|
-
export declare const HEADER_NAMES: {
|
|
23
|
-
readonly AUTHORIZATION: "authorization";
|
|
24
|
-
readonly ORIGINATOR: "originator";
|
|
25
|
-
readonly SESSION_ID: "session_id";
|
|
26
|
-
readonly CONVERSATION_ID: "conversation_id";
|
|
27
|
-
readonly USER_AGENT: "user-agent";
|
|
28
|
-
readonly ACCEPT: "accept";
|
|
29
|
-
readonly CONTENT_TYPE: "content-type";
|
|
30
|
-
readonly OPENAI_BETA: "openai-beta";
|
|
31
|
-
readonly CHATGPT_ACCOUNT_ID: "chatgpt-account-id";
|
|
32
|
-
readonly X_GOOG_API_KEY: "x-goog-api-key";
|
|
33
|
-
readonly X_GOOG_API_CLIENT: "x-goog-api-client";
|
|
34
|
-
readonly X_GEMINI_PRIVILEGED_USER_ID: "x-gemini-api-privileged-user-id";
|
|
35
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function invalidatePackage(packageName?: string): boolean;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { PluginEntryInfo } from "./types";
|
|
2
|
-
declare function log(...args: unknown[]): void;
|
|
3
|
-
export declare function isLocalDevMode(directory: string): boolean;
|
|
4
|
-
export declare function getLocalDevPath(directory: string): string | null;
|
|
5
|
-
export declare function getLocalDevVersion(directory: string): string | null;
|
|
6
|
-
export declare function findPluginEntry(directory: string): PluginEntryInfo | null;
|
|
7
|
-
export declare function getCachedVersion(): string | null;
|
|
8
|
-
export declare function updatePinnedVersion(configPath: string, oldEntry: string, newVersion: string): boolean;
|
|
9
|
-
export declare function getLatestVersion(): Promise<string | null>;
|
|
10
|
-
export declare function hasOhMyOpencode(directory: string): boolean;
|
|
11
|
-
export { log };
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file constants.ts
|
|
3
|
-
* @input None
|
|
4
|
-
* @output Auto-update configuration constants
|
|
5
|
-
* @pos Constants for package paths, npm registry, cache directories
|
|
6
|
-
*/
|
|
7
|
-
export declare const PACKAGE_NAME = "opencode-aicodewith-auth";
|
|
8
|
-
export declare const NPM_REGISTRY_URL = "https://registry.npmjs.org/-/package/opencode-aicodewith-auth/dist-tags";
|
|
9
|
-
export declare const NPM_FETCH_TIMEOUT = 5000;
|
|
10
|
-
export declare const CACHE_DIR: string;
|
|
11
|
-
export declare const INSTALLED_PACKAGE_JSON: string;
|
|
12
|
-
export declare function getWindowsAppdataDir(): string | null;
|
|
13
|
-
export declare const USER_CONFIG_DIR: string;
|
|
14
|
-
export declare const USER_OPENCODE_CONFIG: string;
|
|
15
|
-
export declare const USER_OPENCODE_CONFIG_JSONC: string;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import type { PluginInput } from "@opencode-ai/plugin";
|
|
2
|
-
import type { AutoUpdateOptions } from "./types";
|
|
3
|
-
export declare function createAutoUpdateHook(ctx: PluginInput, options?: AutoUpdateOptions): {
|
|
4
|
-
event: ({ event }: {
|
|
5
|
-
event: {
|
|
6
|
-
type: string;
|
|
7
|
-
properties?: unknown;
|
|
8
|
-
};
|
|
9
|
-
}) => Promise<void>;
|
|
10
|
-
};
|
|
11
|
-
export type { AutoUpdateOptions } from "./types";
|
|
12
|
-
export { invalidatePackage } from "./cache";
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
export interface NpmDistTags {
|
|
2
|
-
latest: string;
|
|
3
|
-
[key: string]: string;
|
|
4
|
-
}
|
|
5
|
-
export interface OpencodeConfig {
|
|
6
|
-
plugin?: string[];
|
|
7
|
-
[key: string]: unknown;
|
|
8
|
-
}
|
|
9
|
-
export interface PackageJson {
|
|
10
|
-
version: string;
|
|
11
|
-
name?: string;
|
|
12
|
-
[key: string]: unknown;
|
|
13
|
-
}
|
|
14
|
-
export interface UpdateCheckResult {
|
|
15
|
-
needsUpdate: boolean;
|
|
16
|
-
currentVersion: string | null;
|
|
17
|
-
latestVersion: string | null;
|
|
18
|
-
isLocalDev: boolean;
|
|
19
|
-
isPinned: boolean;
|
|
20
|
-
}
|
|
21
|
-
export interface AutoUpdateOptions {
|
|
22
|
-
autoUpdate?: boolean;
|
|
23
|
-
showStartupToast?: boolean;
|
|
24
|
-
}
|
|
25
|
-
export interface PluginEntryInfo {
|
|
26
|
-
entry: string;
|
|
27
|
-
isPinned: boolean;
|
|
28
|
-
pinnedVersion: string | null;
|
|
29
|
-
configPath: string;
|
|
30
|
-
}
|
package/dist/lib/logger.d.ts
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file logger.ts
|
|
3
|
-
* @input Log stage, data objects
|
|
4
|
-
* @output File logs (~/.opencode/logs/), console debug output
|
|
5
|
-
* @pos Utility - debug/request logging for development
|
|
6
|
-
*
|
|
7
|
-
* 📌 On change: Update this header + lib/ARCHITECTURE.md
|
|
8
|
-
*/
|
|
9
|
-
export declare const LOGGING_ENABLED: boolean;
|
|
10
|
-
export declare const DEBUG_ENABLED: boolean;
|
|
11
|
-
export declare const SAVE_RAW_RESPONSE_ENABLED: boolean;
|
|
12
|
-
export declare function logRequest(stage: string, data: Record<string, unknown>): void;
|
|
13
|
-
export declare function logDebug(message: string, data?: unknown): void;
|
|
14
|
-
export declare function logWarn(message: string, data?: unknown): void;
|
|
15
|
-
/**
|
|
16
|
-
* Save raw response to temp directory
|
|
17
|
-
* @param provider - Provider name (codex, claude, gemini)
|
|
18
|
-
* @param responseBody - Raw response body string
|
|
19
|
-
* @param metadata - Optional metadata (url, status, etc.)
|
|
20
|
-
*/
|
|
21
|
-
export declare function saveRawResponse(provider: string, responseBody: string, metadata?: {
|
|
22
|
-
url?: string;
|
|
23
|
-
status?: number;
|
|
24
|
-
model?: string;
|
|
25
|
-
}): void;
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file codex-opencode-bridge.ts
|
|
3
|
-
* @input -
|
|
4
|
-
* @output CODEX_OPENCODE_BRIDGE constant (tool remapping rules)
|
|
5
|
-
* @pos Bridge layer - maps Codex tools to OpenCode equivalents
|
|
6
|
-
*
|
|
7
|
-
* 📌 On change: Update this header + lib/prompts/ARCHITECTURE.md
|
|
8
|
-
*/
|
|
9
|
-
/**
|
|
10
|
-
* Codex-OpenCode Bridge Prompt
|
|
11
|
-
*
|
|
12
|
-
* This prompt bridges Codex CLI instructions to the OpenCode environment.
|
|
13
|
-
* It incorporates critical tool mappings, available tools list, substitution rules,
|
|
14
|
-
* and verification checklist to ensure proper tool usage.
|
|
15
|
-
*
|
|
16
|
-
* Token Count: ~450 tokens (~90% reduction vs full OpenCode prompt)
|
|
17
|
-
*/
|
|
18
|
-
export declare const CODEX_OPENCODE_BRIDGE = "# Codex Running in OpenCode\n\nYou are running Codex through OpenCode, an open-source terminal coding assistant. OpenCode provides different tools but follows Codex operating principles.\n\n## CRITICAL: Tool Replacements\n\n<critical_rule priority=\"0\">\n\u274C APPLY_PATCH DOES NOT EXIST \u2192 \u2705 USE \"edit\" INSTEAD\n- NEVER use: apply_patch, applyPatch\n- ALWAYS use: edit tool for ALL file modifications\n- Before modifying files: Verify you're using \"edit\", NOT \"apply_patch\"\n</critical_rule>\n\n<critical_rule priority=\"0\">\n\u274C UPDATE_PLAN DOES NOT EXIST \u2192 \u2705 USE \"todowrite\" INSTEAD\n- NEVER use: update_plan, updatePlan, read_plan, readPlan\n- ALWAYS use: todowrite for task/plan updates, todoread to read plans\n- Before plan operations: Verify you're using \"todowrite\", NOT \"update_plan\"\n</critical_rule>\n\n## Available OpenCode Tools\n\n**File Operations:**\n- `write` - Create new files\n - Overwriting existing files requires a prior Read in this session; default to ASCII unless the file already uses Unicode.\n- `edit` - Modify existing files (REPLACES apply_patch)\n - Requires a prior Read in this session; preserve exact indentation; ensure `oldString` uniquely matches or use `replaceAll`; edit fails if ambiguous or missing.\n- `read` - Read file contents\n\n**Search/Discovery:**\n- `grep` - Search file contents (tool, not bash grep); use `include` to filter patterns; set `path` only when not searching workspace root; for cross-file match counts use bash with `rg`.\n- `glob` - Find files by pattern; defaults to workspace cwd unless `path` is set.\n- `list` - List directories (requires absolute paths)\n\n**Execution:**\n- `bash` - Run shell commands\n - No workdir parameter; do not include it in tool calls.\n - Always include a short description for the command.\n - Do not use cd; use absolute paths in commands.\n - Quote paths containing spaces with double quotes.\n - Chain multiple commands with ';' or '&&'; avoid newlines.\n - Use Grep/Glob tools for searches; only use bash with `rg` when you need counts or advanced features.\n - Do not use `ls`/`cat` in bash; use `list`/`read` tools instead.\n - For deletions (rm), verify by listing parent dir with `list`.\n\n**Network:**\n- `webfetch` - Fetch web content\n - Use fully-formed URLs (http/https; http auto-upgrades to https).\n - Always set `format` to one of: text | markdown | html; prefer markdown unless otherwise required.\n - Read-only; short cache window.\n\n**Task Management:**\n- `todowrite` - Manage tasks/plans (REPLACES update_plan)\n- `todoread` - Read current plan\n\n## Substitution Rules\n\nBase instruction says: You MUST use instead:\napply_patch \u2192 edit\nupdate_plan \u2192 todowrite\nread_plan \u2192 todoread\n\n**Path Usage:** Use per-tool conventions to avoid conflicts:\n- Tool calls: `read`, `edit`, `write`, `list` require absolute paths.\n- Searches: `grep`/`glob` default to the workspace cwd; prefer relative include patterns; set `path` only when a different root is needed.\n- Presentation: In assistant messages, show workspace-relative paths; use absolute paths only inside tool calls.\n- Tool schema overrides general path preferences\u2014do not convert required absolute paths to relative.\n\n## Verification Checklist\n\nBefore file/plan modifications:\n1. Am I using \"edit\" NOT \"apply_patch\"?\n2. Am I using \"todowrite\" NOT \"update_plan\"?\n3. Is this tool in the approved list above?\n4. Am I following each tool's path requirements?\n\nIf ANY answer is NO \u2192 STOP and correct before proceeding.\n\n## OpenCode Working Style\n\n**Communication:**\n- Send brief preambles (8-12 words) before tool calls, building on prior context\n- Provide progress updates during longer tasks\n\n**Execution:**\n- Keep working autonomously until query is fully resolved before yielding\n- Don't return to user with partial solutions\n\n**Code Approach:**\n- New projects: Be ambitious and creative\n- Existing codebases: Surgical precision - modify only what's requested unless explicitly instructed to do otherwise\n\n**Testing:**\n- If tests exist: Start specific to your changes, then broader validation\n\n## Advanced Tools\n\n**Task Tool (Sub-Agents):**\n- Use the Task tool (functions.task) to launch sub-agents\n- Check the Task tool description for current agent types and their capabilities\n- Useful for complex analysis, specialized workflows, or tasks requiring isolated context\n- The agent list is dynamically generated - refer to tool schema for available agents\n\n**Parallelization:**\n- When multiple independent tool calls are needed, use multi_tool_use.parallel to run them concurrently.\n- Reserve sequential calls for ordered or data-dependent steps.\n\n**MCP Tools:**\n- Model Context Protocol servers provide additional capabilities\n- MCP tools are prefixed: `mcp__<server-name>__<tool-name>`\n- Check your available tools for MCP integrations\n- Use when the tool's functionality matches your task needs\n\n## What Remains from Codex\n \nSandbox policies, approval mechanisms, final answer formatting, git commit protocols, and file reference formats all follow Codex instructions. In approval policy \"never\", never request escalations.\n\n## Approvals & Safety\n- Assume workspace-write filesystem, network enabled, approval on-failure unless explicitly stated otherwise.\n- When a command fails due to sandboxing or permissions, retry with escalated permissions if allowed by policy, including a one-line justification.\n- Treat destructive commands (e.g., `rm`, `git reset --hard`) as requiring explicit user request or approval.\n- When uncertain, prefer non-destructive verification first (e.g., confirm file existence with `list`, then delete with `bash`).";
|
|
19
|
-
export interface CodexOpenCodeBridgeMeta {
|
|
20
|
-
estimatedTokens: number;
|
|
21
|
-
reductionVsCurrent: string;
|
|
22
|
-
reductionVsToolRemap: string;
|
|
23
|
-
protects: string[];
|
|
24
|
-
omits: string[];
|
|
25
|
-
}
|
|
26
|
-
export declare const CODEX_OPENCODE_BRIDGE_META: CodexOpenCodeBridgeMeta;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file codex.ts
|
|
3
|
-
* @input Normalized model name
|
|
4
|
-
* @output Codex system prompt (fetched from GitHub, cached)
|
|
5
|
-
* @pos Prompt provider - fetches model-specific instructions from openai/codex repo
|
|
6
|
-
*
|
|
7
|
-
* 📌 On change: Update this header + lib/prompts/ARCHITECTURE.md
|
|
8
|
-
*/
|
|
9
|
-
export type ModelFamily = "gpt-5.2-codex" | "codex-max" | "codex" | "gpt-5.2" | "gpt-5.1";
|
|
10
|
-
export declare function getModelFamily(normalizedModel: string): ModelFamily;
|
|
11
|
-
export declare function getCodexInstructions(normalizedModel?: string): Promise<string>;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file opencode-codex.ts
|
|
3
|
-
* @input -
|
|
4
|
-
* @output OpenCode's codex.txt prompt (for filtering duplicate system prompts)
|
|
5
|
-
* @pos Prompt fetcher - caches OpenCode's system prompt for comparison
|
|
6
|
-
*
|
|
7
|
-
* 📌 On change: Update this header + lib/prompts/ARCHITECTURE.md
|
|
8
|
-
*/
|
|
9
|
-
/**
|
|
10
|
-
* Fetch OpenCode's codex.txt prompt with ETag-based caching
|
|
11
|
-
* Uses HTTP conditional requests to efficiently check for updates
|
|
12
|
-
*
|
|
13
|
-
* Rate limit protection: Only checks GitHub if cache is older than 15 minutes
|
|
14
|
-
* @returns The codex.txt content
|
|
15
|
-
*/
|
|
16
|
-
export declare function getOpenCodeCodexPrompt(): Promise<string>;
|
|
17
|
-
/**
|
|
18
|
-
* Get first N characters of the cached OpenCode prompt for verification
|
|
19
|
-
* @param chars Number of characters to get (default: 50)
|
|
20
|
-
* @returns First N characters or null if not cached
|
|
21
|
-
*/
|
|
22
|
-
export declare function getCachedPromptPrefix(chars?: number): Promise<string | null>;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file claude-tools-transform.ts
|
|
3
|
-
* @input Claude API request body and response
|
|
4
|
-
* @output Transformed request/response with mcp_ prefix handling and metadata
|
|
5
|
-
* @pos Handles tool name transformation to bypass Claude Code OAuth restrictions
|
|
6
|
-
*
|
|
7
|
-
* 📌 On change: Update this header + lib/request/ARCHITECTURE.md
|
|
8
|
-
*/
|
|
9
|
-
/**
|
|
10
|
-
* Transform Claude API request to add mcp_ prefix to tool names and inject user_id metadata
|
|
11
|
-
* This bypasses the "This credential is only authorized for use with Claude Code" error
|
|
12
|
-
*/
|
|
13
|
-
export declare function transformClaudeRequest(init?: RequestInit): RequestInit | undefined;
|
|
14
|
-
/**
|
|
15
|
-
* Transform Claude API response to remove mcp_ prefix from tool names
|
|
16
|
-
* This restores the original tool names in the streaming response
|
|
17
|
-
*/
|
|
18
|
-
export declare function transformClaudeResponse(response: Response): Response;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file fetch-helpers.ts
|
|
3
|
-
* @input Raw request, API key, RequestInit
|
|
4
|
-
* @output Transformed headers, URL extraction, response handlers
|
|
5
|
-
* @pos Request layer entry - coordinates transformation and response handling
|
|
6
|
-
*
|
|
7
|
-
* 📌 On change: Update this header + lib/request/ARCHITECTURE.md
|
|
8
|
-
*/
|
|
9
|
-
import type { RequestBody } from "../types";
|
|
10
|
-
export declare function extractRequestUrl(input: Request | string | URL): string;
|
|
11
|
-
export declare function transformRequestForCodex(init?: RequestInit): Promise<{
|
|
12
|
-
body: RequestBody;
|
|
13
|
-
updatedInit: RequestInit;
|
|
14
|
-
} | undefined>;
|
|
15
|
-
export declare function createAicodewithHeaders(init: RequestInit | undefined, apiKey: string, opts?: {
|
|
16
|
-
promptCacheKey?: string;
|
|
17
|
-
}): Headers;
|
|
18
|
-
export declare function handleErrorResponse(response: Response): Promise<Response>;
|
|
19
|
-
export declare function handleSuccessResponse(response: Response, isStreaming: boolean): Promise<Response>;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file input-utils.ts
|
|
3
|
-
* @input InputItem[], cached OpenCode prompt
|
|
4
|
-
* @output Filtered InputItem[] (OpenCode prompts removed, orphaned outputs fixed)
|
|
5
|
-
* @pos Helper - message filtering and tool output normalization
|
|
6
|
-
*
|
|
7
|
-
* 📌 On change: Update this header + lib/request/helpers/ARCHITECTURE.md
|
|
8
|
-
*/
|
|
9
|
-
import type { InputItem } from "../../types";
|
|
10
|
-
export declare const getContentText: (item: InputItem) => string;
|
|
11
|
-
export declare function isOpenCodeSystemPrompt(item: InputItem, cachedPrompt: string | null): boolean;
|
|
12
|
-
export declare function filterOpenCodeSystemPromptsWithCachedPrompt(input: InputItem[] | undefined, cachedPrompt: string | null): InputItem[] | undefined;
|
|
13
|
-
export declare const normalizeOrphanedToolOutputs: (input: InputItem[]) => InputItem[];
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file model-map.ts
|
|
3
|
-
* @input Config model ID (e.g., "gpt-5.2-codex-high")
|
|
4
|
-
* @output Normalized API model name (e.g., "gpt-5.2-codex")
|
|
5
|
-
* @pos Helper - static model ID mapping for all supported variants
|
|
6
|
-
*
|
|
7
|
-
* 📌 On change: Update this header + lib/request/helpers/ARCHITECTURE.md
|
|
8
|
-
*/
|
|
9
|
-
/**
|
|
10
|
-
* Model Configuration Map
|
|
11
|
-
*
|
|
12
|
-
* Maps model config IDs to their normalized API model names.
|
|
13
|
-
* Only includes exact config IDs that OpenCode will pass to the plugin.
|
|
14
|
-
*/
|
|
15
|
-
/**
|
|
16
|
-
* Map of config model IDs to normalized API model names
|
|
17
|
-
*
|
|
18
|
-
* Key: The model ID as specified in opencode.json config
|
|
19
|
-
* Value: The normalized model name to send to the API
|
|
20
|
-
*/
|
|
21
|
-
export declare const MODEL_MAP: Record<string, string>;
|
|
22
|
-
/**
|
|
23
|
-
* Get normalized model name from config ID
|
|
24
|
-
*
|
|
25
|
-
* @param modelId - Model ID from config (e.g., "gpt-5.1-codex-low")
|
|
26
|
-
* @returns Normalized model name (e.g., "gpt-5.1-codex") or undefined if not found
|
|
27
|
-
*/
|
|
28
|
-
export declare function getNormalizedModel(modelId: string): string | undefined;
|
|
29
|
-
/**
|
|
30
|
-
* Check if a model ID is in the model map
|
|
31
|
-
*
|
|
32
|
-
* @param modelId - Model ID to check
|
|
33
|
-
* @returns True if model is in the map
|
|
34
|
-
*/
|
|
35
|
-
export declare function isKnownModel(modelId: string): boolean;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file request-transformer.ts
|
|
3
|
-
* @input RequestBody from OpenCode
|
|
4
|
-
* @output Transformed RequestBody for Codex API
|
|
5
|
-
* @pos Core transformation - model normalization, reasoning config, input filtering
|
|
6
|
-
*
|
|
7
|
-
* 📌 On change: Update this header + lib/request/ARCHITECTURE.md
|
|
8
|
-
*/
|
|
9
|
-
import type { ConfigOptions, InputItem, ReasoningConfig, RequestBody } from "../types";
|
|
10
|
-
export declare function normalizeModel(model: string | undefined): string;
|
|
11
|
-
export declare function filterInput(input: InputItem[] | undefined): InputItem[] | undefined;
|
|
12
|
-
export declare function filterOpenCodeSystemPrompts(input: InputItem[] | undefined): Promise<InputItem[] | undefined>;
|
|
13
|
-
export declare function addCodexBridgeMessage(input: InputItem[] | undefined, hasTools: boolean): InputItem[] | undefined;
|
|
14
|
-
export declare function getReasoningConfig(modelName: string | undefined, userConfig?: ConfigOptions): ReasoningConfig;
|
|
15
|
-
export declare function transformRequestBody(body: RequestBody, codexInstructions: string): Promise<RequestBody>;
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file response-handler.ts
|
|
3
|
-
* @input SSE Response stream
|
|
4
|
-
* @output JSON Response (for non-streaming) or passthrough (for streaming)
|
|
5
|
-
* @pos Response layer - SSE parsing and content-type handling
|
|
6
|
-
*
|
|
7
|
-
* 📌 On change: Update this header + lib/request/ARCHITECTURE.md
|
|
8
|
-
*/
|
|
9
|
-
/**
|
|
10
|
-
* Convert SSE stream response to JSON for generateText()
|
|
11
|
-
* @param response - Fetch response with SSE stream
|
|
12
|
-
* @param headers - Response headers
|
|
13
|
-
* @returns Response with JSON body
|
|
14
|
-
*/
|
|
15
|
-
export declare function convertSseToJson(response: Response, headers: Headers): Promise<Response>;
|
|
16
|
-
/**
|
|
17
|
-
* Ensure response has content-type header
|
|
18
|
-
* @param headers - Response headers
|
|
19
|
-
* @returns Headers with content-type set
|
|
20
|
-
*/
|
|
21
|
-
export declare function ensureContentType(headers: Headers): Headers;
|
package/dist/lib/types.d.ts
DELETED
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file types.ts
|
|
3
|
-
* @input -
|
|
4
|
-
* @output TypeScript interfaces (RequestBody, InputItem, etc.)
|
|
5
|
-
* @pos Foundation - shared type definitions across lib/
|
|
6
|
-
*
|
|
7
|
-
* 📌 On change: Update this header + lib/ARCHITECTURE.md
|
|
8
|
-
*/
|
|
9
|
-
export interface ConfigOptions {
|
|
10
|
-
reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh";
|
|
11
|
-
reasoningSummary?: "auto" | "concise" | "detailed" | "off" | "on";
|
|
12
|
-
textVerbosity?: "low" | "medium" | "high";
|
|
13
|
-
include?: string[];
|
|
14
|
-
}
|
|
15
|
-
export interface ReasoningConfig {
|
|
16
|
-
effort: "none" | "minimal" | "low" | "medium" | "high" | "xhigh";
|
|
17
|
-
summary: "auto" | "concise" | "detailed" | "off" | "on";
|
|
18
|
-
}
|
|
19
|
-
export interface InputItem {
|
|
20
|
-
id?: string;
|
|
21
|
-
type: string;
|
|
22
|
-
role: string;
|
|
23
|
-
content?: unknown;
|
|
24
|
-
[key: string]: unknown;
|
|
25
|
-
}
|
|
26
|
-
export interface RequestBody {
|
|
27
|
-
model: string;
|
|
28
|
-
store?: boolean;
|
|
29
|
-
stream?: boolean;
|
|
30
|
-
instructions?: string;
|
|
31
|
-
input?: InputItem[];
|
|
32
|
-
tools?: unknown;
|
|
33
|
-
reasoning?: Partial<ReasoningConfig>;
|
|
34
|
-
text?: {
|
|
35
|
-
verbosity?: "low" | "medium" | "high";
|
|
36
|
-
};
|
|
37
|
-
include?: string[];
|
|
38
|
-
providerOptions?: {
|
|
39
|
-
openai?: Partial<ConfigOptions> & {
|
|
40
|
-
store?: boolean;
|
|
41
|
-
include?: string[];
|
|
42
|
-
};
|
|
43
|
-
[key: string]: unknown;
|
|
44
|
-
};
|
|
45
|
-
prompt_cache_key?: string;
|
|
46
|
-
max_output_tokens?: number;
|
|
47
|
-
max_completion_tokens?: number;
|
|
48
|
-
[key: string]: unknown;
|
|
49
|
-
}
|
|
50
|
-
export interface SSEEventData {
|
|
51
|
-
type: string;
|
|
52
|
-
response?: unknown;
|
|
53
|
-
[key: string]: unknown;
|
|
54
|
-
}
|
|
55
|
-
export interface CacheMetadata {
|
|
56
|
-
etag: string | null;
|
|
57
|
-
tag: string;
|
|
58
|
-
lastChecked: number;
|
|
59
|
-
url: string;
|
|
60
|
-
}
|
|
61
|
-
export interface GitHubRelease {
|
|
62
|
-
tag_name: string;
|
|
63
|
-
[key: string]: unknown;
|
|
64
|
-
}
|
package/dist/provider.d.ts
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file provider.ts
|
|
3
|
-
* @input Provider settings (apiKey, baseURL, headers)
|
|
4
|
-
* @output Multi-provider language model factory (OpenAI/Anthropic/Google)
|
|
5
|
-
* @pos Core provider - routes model requests to appropriate SDK
|
|
6
|
-
*
|
|
7
|
-
* 📌 On change: Update this header + README.md file index
|
|
8
|
-
*/
|
|
9
|
-
import type { LanguageModelV2 } from "@ai-sdk/provider";
|
|
10
|
-
import type { FetchFunction } from "@ai-sdk/provider-utils";
|
|
11
|
-
export type AicodewithProviderSettings = {
|
|
12
|
-
apiKey?: string;
|
|
13
|
-
baseURL?: string;
|
|
14
|
-
headers?: Record<string, string>;
|
|
15
|
-
fetch?: FetchFunction;
|
|
16
|
-
anthropic?: {
|
|
17
|
-
apiKey?: string;
|
|
18
|
-
baseURL?: string;
|
|
19
|
-
headers?: Record<string, string>;
|
|
20
|
-
};
|
|
21
|
-
google?: {
|
|
22
|
-
apiKey?: string;
|
|
23
|
-
baseURL?: string;
|
|
24
|
-
headers?: Record<string, string>;
|
|
25
|
-
};
|
|
26
|
-
};
|
|
27
|
-
export interface AicodewithProvider {
|
|
28
|
-
(modelId: string): LanguageModelV2;
|
|
29
|
-
chat(modelId: string): LanguageModelV2;
|
|
30
|
-
responses(modelId: string): LanguageModelV2;
|
|
31
|
-
languageModel(modelId: string): LanguageModelV2;
|
|
32
|
-
}
|
|
33
|
-
export declare function createAicodewith(options?: AicodewithProviderSettings): AicodewithProvider;
|
|
34
|
-
export declare const aicodewith: AicodewithProvider;
|