@equos/node-sdk 2.0.11 → 2.1.1-rc.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.
@@ -55,24 +55,17 @@ export declare enum AgentProvider {
55
55
  gemini = "gemini",
56
56
  elevenlabs = "elevenlabs"
57
57
  }
58
- export interface OpenaiAgentConfig {
59
- instructions: string;
60
- model: OpenaiRealtimeModels;
61
- voice: OpenaiRealtimeVoices;
62
- }
63
- export interface GeminiAgentConfig {
64
- instructions: string;
65
- model: GeminiRealtimeModels;
66
- voice: GeminiRealtimeVoices;
67
- }
68
- export interface ElevenlabsAgentConfig {
69
- elevenlabsAgentId: string;
70
- }
71
58
  export interface CreateEquosAgentRequest {
72
59
  provider: AgentProvider;
73
60
  client?: string | null;
74
61
  name?: string | null;
75
- config: OpenaiAgentConfig | GeminiAgentConfig | ElevenlabsAgentConfig;
62
+ model?: GeminiRealtimeModels;
63
+ voice?: GeminiRealtimeVoices;
64
+ instructions?: string;
65
+ search?: boolean;
66
+ emotions?: boolean;
67
+ memory?: boolean;
68
+ remoteId?: string | null;
76
69
  }
77
70
  export interface EquosAgent {
78
71
  id: string;
@@ -80,7 +73,13 @@ export interface EquosAgent {
80
73
  provider: AgentProvider;
81
74
  name?: string;
82
75
  client?: string;
83
- config: OpenaiAgentConfig | GeminiAgentConfig | ElevenlabsAgentConfig;
76
+ model?: OpenaiRealtimeModels | GeminiRealtimeModels;
77
+ voice?: OpenaiRealtimeVoices | GeminiRealtimeVoices;
78
+ instructions?: string;
79
+ remoteId?: string;
80
+ search: boolean;
81
+ emotions: boolean;
82
+ memory: boolean;
84
83
  createdAt: Date;
85
84
  updatedAt: Date;
86
85
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equos/node-sdk",
3
- "version": "2.0.11",
3
+ "version": "2.1.1-rc.0",
4
4
  "description": "Equos.ai node.js official SDK.",
5
5
  "keywords": [
6
6
  "ai",