Skip to content

Commit f17c0d2

Browse files
authored
Merge pull request #202 from ruvnet/chore/update-build-artifacts
chore: update npm build artifacts
2 parents 2ab9234 + c033e88 commit f17c0d2

409 files changed

Lines changed: 25153 additions & 203 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

npm/packages/agentic-synth-examples/examples/beginner/simple-data-generation.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
*
1717
* Run: npx tsx examples/beginner/simple-data-generation.ts
1818
*/
19-
declare const synth: any;
19+
import { AgenticSynth } from '@ruvector/agentic-synth';
20+
declare const synth: AgenticSynth;
2021
declare function generateUserData(): Promise<void>;
2122
declare function generateWithConstraints(): Promise<void>;
2223
export { generateUserData, generateWithConstraints, synth };

npm/packages/agentic-synth-examples/examples/beginner/simple-data-generation.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

npm/packages/agentic-synth-examples/src/dspy/training-session.d.ts

Lines changed: 61 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,15 +111,33 @@ export interface TrainingConfig {
111111
}
112112
export declare const TrainingConfigSchema: z.ZodObject<{
113113
models: z.ZodArray<z.ZodObject<{
114-
provider: z.ZodEnum<typeof ModelProvider>;
114+
provider: z.ZodNativeEnum<typeof ModelProvider>;
115115
model: z.ZodString;
116116
apiKey: z.ZodString;
117117
temperature: z.ZodOptional<z.ZodNumber>;
118118
maxTokens: z.ZodOptional<z.ZodNumber>;
119119
topP: z.ZodOptional<z.ZodNumber>;
120120
presencePenalty: z.ZodOptional<z.ZodNumber>;
121121
frequencyPenalty: z.ZodOptional<z.ZodNumber>;
122-
}, z.core.$strip>>;
122+
}, "strip", z.ZodTypeAny, {
123+
provider: ModelProvider;
124+
apiKey: string;
125+
model: string;
126+
temperature?: number | undefined;
127+
maxTokens?: number | undefined;
128+
topP?: number | undefined;
129+
presencePenalty?: number | undefined;
130+
frequencyPenalty?: number | undefined;
131+
}, {
132+
provider: ModelProvider;
133+
apiKey: string;
134+
model: string;
135+
temperature?: number | undefined;
136+
maxTokens?: number | undefined;
137+
topP?: number | undefined;
138+
presencePenalty?: number | undefined;
139+
frequencyPenalty?: number | undefined;
140+
}>, "many">;
123141
optimizationRounds: z.ZodDefault<z.ZodNumber>;
124142
convergenceThreshold: z.ZodDefault<z.ZodNumber>;
125143
maxConcurrency: z.ZodDefault<z.ZodNumber>;
@@ -129,7 +147,47 @@ export declare const TrainingConfigSchema: z.ZodObject<{
129147
timeoutPerIteration: z.ZodDefault<z.ZodNumber>;
130148
baselineIterations: z.ZodDefault<z.ZodNumber>;
131149
benchmarkSamples: z.ZodDefault<z.ZodNumber>;
132-
}, z.core.$strip>;
150+
}, "strip", z.ZodTypeAny, {
151+
maxConcurrency: number;
152+
models: {
153+
provider: ModelProvider;
154+
apiKey: string;
155+
model: string;
156+
temperature?: number | undefined;
157+
maxTokens?: number | undefined;
158+
topP?: number | undefined;
159+
presencePenalty?: number | undefined;
160+
frequencyPenalty?: number | undefined;
161+
}[];
162+
optimizationRounds: number;
163+
convergenceThreshold: number;
164+
enableCrossLearning: boolean;
165+
enableHooksIntegration: boolean;
166+
timeoutPerIteration: number;
167+
baselineIterations: number;
168+
benchmarkSamples: number;
169+
costBudget?: number | undefined;
170+
}, {
171+
models: {
172+
provider: ModelProvider;
173+
apiKey: string;
174+
model: string;
175+
temperature?: number | undefined;
176+
maxTokens?: number | undefined;
177+
topP?: number | undefined;
178+
presencePenalty?: number | undefined;
179+
frequencyPenalty?: number | undefined;
180+
}[];
181+
maxConcurrency?: number | undefined;
182+
optimizationRounds?: number | undefined;
183+
convergenceThreshold?: number | undefined;
184+
enableCrossLearning?: boolean | undefined;
185+
enableHooksIntegration?: boolean | undefined;
186+
costBudget?: number | undefined;
187+
timeoutPerIteration?: number | undefined;
188+
baselineIterations?: number | undefined;
189+
benchmarkSamples?: number | undefined;
190+
}>;
133191
/**
134192
* Abstract base class for all model-specific training agents
135193
*/

npm/packages/agentic-synth-examples/src/dspy/training-session.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
declare const _default: import("tsup").Options | import("tsup").Options[] | ((overrideOptions: import("tsup").Options) => import("tsup").Options | import("tsup").Options[] | Promise<import("tsup").Options | import("tsup").Options[]>);
1+
declare const _default: any;
22
export default _default;
33
//# sourceMappingURL=tsup.config.d.ts.map
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Vitest Configuration for agentic-synth-examples
33
*/
4-
declare const _default: import("vite").UserConfig;
4+
declare const _default: any;
55
export default _default;
66
//# sourceMappingURL=vitest.config.d.ts.map

npm/packages/agentic-synth/examples/swarms/agent-coordination.d.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,35 +13,35 @@
1313
/**
1414
* Generate communication patterns for multi-agent systems
1515
*/
16-
export declare function agentCommunicationPatterns(): Promise<any>;
16+
export declare function agentCommunicationPatterns(): Promise<import("../../dist/index.js").GenerationResult<unknown>>;
1717
/**
1818
* Generate task distribution data for load balancing
1919
*/
20-
export declare function taskDistributionScenarios(): Promise<any>;
20+
export declare function taskDistributionScenarios(): Promise<import("../../dist/index.js").GenerationResult<unknown>>;
2121
/**
2222
* Generate consensus protocol data for distributed decision making
2323
*/
24-
export declare function consensusBuildingData(): Promise<any>;
24+
export declare function consensusBuildingData(): Promise<import("../../dist/index.js").GenerationResult<unknown>>;
2525
/**
2626
* Generate load balancing metrics and patterns
2727
*/
2828
export declare function loadBalancingPatterns(): Promise<{
29-
metrics: any;
30-
agentMetrics: any;
29+
metrics: import("../../dist/index.js").GenerationResult<unknown>;
30+
agentMetrics: import("../../dist/index.js").GenerationResult<unknown>;
3131
}>;
3232
/**
3333
* Generate fault tolerance and failure recovery scenarios
3434
*/
3535
export declare function faultToleranceScenarios(): Promise<{
36-
failures: any;
37-
recoveryActions: any;
36+
failures: import("../../dist/index.js").GenerationResult<unknown>;
37+
recoveryActions: import("../../dist/index.js").GenerationResult<unknown>;
3838
}>;
3939
/**
4040
* Generate hierarchical swarm coordination data
4141
*/
4242
export declare function hierarchicalCoordination(): Promise<{
43-
topology: any;
44-
events: any;
43+
topology: import("../../dist/index.js").GenerationResult<unknown>;
44+
events: import("../../dist/index.js").GenerationResult<unknown>;
4545
}>;
4646
export declare function runAllCoordinationExamples(): Promise<void>;
4747
//# sourceMappingURL=agent-coordination.d.ts.map

npm/packages/agentic-synth/examples/swarms/agent-coordination.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)