smoltalk 0.0.57 → 0.0.58
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/types.d.ts +2 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -169,6 +169,8 @@ export type SmolConfig = {
|
|
|
169
169
|
debugMode: boolean;
|
|
170
170
|
apiKey: string;
|
|
171
171
|
}>;
|
|
172
|
+
/** If you register a new model, you can pass config options to the new model here. */
|
|
173
|
+
metadata?: Record<string, any>;
|
|
172
174
|
};
|
|
173
175
|
export type ToolLoopDetection = {
|
|
174
176
|
enabled: boolean;
|