-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(search-strategy): rename StrategyOutput to StrategyFinalPrompt
The StrategyOutput class and its instances have been renamed to StrategyFinalPrompt to better reflect their purpose. This change affects the HydeKeywordsStrategy, HydeCodeStrategy, and HydeStrategy classes, as well as the Catalyser class. The output property of the renamed class has also been renamed to prompt.
- Loading branch information
Showing
6 changed files
with
29 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { ChunkItem } from "../../embedding/_base/Embedding"; | ||
|
||
export class StrategyFinalPrompt { | ||
constructor(public readonly prompt: string, public readonly chunks: ChunkItem[]) { | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.