symposium 1.2.0 → 1.2.1
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/index.js +8 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -5,9 +5,14 @@ import Agent from "./Agent.js";
|
|
|
5
5
|
import Thread from "./Thread.js";
|
|
6
6
|
import Tool from "./Tool.js";
|
|
7
7
|
import Logger from "./Logger.js";
|
|
8
|
+
|
|
8
9
|
import ContextHandler from "./ContextHandler.js";
|
|
9
10
|
import Summarizer from "./Summarizer.js";
|
|
10
11
|
|
|
12
|
+
import Context from "./Context.js";
|
|
13
|
+
import File from "./Contexts/File.js";
|
|
14
|
+
import Text from "./Contexts/Text.js";
|
|
15
|
+
|
|
11
16
|
export {
|
|
12
17
|
Symposium,
|
|
13
18
|
Agent,
|
|
@@ -16,4 +21,7 @@ export {
|
|
|
16
21
|
Logger,
|
|
17
22
|
ContextHandler,
|
|
18
23
|
Summarizer,
|
|
24
|
+
Context,
|
|
25
|
+
File,
|
|
26
|
+
Text,
|
|
19
27
|
};
|