Skip to content

Instantly share code, notes, and snippets.

@DayOfThePenguin
DayOfThePenguin / chat.proto
Last active June 28, 2023 21:22
Chat Proto
syntax = "proto3";
package chat;
option go_package = "github.com/defenseunicorns/leapfrogai/pkg/client/chat";
// ChatRequest is the payload to Chat creation
message ChatRequest {
repeated string inputs = 1;
}
NODE_ENV=development
PATH=bin:node_modules/.bin:/usr/local/bin:/usr/bin:/bin
PORT=50000
SECRET=the-secret-the-annotator-gets-from-the-authorizing-site
CONSUMER=name-of-the-app-on-which-the-annotator-runs
VERSION=1.0
LIVE_DB=mongodb://Colin:pass@192.168.1.5:12345/LIVE_DB
LOCAL_DB=mongodb://localhost/annotationdb
STAGING_DB=mongodb://Colin:pass@192.168.1.5:12345/STAGING_DB