The blurry thumbnails are caused by a server-side issue. WebLink items don't have a "large" thumbnail generated, and the server falls back to "small" instead of using an available larger size.
This document outlines a technical evaluation and implementation plan for making SmartPages "AI Ready" based on the requirements in the AI Readiness Evaluation document. After deep analysis of the codebase, I've identified the current state, gaps, and a phased approach to achieve AI-native content creation and transformation.
Recommendation: Incremental Refactor - The existing architecture has solid foundations that can be extended for AI-first workflows without a full platform migration.
Analysis of implementing the AI Text Transform feature for Highspot, including streaming capabilities.
Based on the original technical design gist.
PR: https://github.com/highspot/nutella/pull/66718
JIRA: HS-155885
Feature Flag: uat_improvements
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "pagedesigner": { | |
| "create": true, | |
| "pageDesign": { | |
| "settings": { | |
| "pitch": { | |
| "items": [], | |
| "content_blocks": [] | |
| }, | |
| "kind": "DigitalRoom" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #List the names and total profit for all salespeople who have orders with customers in IL | |
| SELECT | |
| sp.name, SUM(o.profit) as Profit | |
| FROM | |
| salespeople AS sp | |
| INNER JOIN | |
| orders AS o ON sp.id = o.salesperson_id | |
| INNER JOIN | |
| customers AS c ON c.id = o.cust_id | |
| WHERE |
NewerOlder