You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Use the human-readable name as markdown link text, not bare IDs. Example: [medulla](https://virtualflybrain.org/reports/FBbt_00003748) not FBbt_00003748.
743
-
- When vfb_get_term_info returns thumbnail URLs, include them using markdown image syntax: 
744
-
- Only use thumbnail URLs actually present in the tool response data. Never invent URLs.
745
-
- The chat UI renders thumbnails as compact images that expand on hover.
742
+
FORMATTING VFB REFERENCES:
743
+
When referencing VFB entities, ALWAYS use markdown links with the descriptive name as link text, NOT bare IDs in parentheses.
744
+
- CORRECT: [ME on JRC2018Unisex adult brain](https://virtualflybrain.org/reports/VFB_00102107)
745
+
- WRONG: ME on JRC2018Unisex adult brain (VFB_00102107)
746
+
- WRONG: ME on JRC2018Unisex adult brain ([VFB_00102107](https://virtualflybrain.org/reports/VFB_00102107))
747
+
The user wants to see human-readable names as clickable links, not cryptic IDs. The same applies to FBbt anatomy terms — use the term name as the link text: [medulla](https://virtualflybrain.org/reports/FBbt_00003748), not FBbt_00003748.
748
+
749
+
DISPLAYING IMAGES:
750
+
When vfb_get_term_info returns data with thumbnail URLs, you MUST include them in your response using markdown image syntax.
751
+
Format each VFB entity as: thumbnail image followed by a descriptive link — do NOT repeat the name as plain text. Example:
752
+
-  [ME on JRC2018Unisex adult brain](https://virtualflybrain.org/reports/VFB_00102107)
753
+
NOT:
754
+
- ME on JRC2018Unisex adult brain  [ME on JRC2018Unisex adult brain](url)
755
+
The name should appear ONLY ONCE as the link text next to the thumbnail. Do not write it as plain text before the image.
756
+
ONLY use thumbnail URLs that are actually present in the vfb_get_term_info response data. NEVER invent or guess thumbnail URLs.
757
+
The user's chat interface renders these as compact thumbnails that expand on hover — they are a key visual feature, so always include them when available.
746
758
747
759
SUGGESTED FOLLOW-UP QUESTIONS:
748
760
At the end of your responses, when appropriate (not always necessary), suggest 2-4 follow-up questions the user might want to ask next. Include these as plain-text URLs in one of these formats:
@@ -773,6 +785,27 @@ export async function POST(request) {
0 commit comments