Passer au contenu principal

Maîtriser vos modèles Heidi : Un guide avancé

For practitioners who want dynamic, intelligent templates that adapt to different clinical scenarios.

Mis à jour aujourd’hui

Welcome to the final part of our template tutorial series. Cette session porte sur l'amélioration de vos compétences en matière de création de modèles en utilisant des commandes IA complexes pour personnaliser entièrement vos modèles dans Heidi Health. Whether you need specific formats, dynamic content adjustments, or seamless integration of past clinical data, this guide will help you leverage Heidi’s advanced capabilities.


Is This Guide Right for You?

This guide is for you if:

  • Your basic templates are working but you need dynamic behaviour

  • You want different outputs based on patient data (e.g. age, conditions, lab values)

  • You’re building templates that handle multiple scenarios

  • You need to incorporate historical information from previous sessions

  • You want to create “macros” that auto-populate management plans

⚠️ Not quite ready? If you’re still getting comfortable with the basics, start here:


What’s in This Guide

Key Section

Ce que vous allez apprendre

Conditional Logic

Create dynamic templates that adapt based on patient data

Creating Clinical Macros

Auto-generate management plans based on conditions

Intégrer le contexte historique dans la documentation actuelle

Incorporate data from previous sessions

Understanding Memory vs Templates vs Snippets

When to use each feature

Case Study: Putting It All Together

A full advanced template walkthrough

Advanced Troubleshooting

Complex issues and solutions


Tutoriel vidéo


Récapitulatif des techniques intermédiaires

Before diving into advanced strategies, let's quickly review some of the intermediate techniques we discussed in the previous article:

  • Reformatage des modèles : Nous avons exploré comment modifier les modèles en utilisant les instructions IA pour suivre des directives de formatage spécifiques, telles que l'écriture de la section « Subjective » sous forme narrative sans puces.

  • Types d'instructions IA : Nous avons introduit les instructions IA de base pour contrôler le style du contenu, comme l'utilisation de phrases complètes ou le formatage ligne par ligne des informations. Les instructions IA peuvent être spécifiques à un paramètre particulier ou à une section particulière, ou il peut s'agir d'instructions générales ajoutées au début ou à la fin de votre modèle, séparément des sections/paramètres de votre modèle.

En nous appuyant sur ces concepts, nous allons maintenant explorer des commandes IA plus avancées pour personnaliser davantage vos notes cliniques.


Using the Template Builder for Advanced Edits

While this guide focuses on manual template editing for precise control, you can also use the template builder to make advanced changes. Simply describe what you want in plain English - here are some examples:

  • "Add conditional logic so that if the patient is under 18, include a note about guardian consent at the top of the note"

  • "If allergies are not mentioned, print “NKDA”

  • "Add historical notes handling so previous session info is incorporated but only today's transcript represents current findings"

The template builder will generate the appropriate syntax based on your input. You can then view and further refine the underlying code if needed.


Commandes IA avancées pour la personnalisation

Heidi fournit plusieurs paramètres intégrés pour vous aider à générer des notes cliniques dans des styles spécifiques. Cependant, vous devrez peut-être remplacer ces paramètres par défaut pour répondre à des exigences particulières. Voici comment vous pouvez utiliser les commandes IA avancées pour adapter vos modèles.

Conditional Logic (If-Then Statements)

Conditional logic allows you to create dynamic templates that automatically adapt based on patient data. This is one of the most powerful advanced features.

How Conditional Logic Works

Basic structure:

(If [condition], print "[text]". If [alternative condition], print "[alternative text]".)

The condition can be based on anything mentioned in the transcript, contextual notes, or patient details- age, diagnoses, lab values, medications, etc.

Quick Reference: Conditional Logic Patterns

Pattern

Template Builder

Manual Syntax

Simple If-Then

“If the patient is a smoker, add a line about smoking cessation including counselling provided and Quitline resources shared”

(Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. **If the patient is a smoker, print "Smoking cessation counselling provided."**)

If-Else

“If allergies aren’t mentioned, write NKDA”

[Allergies](Only include allergies if explicitly mentioned in transcript, contextual notes or clinical note. **If not mentioned, print "NKDA"**)

Age-based

“If patient is under 18, note guardian consent”

