@rely-ai/caliber 1.7.2 → 1.7.3
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/bin.js +1 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -4607,7 +4607,7 @@ function trackInitProjectDiscovered(languageCount, dependencyCount, fileCount) {
|
|
|
4607
4607
|
trackEvent("init_project_discovered", { language_count: languageCount, dependency_count: dependencyCount, file_count: fileCount });
|
|
4608
4608
|
}
|
|
4609
4609
|
function trackInitAgentSelected(agents) {
|
|
4610
|
-
trackEvent("init_agent_selected", { agents });
|
|
4610
|
+
trackEvent("init_agent_selected", { agents: agents.join(",") });
|
|
4611
4611
|
}
|
|
4612
4612
|
function trackInitScoreComputed(score, passingCount, failingCount, earlyExit) {
|
|
4613
4613
|
trackEvent("init_score_computed", { score, passing_count: passingCount, failing_count: failingCount, early_exit: earlyExit });
|
package/package.json
CHANGED