remove logging of show response

This commit is contained in:
2026-01-20 08:37:59 +03:00
parent 32baaebb93
commit c7df7f210b
-1
View File
@@ -11,7 +11,6 @@ export class OllamaGetModel extends ChatCommand {
async execute(msg: Message): Promise<void> { async execute(msg: Message): Promise<void> {
const showResponse = await ollama.show({model: Environment.OLLAMA_MODEL}); const showResponse = await ollama.show({model: Environment.OLLAMA_MODEL});
console.log(showResponse);
const caps = showResponse.capabilities; const caps = showResponse.capabilities;