[Guardian consent] (**If patient is under 18, print "Guardian consent obtained." If 18 or older, omit this line.**)

Value-based

“If BMI is over 30, recommend weight management”

(Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. **If BMI is greater than 30, print "Weight management discussed."**)

Condition-based

“If diabetes is mentioned, include HbA1c follow-up”

(Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. **If diabetes is mentioned, print "HbA1c monitoring recommended."**)

Example 1: Simple Conditional

Scenario: You want to include smoking cessation advice only for patients who smoke.

Template Builder: “If the patient is a smoker, add smoking cessation including counselling provided and Quitline resources shared”

Manual Edit:

(Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. If the patient is a smoker, print "Smoking cessation counselling provided. Quitline resources shared." If the patient is a non-smoker, omit this statement entirely.)

Example 2: Age-Based Conditional

Scenario: You want different consent wording for paediatric vs adult patients.

Template Builder: “If patient is under 18, note that guardian consent was obtained”

Manual Edit:

[Consent] (If patient is under 18, print "Guardian/parent consent obtained for today's consultation." If patient is 18 or older, print "Patient consent obtained for today's consultation.")

Example 3: Lab Value Conditional

Scenario: You want to provide different recommendations based on HbA1c levels.

Template Builder: “Add glycaemic control assessment based on HbA1c level”

Manual Edit:

[Glycaemic assessment] (Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. If HbA1c is above 8%, print "Poor glycaemic control - treatment intensification recommended." If HbA1c is between 7% and 8%, print "Suboptimal glycaemic control - review medication adherence and lifestyle factors." If HbA1c is 7% or below, print "Adequate glycaemic control - continue current management.")

Example 4: Multiple Conditions (AND/OR)

Scenario: You want screening recommendations for specific patient groups.

Template Builder: “If the patient is female AND over 50 AND hasn’t had a recent mammogram, recommend mammogram screening”

Manual Edit:

[Screening recommendations] (Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. If the patient is female AND over 50 AND has not had a recent mammogram, print "Recommend mammogram screening - patient meets criteria for breast cancer screening." If these criteria are not all met, omit this recommendation entirely.)

Example 5: Nested Conditionals

Scenario: You want diabetes-specific advice, but only when diabetes is relevant.

Template Builder: “If diabetes is mentioned, assess glycaemic control based on HbA1c”

Manual Edit:

[Diabetes management] (Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. If diabetes is mentioned, then: If HbA1c is above 7%, print "Poor glycaemic control - intensify treatment." If HbA1c is 7% or below, print "Adequate glycaemic control - continue current management." If diabetes is not mentioned, omit this section entirely.)

Conditional Logic Reference Table

Type

Example Instruction

Simple Conditional

(Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. If [condition], print "[text]". If [alternative], print "[alternative text]".)

Multiple Conditions (AND)

(Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. If the patient is female AND over 50 AND has not had a recent mammogram, print "Recommend mammogram screening." If not all criteria are met, omit entirely.)

Multiple Conditions (OR)

(Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. If the patient is male OR under 50 OR has had a recent mammogram, omit this recommendation entirely.)

Nested Conditionals

(Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. If diabetes is mentioned, then: If HbA1c is greater than 7%, print "Poor control." If HbA1c less than or equal to 7%, print "Adequate control." If diabetes not mentioned, omit section.)

Conditional + Formatting

(Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. If multiple medications are prescribed, list each on a new line with dosage. If only one medication, write in a single sentence. If none, print "Nil medications prescribed.")

Verbatim Conditional

(Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. If the patient is a smoker, print: "Smoking cessation counselling provided. Resources for Quitline shared." If non-smoker, omit.)

Overall Template Conditional

(If this is a follow-up visit, include the "Progress Since Last Visit" section. If this is an initial consultation, omit that section entirely.)


Creating Clinical Macros

Macros are pre-defined blocks of text that are automatically inserted into your template’s output when certain conditions are met. This makes macros an excellent tool for standardised management plans.

How Macros Work

A macro is a combination of conditional logic with verbatim text. When a conditional logic statement is met, the subsequent verbatim text will be printed.

You can insert multiple macros within a template, to prepare for multiple scenarios.

Example: CKD Management Macro

