@johndimm/constellations 1.0.5 → 1.0.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@johndimm/constellations",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "type": "module",
5
5
  "main": "./index.tsx",
6
6
  "exports": {
@@ -292,13 +292,7 @@ export const classifyStartPair = async (
292
292
  });
293
293
  }
294
294
  if (proxy) {
295
- const proxyResult = await callAiProxy("/api/ai/classify-start", { term: rawTerm.trim(), wikiContext });
296
- // Sanity check: if proxy says non-atomic but the term strongly looks like a person name, correct it.
297
- if (!proxyResult.isAtomic && looksLikePersonName(rawTerm)) {
298
- console.warn("[classifyStartPair] proxy returned isAtomic=false for apparent person name; overriding", rawTerm);
299
- return { ...proxyResult, isAtomic: true, type: "Person" };
300
- }
301
- return proxyResult;
295
+ return await callAiProxy("/api/ai/classify-start", { term: rawTerm.trim(), wikiContext });
302
296
  }
303
297
 
304
298
  const needsMusic = rawTermNeedsMusicEntityExtract(rawTerm);