From 595ae4ba2db7778e482e06a08c428d94c8c8d83d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francisco=20Javier=20Cavero=20L=C3=B3pez?= Date: Thu, 11 Dec 2025 17:20:10 +0100 Subject: [PATCH] fix: minor improvements --- .../src/modules/harvey/components/ChatTranscript.tsx | 2 +- .../src/modules/harvey/components/ContextManager.tsx | 3 +++ frontend/src/modules/harvey/prompts.ts | 12 ++++++------ 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/frontend/src/modules/harvey/components/ChatTranscript.tsx b/frontend/src/modules/harvey/components/ChatTranscript.tsx index 821ec61..6269ae0 100644 --- a/frontend/src/modules/harvey/components/ChatTranscript.tsx +++ b/frontend/src/modules/harvey/components/ChatTranscript.tsx @@ -23,7 +23,7 @@ function ChatTranscript({ messages, isLoading, promptPresets = [], onPresetSelec Welcome to H.A.R.V.E.Y. - Your AI assistant for pricing intelligence and optimal subscription recommendations. + Enabling seamless execution of the Pricing Intelligence Interpretation Process. {promptPresets.length > 0 && onPresetSelect && ( diff --git a/frontend/src/modules/harvey/components/ContextManager.tsx b/frontend/src/modules/harvey/components/ContextManager.tsx index d343c11..9ef9984 100644 --- a/frontend/src/modules/harvey/components/ContextManager.tsx +++ b/frontend/src/modules/harvey/components/ContextManager.tsx @@ -66,6 +66,9 @@ function ContextManager({ items, detectedUrls, onAdd, onRemove, onClear }: Props Add URLs or YAML exports to ground H.A.R.V.E.Y.'s answers. + + All pricings detected or added via URL will be modeled automatically; this process can take up to 30–60 minutes. + diff --git a/frontend/src/modules/harvey/prompts.ts b/frontend/src/modules/harvey/prompts.ts index 9f6a448..8e447ff 100644 --- a/frontend/src/modules/harvey/prompts.ts +++ b/frontend/src/modules/harvey/prompts.ts @@ -5,10 +5,10 @@ import type { PromptPreset } from './types/types'; export const PROMPT_PRESETS: PromptPreset[] = [ { id: 'overleaf-optimal-plan', - label: 'Find best value plan with GitHub integration', - description: 'Find the most affordable Overleaf plan that includes GitHub integration and document history.', + label: 'Find the cheapest Overleaf subscription that includes certain features', + description: 'Find the most affordable Overleaf configuration available to establish a subscription that includes GitHub integration and document history.', question: - 'Using the Overleaf pricing, what is the cheapest plan that bundles GitHub integration and the full document history? Compare it with the more expensive tiers.', + 'Using the Overleaf pricing, what is the cheapest configuration that bundles GitHub integration and the full document history? Compare it with the more expensive tiers.', context: [ { kind: 'yaml', @@ -20,10 +20,10 @@ export const PROMPT_PRESETS: PromptPreset[] = [ }, { id: 'overleaf-seat-limits', - label: 'Compare collaborator limits across plans', - description: 'Summarise the collaborator capacity per Overleaf plan and highlight the maximum.', + label: 'Compare usage limits across Overleaf pricing', + description: 'Compare the collaborator capacity per Overleaf configuration and highlight the maximum.', question: - 'From the Overleaf pricing file, list each plan with its collaborator limit and indicate which plan allows the highest number of collaborators.', + 'From the Overleaf pricing, list each plan with its collaborator limit and indicate which plan allows the highest number of collaborators.', context: [ { kind: 'yaml',