forked from HamaWhiteGG/langchain-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request HamaWhiteGG#14 from HamaWhiteGG/dev
Support Prompt templates of ChatModels
- Loading branch information
Showing
19 changed files
with
560 additions
and
29 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
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
40 changes: 40 additions & 0 deletions
40
langchain-core/src/main/java/com/hw/langchain/prompts/chat/AIMessagePromptTemplate.java
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,40 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.hw.langchain.prompts.chat; | ||
|
||
import com.hw.langchain.schema.AIMessage; | ||
import com.hw.langchain.schema.BaseMessage; | ||
|
||
import java.util.Map; | ||
|
||
/** | ||
* @author HamaWhite | ||
*/ | ||
public class AIMessagePromptTemplate extends BaseStringMessagePromptTemplate { | ||
|
||
public static AIMessagePromptTemplate fromTemplate(String template) { | ||
return BaseStringMessagePromptTemplate.fromTemplate(AIMessagePromptTemplate.class, template); | ||
} | ||
|
||
@Override | ||
public BaseMessage format(Map<String, Object> kwargs) { | ||
String text = prompt.format(kwargs); | ||
return new AIMessage(text); | ||
} | ||
} |
52 changes: 52 additions & 0 deletions
52
langchain-core/src/main/java/com/hw/langchain/prompts/chat/BaseChatPromptTemplate.java
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,52 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.hw.langchain.prompts.chat; | ||
|
||
import com.hw.langchain.prompts.base.BasePromptTemplate; | ||
import com.hw.langchain.schema.BaseMessage; | ||
import com.hw.langchain.schema.PromptValue; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
/** | ||
* @author HamaWhite | ||
*/ | ||
public abstract class BaseChatPromptTemplate extends BasePromptTemplate { | ||
|
||
public BaseChatPromptTemplate(List<String> inputVariables) { | ||
super(inputVariables); | ||
} | ||
|
||
@Override | ||
public String format(Map<String, Object> kwargs) { | ||
return formatPrompt(kwargs).toString(); | ||
} | ||
|
||
public PromptValue formatPrompt(Map<String, Object> kwargs) { | ||
List<BaseMessage> messages = formatMessages(kwargs); | ||
return new ChatPromptValue(messages); | ||
} | ||
|
||
/** | ||
* Format kwargs into a list of messages. | ||
*/ | ||
public abstract List<BaseMessage> formatMessages(Map<String, Object> kwargs); | ||
|
||
} |
46 changes: 46 additions & 0 deletions
46
langchain-core/src/main/java/com/hw/langchain/prompts/chat/BaseMessagePromptTemplate.java
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,46 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.hw.langchain.prompts.chat; | ||
|
||
import com.hw.langchain.schema.BaseMessage; | ||
|
||
import java.io.Serializable; | ||
import java.util.List; | ||
import java.util.Map; | ||
|
||
/** | ||
* @author HamaWhite | ||
*/ | ||
public abstract class BaseMessagePromptTemplate implements Serializable { | ||
|
||
/** | ||
* To messages. | ||
* | ||
* @param kwargs keyword arguments | ||
* @return a list of BaseMessage | ||
*/ | ||
public abstract List<BaseMessage> formatMessages(Map<String, Object> kwargs); | ||
|
||
/** | ||
* Input variables for this prompt template. | ||
* | ||
* @return a list of input variables | ||
*/ | ||
public abstract List<String> inputVariables(); | ||
} |
65 changes: 65 additions & 0 deletions
65
...ain-core/src/main/java/com/hw/langchain/prompts/chat/BaseStringMessagePromptTemplate.java
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,65 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.hw.langchain.prompts.chat; | ||
|
||
import com.hw.langchain.exception.LangChainException; | ||
import com.hw.langchain.prompts.base.StringPromptTemplate; | ||
import com.hw.langchain.prompts.prompt.PromptTemplate; | ||
import com.hw.langchain.schema.BaseMessage; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
/** | ||
* @author HamaWhite | ||
*/ | ||
public abstract class BaseStringMessagePromptTemplate extends BaseMessagePromptTemplate { | ||
|
||
protected StringPromptTemplate prompt; | ||
|
||
public static <T extends BaseStringMessagePromptTemplate> T fromTemplate(Class<T> cls, String template) { | ||
StringPromptTemplate prompt = PromptTemplate.fromTemplate(template); | ||
try { | ||
T instance = cls.getDeclaredConstructor().newInstance(); | ||
instance.setPrompt(prompt); | ||
return instance; | ||
} catch (Exception e) { | ||
throw new LangChainException("Failed to create instance of BaseStringMessagePromptTemplate", e); | ||
} | ||
} | ||
|
||
/** | ||
* To a BaseMessage. | ||
*/ | ||
public abstract BaseMessage format(Map<String, Object> kwargs); | ||
|
||
@Override | ||
public List<BaseMessage> formatMessages(Map<String, Object> kwargs) { | ||
return List.of(this.format(kwargs)); | ||
} | ||
|
||
@Override | ||
public List<String> inputVariables() { | ||
return prompt.getInputVariables(); | ||
} | ||
|
||
public void setPrompt(StringPromptTemplate prompt) { | ||
this.prompt = prompt; | ||
} | ||
} |
Oops, something went wrong.