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
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; | |
} |
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
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:[email protected]:12345/LIVE_DB | |
LOCAL_DB=mongodb://localhost/annotationdb | |
STAGING_DB=mongodb://Colin:[email protected]:12345/STAGING_DB |