Scenario: You want different management plans to appear automatically based on creatinine levels.

Forfait:

(Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. If creatinine is above 1.5 mg/dL and less than or equal to 2.0 mg/dL, print:

"Management Plan for CKD Stage 1:

- Monitor kidney function tests (serum creatinine, eGFR) every 6-12 months

- Recommend lifestyle modifications: low-sodium diet, regular physical activity

- Blood pressure control: Aim for BP < 140/90 mmHg using ACE inhibitors or ARBs

- Avoid nephrotoxic drugs (e.g., NSAIDs), smoking and alcohol intake")

(Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. If creatinine is above 2.0 mg/dL, print:

"Management Plan for CKD Stage 2:

- Monitor kidney function tests (serum creatinine, eGFR) every 3-6 months

- Low-protein diet (0.8 g/kg body weight per day), continue low-sodium diet

- Blood pressure control: Aim for BP < 130/80 mmHg with ACE inhibitors or ARBs

- Referral to nephrologist for assessment and co-management

- Discussed potential need for RRT if progression to Stage 3 or higher

- Encouraged vaccinations (influenza, pneumococcal, hepatitis B) as appropriate")

Understand this example: if the patient’s creatinine is mentioned as 1.8 mg/dL during the consult, the Stage 1 plan automatically appears. If it’s 2.3 mg/dL, the Stage 2 plan appears instead.

More Macro Examples

Hypertension Management:

(Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. If systolic BP is greater than 160 mmHg, print:

"Hypertension Management - Severe:

- Immediate medication initiation/adjustment required

- Consider combination therapy - Review in 2 weeks

- Home BP monitoring recommended")

(Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. If systolic BP is between 140 and 160 mmHg, print:

"Hypertension Management - Moderate:

- Lifestyle modifications: DASH diet, sodium restriction, exercise

- Medication review

- consider initiation if lifestyle measures insufficient

- Review in 4-6 weeks")

BMI-Based Advice:

(Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. If BMI is greater than 30, print:

"Weight Management:

- Discussed health risks associated with obesity

- Lifestyle modification counselling provided

- Consider referral to dietitian

- Set realistic weight loss goal of 5-10% body weight over 6 months

- Review in 4 weeks")


Intégrer le contexte historique dans la documentation actuelle

Souvent, il est nécessaire d'incorporer les données des sessions ou rencontres précédentes pour fournir une image clinique complète. Heidi’s templates can dynamically pull in information from contextual notes (i.e., additional notes including past healthcare encounters) that you enter into the Context tab in Heidi.

There are 2 ways to do this within Heidi:

  1. Linked sessions

  2. Manually add historical context in the Context tab

1. Linked Sessions

Linked sessions allow you to incorporate historical patient data into your current documentation, enabling more comprehensive and continuous patient care rather than isolated snapshots.

How to Link a Session to a Patient

  1. Open any session and click on the "Add Patient Details" input field

  2. Select the patient you want to link the session to, or create a new patient if they aren't listed

  3. The session will now be linked to that patient profile

How to Include Previous Sessions in Context:

For any linked session, you can choose which past sessions to include as context for your documentation. Sessions automatically appear with the three most recent previous sessions as default if you are using linked patients.

Si vous ne voulez pas les inclure, décochez manuellement la case en bas à gauche de la fenêtre de transcription.

Key Considerations for Linked Sessions

  • Session limit: Capped at 3 past sessions at this stage to maintain high output quality - this is something we're looking to expand in future updates.

  • Context changes: If you change the sessions included in your context, a Sync button will appear to update your outputs accordingly.

  • Deleted sessions: If you delete your sessions, you won't be able to use this feature for those sessions.

2. Utilising Contextual Notes for Follow-Up Visits

This scenario works best if you would prefer not to link patients, and prefer to manually upload the past clinical note to the session each time. This gives you greater control of what history you’d like to upload.

Example scenario: suppose you are documenting a follow-up session for a burn patient and want to include relevant information from the initial consultation.

  1. Inclure le contexte passé dans votre modèle :

    • First, find and copy the relevant details from the initial/previous session into the “Context” section, or upload a document containing historical patient information directly into the “Context” section.

  2. Add Contextual Instructions into your template:

    • Include a global AI instruction such as:

      (Les notes contextuelles contiendront des notes cliniques ou des résumés des rencontres sanitaires précédentes. Assurez-vous qu'elles sont résumées et intégrées dans les notes cliniques actuelles pour le même patient.)

      ou

      (Contextual notes will contain clinical notes or summaries from previous healthcare encounters. Historical information should be incorporated where relevant as background information. Only information from today's transcript should be documented as today's findings, examination results, or current status. Clearly distinguish between historical information and current findings.)

  3. Enregistrer, Actualiser et Régénérer :

    • Lorsque vous régénérez le contenu généré, Heidi extrait automatiquement les données historiques pertinentes, telles que les traitements précédents, la progression ou les résultats diagnostiques, et les intègre dans la documentation actuelle.

This method ensures that your follow-up notes are complete, and accurately reflect the patient’s clinical history. This reduces redundancy, and improves clarity.


Exploiter les techniques avancées pour un contrôle renforcé

Pour faire plein usage de ces commandes avancées, considérez les stratégies suivantes :

  1. Utiliser un langage et une terminologie précis :

    • L'IA de Heidi répond mieux aux termes spécifiques et aux formulations cohérentes. For example, use “transcript” to refer to conversations between the patient and clinician, or “contextual note” and “clinical note” to denote data from past healthcare encounters. This helps Heidi accurately interpret your instructions.

  2. Expérimenter avec le placement des instructions :

    • Les instructions IA générales peuvent parfois fonctionner mieux au début ou à la fin d'un modèle. Si une instruction ne fonctionne pas comme prévu, essayez de la déplacer.

  3. Utiliser une logique conditionnelle pour automatiser les décisions :

    • Les instructions conditionnelles peuvent rendre vos modèles plus dynamiques et adaptatifs. Experiment with different scenarios to automate decisions based on patient data, like lab results, vital signs, or previous diagnoses.

  4. Reference the Prompt glossary for Accurate Commands:

    • Heidi utilise des termes spécifiques pour identifier les différents types de données. Par exemple :

    • « Transcription » fait référence au texte de la conversation.

    • « Notes contextuelles » sont des résumés des rencontres sanitaires précédentes.

    • « Détails du patient » incluent les informations personnelles telles que le nom, l'âge ou les pronoms.

    • « Note clinique » est le document de base à partir duquel d'autres documents sont dérivés.

L'utilisation des termes corrects du glossaire garantit que Heidi interprète correctement vos commandes, ce qui conduit à des contenus générés plus précis.


Understanding Memory vs Templates vs Snippets

For advanced template users, it's important to understand when to use templates versus other Heidi features:

Fonctionnalité

Idéal pour

Scope

Exemples

Mémoire

Individual clinician or organisation-wide preferences that apply everywhere

All templates, all sessions

Date format (DD/MM/YYYY), spelling (Australian English), approved abbreviations

Templates

Note-specific structure and conditional logic

One template type

SOAP format, referral letter structure, specialty-specific requirements

Textes prédéfinis

Reusable text blocks you insert manually

On-demand insertion

Standard patient education text, referral letter closings, safety netting advice

When to Use Memory

✅ Use Memory for:

  • Date and time formats

  • Spelling conventions (UK/US/AU English)

  • Standard abbreviations you or your practice uses

  • Default units (metric/imperial)

  • Your practice details (name, address, contact)

When to Use Templates

✅ Use Templates for:

  • Note structure (SOAP, HOPC, problem-based)

  • Conditional logic (if-then statements)

  • Section-specific formatting

  • Document type requirements (referral vs progress note)

When to Use Snippets

✅ Use Snippets for:

  • Patient education materials you share frequently

  • Consent wording

  • Medication instructions

  • Referral letter sign-offs

  • Safety netting advice


Case Study: Putting It All Together

Let’s build a complete advanced template for a Diabetic Review that includes:

  • Conditional logic for glycaemic control assessment

  • Automatic management plan based on HbA1c

  • Integration of historical context

  • Dynamic screening recommendations

Complete Template: Diabetic Review

Diabetic Review Note

Date: [Date of consultation]

Patient: [Patient name], [Age] years old

(Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. Write as a brief statement.)

Reason for Visit: [Reason for today's diabetic review]

(Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. Write as a brief statement.)

Diabetes History: [Summary of diabetes history including type, duration, and previous complications] (Incorporate relevant history from contextual notes if provided. This represents historical background.)

Current Diabetes Management: [Current diabetes medications with doses] (Only include if explicitly mentioned in transcript, context or clinical note, else omit section entirely. Écrivez sous forme de liste à puces.)

Today's Assessment:

Glycaemic Control: [HbA1c result and interpretation] (Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. If HbA1c is above 8%, print "Assessment: Poor glycaemic control requiring treatment intensification." If HbA1c is between 7% and 8%, print "Assessment: Suboptimal glycaemic control - review adherence and lifestyle factors." If HbA1c is 7% or below, print "Assessment: Adequate glycaemic control - continue current management.")

Blood Pressure: [Blood pressure reading] (Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely.)

Weight/BMI: [Weight and BMI if available] (Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely.)

Complications Screening: [Foot examination findings] (Only include if explicitly mentioned in transcript, contextual notes or clinical note, else print "Foot examination: Not performed today")

[Eye screening status] (Only include if explicitly mentioned in transcript, contextual notes or clinical note, else print "Retinal screening: Status unknown - consider referral")

[Renal function] (Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely.)

Plan: (Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. If HbA1c is above 8%, print: "Management Plan - Poor Control:

1. Medication adjustment: - [Specific changes to be determined by clinician] - Consider addition of second agent or insulin initiation

2. Lifestyle reinforcement:- Dietary review - refer to dietitian

- Exercise prescription

- 150 mins moderate activity per week

3. Monitoring:

- Increase home glucose monitoring frequency

- Repeat HbA1c in 3 months

4. Follow-up:

- Review in 4 weeks to assess response")

(Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. If HbA1c is between 7% and 8%, print:

"Management Plan - Suboptimal Control:

1. Review medication adherence

2. Reinforce lifestyle measures

3. Repeat HbA1c in 3 months

4. Follow-up in 6-8 weeks")

(Only include if explicitly mentioned in transcript, contextual notes or clinical note, else omit section entirely. If HbA1c is 7% or below, print:

"Management Plan - Adequate Control:

1. Continue current medications unchanged

2. Annual complications screening due

3. Repeat HbA1c in 6 months

4. Routine follow-up in 3-6 months")

(Toujours se référer au patient par son nom s'il est disponible. Use Australian English spelling throughout. Use DD/MM/YYYY format for all dates.)

How This Template Works

  1. Structure: Clear sections for history, current assessment, and plan

  2. Historical context: Previous diabetes history pulled from contextual notes

  3. Conditional assessments: Glycaemic control automatically interpreted based on HbA1c

  4. Dynamic macros: Different management plans appear based on control level

  5. Smart defaults: Screening sections show “not performed” if not mentioned

  6. Global instructions: Consistent formatting throughout


Advanced Troubleshooting

Complex Layout Not Rendering Correctly

Problem: Your template has multiple sections and conditional logic, but the output is messy or incomplete.

Solutions:

  • Simplify and isolate - Temporarily remove sections to identify which one is causing issues

  • Check for conflicting instructions - Two instructions that contradict each other can cause unpredictable behaviour

  • Ensure conditionals are properly closed - Every “If” should have a clear outcome:

❌ (If diabetic, include HbA1c)

✅ (If diabetic, print "HbA1c monitoring recommended." If not diabetic, omit entirely.)

  • Try moving global instructions - Move from bottom to top of template (or vice versa)

Conditional Logic Not Triggering

Problem: Your if-then statements aren’t producing the expected output.

Solutions:

  • Match the terminology - Use terms that match what’s actually in the transcript:

❌ (If diabetic...)

✅ (If diabetes or diabetic is mentioned...)

  • Be more explicit - Specify exactly what triggers the condition:

❌ (If HbA1c is high...)

✅ (If HbA1c is above 7%...)

  • Check the data source - Ensure the information the condition relies on is actually in the transcript or contextual notes

Historical Context Being Confused with Today’s Findings

Problem: Heidi is mixing up historical information from context with current findings from today.

Solution: Add this global instruction:

(Historical notes from previous sessions are provided in contextual notes and should be incorporated where relevant as background information. Only information from today's transcript should be documented as today's findings, examination results, or current status. Do not present historical information as current findings.)

Sensitive Terms Being Filtered

Problem: Clinically relevant terms (including patient-reported profanity) are being removed from notes.

Solution: Add this instruction if clinically relevant:

(Include verbatim any clinically relevant language used by the patient, even if it includes profanity or sensitive terms, as this may be important for accurate clinical documentation.)


Best Practices for Advanced Templates

À faire ✅

  • Start with a working basic template before adding advanced features

  • Test conditionals one at a time - add complexity gradually

  • Use clear, specific conditions - “If HbA1c > 8%” not “If HbA1c is high”

  • Include fallback options - what happens if the condition isn’t met?

À ne pas faire ❌

  • Overcomplicating - if you need 10+ conditionals, consider multiple templates instead

  • Vague conditions - “If relevant” or “If appropriate” won’t work reliably

  • Nested conditionals more than 3 levels deep

  • Assuming Heidi can calculate - Note that while Heidi handles value comparisons well (e.g. "If BP > 160"), arithmetic calculations and date arithmetic are not reliable.


Glossaire des prompts

Nous avons créé un glossaire des prompts avec des termes spécifiques couramment utilisés dans nos prompts de base. L'utilisation de ces termes dans vos modèles conduira à des contenus générés de meilleure qualité.

Example: Always refer to the conversation between the clinician and patient as the 'transcript' rather than 'the conversation' or other variations.

Terme

Définition

transcription

La transcription de la conversation entre le praticien et le patient.

notes contextuelles

Les notes contextuelles ou de contexte créées par le praticien, qui doivent être intégrées dans la note clinique fondamentale.

détails du patient

Des détails spécifiques sur le patient qui doivent être inclus dans le document.

structure

La structure ou le format préféré de la note clinique tel que spécifié par le praticien, essentiellement un modèle de note.

modèle

Le format prédéfini ou la structure à laquelle la note clinique ou le document doit adhérer.

niveau de détail

Les préférences de voix et de style unique du praticien pour écrire la note. Concis, Intermédiaire, Détaillé et Très détaillé.

Langue

The transcript is in US English and specifically trained on medical terminology. If you want to use British or Australian English, specifically use the terms UK English.

date d'aujourd'hui

La date actuelle au format jj/mm/aaaa, avec instructions de reformatage pour les États-Unis/Canada.

rencontre sanitaire

Comment nous nous référons à toutes les informations pertinentes de la session, de la visite ou de la consultation d'aujourd'hui, essentiellement la transcription, les notes contextuelles, les détails du patient, la date d'aujourd'hui, etc.

exigences

Les exigences et instructions spécifiques pour rédiger la note clinique.

note clinique

La note clinique fondamentale qui doit être mappée au modèle.

paramètre

Texte entre crochets décrivant le type d'informations médicales qui doivent être affichées.

instructions IA

Texte entre parenthèses guidant comment traiter ou manipuler les informations.

textuel

Texte entre guillemets qui doit être inclus mot pour mot dans le contenu généré.

safety instruction

An AI instruction ensuring content is only included if explicitly mentioned, preventing the AI from inferring or assuming information.

global instruction

An AI instruction placed at the top or bottom of a template that applies to the entire document rather than a specific section.

conditional logic

If-then statements that create dynamic templates adapting to different clinical scenarios based on patient data.

macro

A predefined block of text or instructions triggered by conditional logic based on specific criteria.


Et après ?

🎉 Congratulations! You’ve completed Heidi’s template tutorial series.

You now have the knowledge to create sophisticated, dynamic templates that can:

  • Adapt to different patient scenarios

  • Auto-generate management plans

  • Integrate historical context

  • Handle complex clinical workflows


Continue Learning

  • 🌐 Template Community - Share your templates and learn from others

  • 📖 Adding a Template to the Community - Contribute your creations

  • 💬 Support - Reach out to our support team via the Help button


Quick Links

⬅️ Creating Templates in Heidi: A Basic Guide - Review the fundamentals

⬅️ Improving your Heidi Templates: An Intermediate Guide - Formatting and troubleshooting

Avez-vous trouvé la réponse à votre question ?