Skip to content

Commit bc90030

Browse files
committed
Minor changes
1 parent 7107c1c commit bc90030

File tree

13 files changed

+11
-11
lines changed

13 files changed

+11
-11
lines changed

ai-assistant/src/commands/AskCodeCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
import { Neo4j } from "../core/db/neo4j";
1212
import { MiniLML6 } from "../core/embeddings/minilml6";
1313
import { Llama3_70B } from "../core/llm/llama3_70B";
14-
import { PromptFactory } from "../core/prompt/prompt.factory";
14+
import { PromptFactory } from "../core/prompt.factory";
1515
import { Query } from "../core/query";
1616
import { handleCommandResponse } from "../utils/handleCommandResponse";
1717

ai-assistant/src/commands/DiagramCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { Neo4j } from "../core/db/neo4j";
1212
// import { renderDiagramToBase64URI } from "../core/diagram";
1313
import { MiniLML6 } from "../core/embeddings/minilml6";
1414
import { Llama3_70B } from "../core/llm/llama3_70B";
15-
import { PromptFactory } from "../core/prompt/prompt.factory";
15+
import { PromptFactory } from "../core/prompt.factory";
1616
import { Query } from "../core/query";
1717
import { handleCommandResponse } from "../utils/handleCommandResponse";
1818

ai-assistant/src/commands/DocumentCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
import { Neo4j } from "../core/db/neo4j";
1111
import { MiniLML6 } from "../core/embeddings/minilml6";
1212
import { Llama3_70B } from "../core/llm/llama3_70B";
13-
import { PromptFactory } from "../core/prompt/prompt.factory";
13+
import { PromptFactory } from "../core/prompt.factory";
1414
import { Query } from "../core/query";
1515
import { handleCommandResponse } from "../utils/handleCommandResponse";
1616

ai-assistant/src/commands/TestLLM.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
} from "@rocket.chat/apps-engine/definition/slashcommands";
1010

1111
import { Llama3_70B } from "../core/llm/llama3_70B";
12-
import { Prompt } from "../core/prompt/prompt";
12+
import { Prompt } from "../core/prompt";
1313
import { handleCommandResponse } from "../utils/handleCommandResponse";
1414

1515
export class TestCommand implements ISlashCommand {

ai-assistant/src/commands/TranslateCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
import { Neo4j } from "../core/db/neo4j";
1111
import { MiniLML6 } from "../core/embeddings/minilml6";
1212
import { Llama3_70B } from "../core/llm/llama3_70B";
13-
import { PromptFactory } from "../core/prompt/prompt.factory";
13+
import { PromptFactory } from "../core/prompt.factory";
1414
import { Query } from "../core/query";
1515
import { handleCommandResponse } from "../utils/handleCommandResponse";
1616

ai-assistant/src/commands/WhyUsedCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { Neo4j } from "../core/db/neo4j";
1212
// import { renderDiagramToBase64URI } from "../core/diagram";
1313
import { MiniLML6 } from "../core/embeddings/minilml6";
1414
import { Llama3_70B } from "../core/llm/llama3_70B";
15-
import { PromptFactory } from "../core/prompt/prompt.factory";
15+
import { PromptFactory } from "../core/prompt.factory";
1616
import { Query } from "../core/query";
1717
import { handleCommandResponse } from "../utils/handleCommandResponse";
1818

ai-assistant/src/core/llm/llama3_70B.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { IHttp } from "@rocket.chat/apps-engine/definition/accessors";
22

33
import { HF_TOKEN } from "../../credentials";
4-
import { Prompt } from "../prompt/prompt";
4+
import { Prompt } from "../prompt";
55
import { ILLMModel } from "./llm.types";
66

77
export class Llama3_70B implements ILLMModel {

ai-assistant/src/core/llm/llm.types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Prompt } from "../prompt/prompt";
1+
import { Prompt } from "../prompt";
22

33
export interface ILLMModel {
44
ask(prompt: Prompt): Promise<string | null>;

ai-assistant/src/core/llm/mistral_7b.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { IHttp } from "@rocket.chat/apps-engine/definition/accessors";
22

3-
import { Prompt } from "../prompt/prompt";
3+
import { Prompt } from "../prompt";
44
import { ILLMModel } from "./llm.types";
55

66
export class Mistral_7B implements ILLMModel {
File renamed without changes.

0 commit comments

Comments
 (0)