Skip to content

Commit

Permalink
fix: remove "Human:" prefix from input examples in prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
yuiseki committed Nov 9, 2024
1 parent 57d5c33 commit b9d2b04
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/utils/langchain/chains/surface/prompt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@ export const tridentSurfaceExampleList: Array<{
output: string;
}> = [
{
input: "Human: Show map of New York City.",
input: "Show map of New York City.",
output:
"I copy. I'm generating maps that shows the city of New York based on OpenStreetMap data. Please wait a while...",
},
{
input: "Human: ニューヨークの地図を表示して",
input: "ニューヨークの地図を表示して",
output:
"了解しました。OpenStreetMapのデータに基づいてニューヨーク市を表示する地図を作成しています。しばらくお待ちください……",
},
{
input: "Human: 台東区を表示して",
input: "台東区を表示して",
output:
"了解しました。OpenStreetMapのデータに基づいて台東区を表示する地図を作成しています。しばらくお待ちください……",
},
{
input: "Human: 显示纽约地图",
input: "显示纽约地图",
output: "知道了。我正在生成基于OpenStreetMap数据的纽约市地图。请稍等……",
},
];
Expand Down Expand Up @@ -53,10 +53,10 @@ export const loadTridentSurfacePrompt = async (vectorStore: VectorStore) => {
inputKeys: ["input"],
});
const examplePrompt = PromptTemplate.fromTemplate(
`Human:
`Input:
{input}
AI:
Output:
{output}
`
);
Expand All @@ -72,10 +72,10 @@ AI:
suffix: `
### Current conversation: ###
Human:
Input:
{input}
AI:
Output:
`,
inputVariables: ["input"],
});
Expand Down

0 comments on commit b9d2b04

Please sign in to comment.