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.
- Loading branch information
1 parent
b9dfb47
commit dcb4853
Showing
16 changed files
with
305 additions
and
35 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
61 changes: 61 additions & 0 deletions
61
langchain-core/src/main/java/com/hw/langchain/chat/models/openai/OpenAI.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,61 @@ | ||
/* | ||
* 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.chat.models.openai; | ||
|
||
import com.hw.langchain.schema.*; | ||
import com.hw.openai.entity.chat.Message; | ||
import com.hw.openai.entity.chat.Role; | ||
|
||
/** | ||
* @author HamaWhite | ||
*/ | ||
public class OpenAI { | ||
|
||
public static Message convertLangChainToOpenAI(BaseMessage message) { | ||
if (message instanceof ChatMessage chatMessage) { | ||
return Message.of(chatMessage.getRole(), message.getContent()); | ||
} else if (message instanceof HumanMessage) { | ||
return Message.of(message.getContent()); | ||
} else if (message instanceof AIMessage) { | ||
return Message.ofAssistant(message.getContent()); | ||
} else if (message instanceof SystemMessage) { | ||
return Message.ofSystem(message.getContent()); | ||
} else if (message instanceof FunctionMessage functionMessage) { | ||
return Message.ofFunction(message.getContent(), functionMessage.getName()); | ||
} else { | ||
throw new IllegalArgumentException("Got unknown type " + message.getClass().getSimpleName()); | ||
} | ||
} | ||
|
||
public static BaseMessage convertOpenAiToLangChain(Message message) { | ||
Role role = message.getRole(); | ||
String content = message.getContent(); | ||
switch (role) { | ||
case USER: | ||
return new HumanMessage(content); | ||
case ASSISTANT: | ||
content = content != null ? content : ""; | ||
return new AIMessage(content); | ||
case SYSTEM: | ||
return new SystemMessage(content); | ||
default: | ||
return new ChatMessage(role.getValue(), content); | ||
} | ||
} | ||
} |
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
Oops, something went wrong.