Skip to content

Commit 905a892

Browse files
committed
cleanup logging, iching data as json
1 parent 23e22f6 commit 905a892

File tree

3 files changed

+34
-30
lines changed

3 files changed

+34
-30
lines changed

packages/core/src/generation.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -694,10 +694,7 @@ export async function generateMessageResponse({
694694
context: string;
695695
modelClass: string;
696696
}): Promise<Content> {
697-
elizaLogger.debug(
698-
"generateMessageResponse with context:",
699-
context
700-
);
697+
// elizaLogger.debug("generateMessageResponse with context:", context);
701698
const max_context_length =
702699
models[runtime.modelProvider].settings.maxInputTokens;
703700
context = trimTokens(context, max_context_length, "gpt-4o");

packages/core/src/iching.ts

+30-23
Original file line numberDiff line numberDiff line change
@@ -11,30 +11,37 @@ export function formatIChingKnowledge(character: Character): string {
1111
return "";
1212
}
1313

14-
const trigramsSection = character.systemKnowledge.iChing.trigrams?.map(trigram => `
15-
${trigram.trigramFigure} ${trigram.name} (${trigram.key})
16-
Quality: ${trigram.quality}
17-
Traits: ${trigram.traits}
18-
Personages: ${trigram.personages}
19-
Animal: ${trigram.totemicAnimal}
20-
Immortal: ${trigram.immortal}
21-
Nature: ${trigram.imageInNature}
22-
`.trim()).join('\n\n');
23-
24-
const hexagramsSection = character.systemKnowledge.iChing.hexagrams.map(hexagram => `
25-
Hexagram ${hexagram.number} ${hexagram.unicode} - ${hexagram.name.chinese} (${hexagram.name.pinyin})
26-
Trigrams: ${hexagram.trigrams.top} over ${hexagram.trigrams.bottom}
27-
Meaning: ${hexagram.meaning}
28-
`.trim()).join('\n\n');
14+
const formattedData = {
15+
trigrams: character.systemKnowledge.iChing.trigrams?.map((trigram) => ({
16+
symbol: trigram.trigramFigure,
17+
name: trigram.name,
18+
key: trigram.key,
19+
quality: trigram.quality,
20+
traits: trigram.traits,
21+
personages: trigram.personages,
22+
animal: trigram.totemicAnimal,
23+
immortal: trigram.immortal,
24+
nature: trigram.imageInNature,
25+
})),
26+
hexagrams: character.systemKnowledge.iChing.hexagrams.map(
27+
(hexagram) => ({
28+
number: hexagram.number,
29+
symbol: hexagram.unicode,
30+
name: {
31+
chinese: hexagram.name.chinese,
32+
pinyin: hexagram.name.pinyin,
33+
},
34+
trigrams: {
35+
top: hexagram.trigrams.top,
36+
bottom: hexagram.trigrams.bottom,
37+
},
38+
meaning: hexagram.meaning,
39+
})
40+
),
41+
};
2942

3043
return addHeader(
3144
"# I Ching Knowledge",
32-
`
33-
# Trigrams
34-
${trigramsSection}
35-
36-
# Hexagrams
37-
${hexagramsSection}
38-
`.trim()
45+
JSON.stringify(formattedData, null, 2)
3946
);
40-
}
47+
}

packages/core/src/runtime.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -747,9 +747,9 @@ export class AgentRuntime implements IAgentRuntime {
747747
// Add debug logging
748748
elizaLogger.debug("ComposeState - Character data:", {
749749
name: this.character.name,
750-
hasSystemKnowledge: !!this.character.systemKnowledge,
751-
iChingData:
752-
this.character.systemKnowledge?.iChing?.hexagrams?.length,
750+
// hasSystemKnowledge: !!this.character.systemKnowledge,
751+
// iChingData:
752+
// this.character.systemKnowledge?.iChing?.hexagrams?.length,
753753
// rawSystemKnowledge: JSON.stringify(this.character.systemKnowledge, null, 2)
754754
});
755755

0 commit comments

Comments
 (0)