@realtimex/realtimex-alchemy 1.0.30 → 1.0.32
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/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.32] - 2026-01-24
|
|
9
|
+
|
|
10
|
+
### Improved
|
|
11
|
+
- **Analysis**: Updated Alchemist scoring criteria to explicitly include "Significant Industry News (Mergers, IPOs, Major Releases)" as a Medium Score (50-79) category, ensuring critical market updates aren't filtered out as noise.
|
|
12
|
+
|
|
13
|
+
## [1.0.31] - 2026-01-24
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
- **Database**: Dropped legacy embedding tables (`embedding_jobs`, `signal_embeddings`) and functions; migrated fully to RealTimeX SDK vector storage.
|
|
17
|
+
- **UI**: Removed `HighConfidenceIndicator` from Signal Cards to reduce visual clutter.
|
|
18
|
+
- **Maintenance**: Reduced console log noise in API and Alchemist Engine for cleaner debugging.
|
|
19
|
+
|
|
8
20
|
## [1.0.30] - 2026-01-24
|
|
9
21
|
|
|
10
22
|
### Added
|
package/dist/api/index.js
CHANGED
|
@@ -217,7 +217,6 @@ app.post('/api/llm/test', async (req, res) => {
|
|
|
217
217
|
});
|
|
218
218
|
// Proxy: Get Chat Providers
|
|
219
219
|
app.get('/api/sdk/providers/chat', async (req, res) => {
|
|
220
|
-
console.log('[API] Proxying chat providers request...');
|
|
221
220
|
try {
|
|
222
221
|
if (!await SDKService.isAvailable()) {
|
|
223
222
|
console.warn('[API] SDK not available for chat providers');
|
|
@@ -240,7 +240,7 @@ export class AlchemistService {
|
|
|
240
240
|
|
|
241
241
|
CRITICAL SCORING:
|
|
242
242
|
High Score (80-100): Original research, concrete data points, contrarian insights, deep technical details, official documentation. MATCHES USER INTERESTS/BOOSTED TOPICS.
|
|
243
|
-
Medium Score (50-79): Decent summaries, useful aggregate news, tutorials, reference material
|
|
243
|
+
Medium Score (50-79): Significant Industry News (Mergers, IPOs, Major Releases), Decent summaries, useful aggregate news, tutorials, reference material.
|
|
244
244
|
Low Score (0-49): Marketing fluff, SEO clickbait, generic listicles, navigation menus only, login pages, site footers, OR MATCHES USER DISLIKES (Dismissed topics).
|
|
245
245
|
|
|
246
246
|
Return STRICT JSON:
|