File tree Expand file tree Collapse file tree
macos/Sources/OpenClawProtocol
shared/OpenClawKit/Sources/OpenClawProtocol Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4956,6 +4956,7 @@ public struct ChatHistoryParams: Codable, Sendable {
49564956
49574957public struct ChatSendParams : Codable , Sendable {
49584958 public let sessionkey : String
4959+ public let sessionid : String ?
49594960 public let message : String
49604961 public let thinking : String ?
49614962 public let deliver : Bool ?
@@ -4971,6 +4972,7 @@ public struct ChatSendParams: Codable, Sendable {
49714972
49724973 public init (
49734974 sessionkey: String ,
4975+ sessionid: String ? ,
49744976 message: String ,
49754977 thinking: String ? ,
49764978 deliver: Bool ? ,
@@ -4985,6 +4987,7 @@ public struct ChatSendParams: Codable, Sendable {
49854987 idempotencykey: String )
49864988 {
49874989 self . sessionkey = sessionkey
4990+ self . sessionid = sessionid
49884991 self . message = message
49894992 self . thinking = thinking
49904993 self . deliver = deliver
@@ -5001,6 +5004,7 @@ public struct ChatSendParams: Codable, Sendable {
50015004
50025005 private enum CodingKeys : String , CodingKey {
50035006 case sessionkey = " sessionKey "
5007+ case sessionid = " sessionId "
50045008 case message
50055009 case thinking
50065010 case deliver
Original file line number Diff line number Diff line change @@ -4956,6 +4956,7 @@ public struct ChatHistoryParams: Codable, Sendable {
49564956
49574957public struct ChatSendParams : Codable , Sendable {
49584958 public let sessionkey : String
4959+ public let sessionid : String ?
49594960 public let message : String
49604961 public let thinking : String ?
49614962 public let deliver : Bool ?
@@ -4971,6 +4972,7 @@ public struct ChatSendParams: Codable, Sendable {
49714972
49724973 public init (
49734974 sessionkey: String ,
4975+ sessionid: String ? ,
49744976 message: String ,
49754977 thinking: String ? ,
49764978 deliver: Bool ? ,
@@ -4985,6 +4987,7 @@ public struct ChatSendParams: Codable, Sendable {
49854987 idempotencykey: String )
49864988 {
49874989 self . sessionkey = sessionkey
4990+ self . sessionid = sessionid
49884991 self . message = message
49894992 self . thinking = thinking
49904993 self . deliver = deliver
@@ -5001,6 +5004,7 @@ public struct ChatSendParams: Codable, Sendable {
50015004
50025005 private enum CodingKeys : String , CodingKey {
50035006 case sessionkey = " sessionKey "
5007+ case sessionid = " sessionId "
50045008 case message
50055009 case thinking
50065010 case deliver
You can’t perform that action at this time.
0 commit comments