blink 0.1.95 → 0.1.97

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.
@@ -166,7 +166,8 @@ declare class ChatManager {
166
166
  * Send a message to the agent
167
167
  */
168
168
  sendMessage(message: StoredMessage): Promise<void>;
169
- private processQueue;
169
+ start(): Promise<void>;
170
+ private processQueueOrRun;
170
171
  /**
171
172
  * Stop the current streaming operation
172
173
  */
@@ -236,7 +237,7 @@ declare function createLocalServer(options: CreateLocalServerOptions): {
236
237
  getChatManager: (chatId: string) => ChatManager;
237
238
  listChats: () => Promise<StoreEntry[]>;
238
239
  lockChat: (chatId: string) => Promise<LockedStoreEntry<StoredChat>>;
239
- startChat: (chatId: string) => void;
240
+ startChat: (chatId: string) => Promise<void>;
240
241
  stopChat: (chatId: string) => void;
241
242
  dispose: () => void;
242
243
  };
@@ -166,7 +166,8 @@ declare class ChatManager {
166
166
  * Send a message to the agent
167
167
  */
168
168
  sendMessage(message: StoredMessage): Promise<void>;
169
- private processQueue;
169
+ start(): Promise<void>;
170
+ private processQueueOrRun;
170
171
  /**
171
172
  * Stop the current streaming operation
172
173
  */
@@ -236,7 +237,7 @@ declare function createLocalServer(options: CreateLocalServerOptions): {
236
237
  getChatManager: (chatId: string) => ChatManager;
237
238
  listChats: () => Promise<StoreEntry[]>;
238
239
  lockChat: (chatId: string) => Promise<LockedStoreEntry<StoredChat>>;
239
- startChat: (chatId: string) => void;
240
+ startChat: (chatId: string) => Promise<void>;
240
241
  stopChat: (chatId: string) => void;
241
242
  dispose: () => void;
242
243
  };