prediction: computer commands should be user messages, not system
This commit is contained in:
@@ -114,8 +114,8 @@ impl Conversation {
|
|||||||
},
|
},
|
||||||
ConversationEntry::ShipComputerCommand(ref command) => {
|
ConversationEntry::ShipComputerCommand(ref command) => {
|
||||||
log::debug!("Queued ship computer command: {:?}", command);
|
log::debug!("Queued ship computer command: {:?}", command);
|
||||||
self.send_to(Speaker::ShipComputer, ChatCompletionRequestMessage::System(
|
self.send_to(Speaker::ShipComputer, ChatCompletionRequestMessage::User(
|
||||||
ChatCompletionRequestSystemMessageArgs::default()
|
ChatCompletionRequestUserMessageArgs::default()
|
||||||
.content(command.clone())
|
.content(command.clone())
|
||||||
.build().unwrap()
|
.build().unwrap()
|
||||||
)).await;
|
)).await;
|
||||||
|
|||||||
Reference in New Issue
Block a user