Skip to content

Commit

Permalink
(feat) add gateway assistant
Browse files Browse the repository at this point in the history
  • Loading branch information
tphoney committed Jul 23, 2024
1 parent 1f22472 commit 42cbd10
Show file tree
Hide file tree
Showing 2 changed files with 104 additions and 0 deletions.
82 changes: 82 additions & 0 deletions chat.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
syntax = "proto3";

package chat;

import "google/protobuf/timestamp.proto";
// _______ ________ |
// |ooooooo| ____ | __ __ | |
// |[]+++[]| [____] |/ \/ \| |
// |+ ___ +| ]()()[ |\__/\__/| |
// |:| |:| ___\__/___ |[][][][]| |
// |:|___|:| |__| |__| |++++++++| |
// |[]===[]| |_|_/\_|_| | ______ | |
// _ ||||||||| _ | | __ | | __ ||______|| __|
// |_______| |_|[::]|_| |________| \
// \_|_||_|_/ jro\
// |_||_| \
// _|_||_|_ \
// ____ |___||___| \
// / __\ ____ \
// \( oo (___ \ \
// _\_o/ oo~)/
// / \|/ \ _\-_/_
// / / __\ \___ / \|/ \
// \ \| |__/_) / / .- \ \
// \/_) | \ \ . /_/
// ||___| \/___(_/
// | | | | | |
// | | | | | |
// |_|_| |_|__|
// [__)_) (_(___]
// Credit: https://www.asciiart.eu/

option go_package = "github.com/overmindtech/sdp-go;sdp";

// this is based on https://platform.openai.com/docs/api-reference/messages/object
message ChatMessage {
repeated Content content = 1;
repeated Attachments attachments = 2;
}

message Content {
string type = 1;
oneof content {
Text text = 2;
ImageFile imageFile = 3;
ImageURL imageURL = 4;
}
}

message ImageFile {
string fileID = 1;
string detail = 2;
}

message ImageURL {
string url = 1;
string detail = 2;
}

message Text {
string text = 1;
}

message Attachments {
string fileID = 1;
repeated Tools tools = 2;
}

message Tools {
oneof tool {
CodeInterpreter codeInterpreter = 1;
FileSearch fileSearch = 2;
}
}

message CodeInterpreter {
string Type = 1;
}

message FileSearch {
string Type = 1;
}
22 changes: 22 additions & 0 deletions gateway.proto
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ message GatewayRequest {
// CancelLoadBookmark cancelLoadBookmark = ??;
// // undo the loading of a Bookmark
// UndoLoadBookmark undoLoadBookmark = ??;
SendChatMessage sendChatMessage = 16;
}

optional google.protobuf.Duration minStatusInterval = 2; // Minimum time between status updates. Setting this value too low can result in too many status messages
Expand Down Expand Up @@ -90,6 +91,8 @@ message GatewayResponse {
BookmarkLoadResult bookmarkLoadResult = 16;

QueryStatus queryStatus = 17; // Status of requested queries

ChatMessageResult chatMessageResult = 18;
}
}

Expand Down Expand Up @@ -205,3 +208,22 @@ message SnapshotLoadResult {
// a correlation ID to match up requests and responses. this field returns the contents of the request's msgID
bytes msgID = 4;
}

message SendChatMessage {
// a correlation ID to match up requests and responses. set this to a value unique per connection
bytes msgID = 1;
// The message to create
string message = 2;
// we can in future only use ChatMessage instead of 'string message'
ChatMessage chatMessage = 3;
}

message ChatMessageResult {
// a correlation ID to match up requests and responses. this field returns the contents of the request's msgID
bytes msgID = 1;
bool success = 2;
string errorMessage = 3;
string message = 4;
// we can in future only use ChatMessage instead of 'string message'
ChatMessage chatMessage = 5;
}

0 comments on commit 42cbd10

Please sign in to comment.