@threnn/acap-sdk 0.2.0 → 0.3.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/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -53,6 +53,8 @@ interface StartAttestationOptions {
|
|
|
53
53
|
agentApiKey?: string;
|
|
54
54
|
/** Adapter type (default: 'http') */
|
|
55
55
|
agentAdapter?: 'http' | 'anthropic' | 'openai' | 'mcp';
|
|
56
|
+
/** Base URL override for Anthropic/OpenAI adapters (e.g., Gemini's OpenAI-compatible endpoint) */
|
|
57
|
+
agentBaseUrl?: string;
|
|
56
58
|
/** Model ID for Anthropic/OpenAI adapters */
|
|
57
59
|
agentModel?: string;
|
|
58
60
|
/** System prompt for the agent (optional) */
|
package/dist/index.d.ts
CHANGED
|
@@ -53,6 +53,8 @@ interface StartAttestationOptions {
|
|
|
53
53
|
agentApiKey?: string;
|
|
54
54
|
/** Adapter type (default: 'http') */
|
|
55
55
|
agentAdapter?: 'http' | 'anthropic' | 'openai' | 'mcp';
|
|
56
|
+
/** Base URL override for Anthropic/OpenAI adapters (e.g., Gemini's OpenAI-compatible endpoint) */
|
|
57
|
+
agentBaseUrl?: string;
|
|
56
58
|
/** Model ID for Anthropic/OpenAI adapters */
|
|
57
59
|
agentModel?: string;
|
|
58
60
|
/** System prompt for the agent (optional) */
|
package/package.json
CHANGED