wayfind 2.0.60 → 2.0.61
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/bin/team-context.js
CHANGED
|
@@ -4926,12 +4926,12 @@ async function indexJournalsIfAvailable() {
|
|
|
4926
4926
|
console.log('No journal files found — skipping index.');
|
|
4927
4927
|
return;
|
|
4928
4928
|
}
|
|
4929
|
-
const
|
|
4930
|
-
console.log(`Indexing ${entries.length} journal files from ${journalDir}${
|
|
4929
|
+
const hasEmbeddings = !!(process.env.OPENAI_API_KEY || process.env.AZURE_OPENAI_EMBEDDING_ENDPOINT) || llm.getEmbeddingProviderInfo().available;
|
|
4930
|
+
console.log(`Indexing ${entries.length} journal files from ${journalDir}${hasEmbeddings ? ' (with embeddings)' : ''}...`);
|
|
4931
4931
|
try {
|
|
4932
4932
|
const stats = await contentStore.indexJournals({
|
|
4933
4933
|
journalDir,
|
|
4934
|
-
embeddings:
|
|
4934
|
+
embeddings: hasEmbeddings,
|
|
4935
4935
|
});
|
|
4936
4936
|
console.log(`Indexed ${stats.entryCount} entries (${stats.newEntries} new, ${stats.updatedEntries} updated).`);
|
|
4937
4937
|
} catch (err) {
|
|
@@ -4953,7 +4953,7 @@ async function indexConversationsIfAvailable() {
|
|
|
4953
4953
|
try {
|
|
4954
4954
|
const stats = await contentStore.indexConversations({
|
|
4955
4955
|
projectsDir,
|
|
4956
|
-
embeddings: !!(process.env.OPENAI_API_KEY || process.env.AZURE_OPENAI_EMBEDDING_ENDPOINT),
|
|
4956
|
+
embeddings: !!(process.env.OPENAI_API_KEY || process.env.AZURE_OPENAI_EMBEDDING_ENDPOINT) || llm.getEmbeddingProviderInfo().available,
|
|
4957
4957
|
});
|
|
4958
4958
|
console.log(`Conversations: ${stats.transcriptsProcessed} processed, ${stats.decisionsExtracted} decisions extracted (${stats.skipped} skipped).`);
|
|
4959
4959
|
} catch (err) {
|
|
@@ -4967,12 +4967,12 @@ async function indexSignalsIfAvailable() {
|
|
|
4967
4967
|
console.log(`No signals at ${signalsDir} — skipping index.`);
|
|
4968
4968
|
return;
|
|
4969
4969
|
}
|
|
4970
|
-
const
|
|
4971
|
-
console.log(`Indexing signals from ${signalsDir}${
|
|
4970
|
+
const hasEmbeddings = !!(process.env.OPENAI_API_KEY || process.env.AZURE_OPENAI_EMBEDDING_ENDPOINT) || llm.getEmbeddingProviderInfo().available;
|
|
4971
|
+
console.log(`Indexing signals from ${signalsDir}${hasEmbeddings ? ' (with embeddings)' : ''}...`);
|
|
4972
4972
|
try {
|
|
4973
4973
|
const stats = await contentStore.indexSignals({
|
|
4974
4974
|
signalsDir,
|
|
4975
|
-
embeddings:
|
|
4975
|
+
embeddings: hasEmbeddings,
|
|
4976
4976
|
});
|
|
4977
4977
|
console.log(`Signals: ${stats.fileCount} files (${stats.newEntries} new, ${stats.updatedEntries} updated, ${stats.skippedEntries} skipped).`);
|
|
4978
4978
|
} catch (err) {
|
package/package.json
CHANGED