Skip to content

Commit f60f208

Browse files
committed
cleanups
1 parent 7ad5f44 commit f60f208

File tree

3 files changed

+1
-1
lines changed

3 files changed

+1
-1
lines changed

core/src/core/runtime.ts

+1
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,7 @@ export class AgentRuntime implements IAgentRuntime {
270270
});
271271

272272
if (!this.getSetting("OPENAI_API_KEY") && !this.llamaService) {
273+
console.log("No OpenAI key found, using LlamaLocal for agent", this.agentId, this.character.name);
273274
this.llamaService = LlamaService.getInstance();
274275
}
275276

core/src/services/llama.ts

-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ class LlamaService {
9292
async initializeModel() {
9393
try {
9494
await this.checkModel();
95-
console.log("Loading llama");
9695

9796
const systemInfo = await si.graphics();
9897
const hasCUDA = systemInfo.controllers.some((controller) =>

src/providers/token.test.ts

Whitespace-only changes.

0 commit comments

Comments
 (0)