@teamlearners/clawops 0.13.0 → 0.14.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/README.md +11 -0
- package/dist/agent/index.cjs +9 -11
- package/dist/agent/index.cjs.map +1 -1
- package/dist/agent/index.d.cts +0 -3
- package/dist/agent/index.d.ts +0 -3
- package/dist/agent/index.js +2 -4
- package/dist/agent/index.js.map +1 -1
- package/dist/{chunk-WH65DGWI.js → chunk-6S6PV2RY.js} +3 -3
- package/dist/{chunk-WH65DGWI.js.map → chunk-6S6PV2RY.js.map} +1 -1
- package/dist/{chunk-T563RQOL.cjs → chunk-RRUQMSFD.cjs} +3 -3
- package/dist/{chunk-T563RQOL.cjs.map → chunk-RRUQMSFD.cjs.map} +1 -1
- package/dist/index.cjs +85 -37
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +119 -2
- package/dist/index.d.ts +119 -2
- package/dist/index.js +52 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/agent/index.d.cts
CHANGED
|
@@ -761,8 +761,6 @@ interface GeminiRealtimeOptions {
|
|
|
761
761
|
greeting?: boolean;
|
|
762
762
|
/** Gemini VAD config. @google/genai RealtimeInputConfig 구조 그대로 전달. */
|
|
763
763
|
realtimeInputConfig?: Record<string, unknown>;
|
|
764
|
-
/** Input audio transcription config. @google/genai AudioTranscriptionConfig 구조 그대로 전달. */
|
|
765
|
-
inputAudioTranscription?: Record<string, unknown>;
|
|
766
764
|
}
|
|
767
765
|
declare class GeminiRealtime implements Session {
|
|
768
766
|
private _apiKey;
|
|
@@ -772,7 +770,6 @@ declare class GeminiRealtime implements Session {
|
|
|
772
770
|
private _language;
|
|
773
771
|
private _greeting;
|
|
774
772
|
private _realtimeInputConfig;
|
|
775
|
-
private _inputAudioTranscription;
|
|
776
773
|
private _session;
|
|
777
774
|
private _call;
|
|
778
775
|
private _tools;
|
package/dist/agent/index.d.ts
CHANGED
|
@@ -761,8 +761,6 @@ interface GeminiRealtimeOptions {
|
|
|
761
761
|
greeting?: boolean;
|
|
762
762
|
/** Gemini VAD config. @google/genai RealtimeInputConfig 구조 그대로 전달. */
|
|
763
763
|
realtimeInputConfig?: Record<string, unknown>;
|
|
764
|
-
/** Input audio transcription config. @google/genai AudioTranscriptionConfig 구조 그대로 전달. */
|
|
765
|
-
inputAudioTranscription?: Record<string, unknown>;
|
|
766
764
|
}
|
|
767
765
|
declare class GeminiRealtime implements Session {
|
|
768
766
|
private _apiKey;
|
|
@@ -772,7 +770,6 @@ declare class GeminiRealtime implements Session {
|
|
|
772
770
|
private _language;
|
|
773
771
|
private _greeting;
|
|
774
772
|
private _realtimeInputConfig;
|
|
775
|
-
private _inputAudioTranscription;
|
|
776
773
|
private _session;
|
|
777
774
|
private _call;
|
|
778
775
|
private _tools;
|
package/dist/agent/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DEFAULT_BASE_URL, AgentError, AgentConnectionError, VERSION } from '../chunk-
|
|
1
|
+
import { DEFAULT_BASE_URL, AgentError, AgentConnectionError, VERSION } from '../chunk-6S6PV2RY.js';
|
|
2
2
|
import pino from 'pino';
|
|
3
3
|
import * as fs from 'fs';
|
|
4
4
|
import * as path from 'path';
|
|
@@ -2987,7 +2987,6 @@ var GeminiRealtime = class _GeminiRealtime {
|
|
|
2987
2987
|
_language;
|
|
2988
2988
|
_greeting;
|
|
2989
2989
|
_realtimeInputConfig;
|
|
2990
|
-
_inputAudioTranscription;
|
|
2991
2990
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
2992
2991
|
_session = null;
|
|
2993
2992
|
_call = null;
|
|
@@ -3010,7 +3009,6 @@ var GeminiRealtime = class _GeminiRealtime {
|
|
|
3010
3009
|
this._language = options.language ?? "ko";
|
|
3011
3010
|
this._greeting = options.greeting ?? true;
|
|
3012
3011
|
this._realtimeInputConfig = options.realtimeInputConfig ?? null;
|
|
3013
|
-
this._inputAudioTranscription = options.inputAudioTranscription ?? {};
|
|
3014
3012
|
}
|
|
3015
3013
|
/** Inject per-call ToolRegistry. */
|
|
3016
3014
|
setToolRegistry(registry) {
|
|
@@ -3062,7 +3060,7 @@ var GeminiRealtime = class _GeminiRealtime {
|
|
|
3062
3060
|
}
|
|
3063
3061
|
}
|
|
3064
3062
|
},
|
|
3065
|
-
inputAudioTranscription:
|
|
3063
|
+
inputAudioTranscription: {},
|
|
3066
3064
|
outputAudioTranscription: {}
|
|
3067
3065
|
};
|
|
3068
3066
|
if (this._realtimeInputConfig) {
|