@m4trix/core 0.8.1 → 0.10.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.cjs +325 -1685
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -3
- package/dist/index.js +325 -1679
- package/dist/index.js.map +1 -1
- package/dist/matrix/index.cjs +325 -58
- package/dist/matrix/index.cjs.map +1 -1
- package/dist/matrix/index.d.ts +121 -30
- package/dist/matrix/index.js +325 -60
- package/dist/matrix/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
export { AudioContextState, AudioProcessingConfig, BaseVoiceEndpointAdapter, Emitter, EndpointConversationOptions, InputAudioController, SendVoiceFileParams, SocketConversationOptions, StartRecordingCallbacks, StopRecordingCallbacks, UseEndpointConversationResult, UseSocketConversationResult, VoiceAgentState, VoiceEndpointAdapter, VoiceEndpointConfig, VoiceSocketAdapter, VoiceSocketConfig, VoiceSocketMessage, useConversation, useSocketConversation } from './react/index.js';
|
|
2
|
-
export { AiCursor } from './ui/index.js';
|
|
3
1
|
export { HttpStreamOptions, MessageStream, Pump, Source, StreamChunk, StreamTransformer, ensureFullWords, httpStreamResponse } from './stream/index.js';
|
|
4
2
|
export { BaseMessage, Message, Role, SocketEventName, SocketIoFactory, TextMessage, VoiceMessage } from './api/index.js';
|
|
5
3
|
export { FormatType, MessageFilterType, TransformMessages } from './helper/index.js';
|
|
6
|
-
export { Agent, AgentBinding, AgentFactory, AgentNetwork, AgentNetworkEvent, AgentNetworkEventDef, AnyAgent, AuthResult, Channel, ChannelDef, ChannelName, ConfiguredChannel, EmitPayload, EventEnvelope, EventMeta, EventMetaSchema, EventPlane, ExposeAuthError, ExposeOptions, ExposeRequest, ExposeSelect, ExposedAPI, ExposedStream, ExpressEndpoint, ExpressHandler, ExpressRequest, ExpressResponse, NextEndpoint, NextGetHandler, OnRequestContext, SetupContext, Sink, SinkDef, SpawnCallbackContext, SpawnFn, SpawnerBuilder, StreamFactory, formatSSE, isHttpStreamSink, toSSEStream } from './matrix/index.js';
|
|
4
|
+
export { Agent, AgentBinding, AgentFactory, AgentNetwork, AgentNetworkEvent, AgentNetworkEventDef, AnyAgent, AuthResult, Channel, ChannelDef, ChannelName, ConfiguredChannel, ContextEvents, EmitPayload, EnvelopeLike, EventEnvelope, EventMeta, EventMetaSchema, EventPlane, ExposeAuthError, ExposeOptions, ExposeRequest, ExposeSelect, ExposedAPI, ExposedStream, ExpressEndpoint, ExpressEndpointOptions, ExpressHandler, ExpressRequest, ExpressResponse, NextEndpoint, NextEndpointOptions, NextGetHandler, OnRequestContext, RunEvents, SetupContext, Sink, SinkDef, SpawnCallbackContext, SpawnFn, SpawnerBuilder, StreamFactory, UnboundEvent, consoleTracer, consoleTracerLayer, formatSSE, isHttpStreamSink, toSSEStream } from './matrix/index.js';
|
|
7
5
|
export { Schema as S } from 'effect';
|
|
8
6
|
import 'socket.io';
|
|
9
7
|
import '@langchain/core/messages';
|