We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3be609 commit f51e58eCopy full SHA for f51e58e
ai-assistant/src/commands/DiagramCommand.ts
@@ -34,7 +34,6 @@ export class DiagramCommand implements ISlashCommand {
34
* ---------------------------------------------------------------------------------------------
35
*/
36
const keywords = await Query.getDBKeywordsFromQuery(llm, query);
37
- console.log("KEYWORDS", keywords);
38
if (!keywords.length) return null;
39
40
/**
@@ -48,7 +47,6 @@ export class DiagramCommand implements ISlashCommand {
48
47
embeddingModel,
49
keywords
50
);
51
- console.log("RESULTS", results);
52
if (!results.length) return null;
53
54
0 commit comments