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
/* | |
You need create .env file with the following variables: | |
BSKYHANDLE=yourhandle | |
BSKYPASS=yourpass | |
*/ | |
const { | |
BskyAgent | |
} = require('@atproto/api'); | |
require('dotenv').config(); |
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 tir; | |
service TirService { | |
rpc GenerateKnowledge (EmptyRequest) returns (Thematics); | |
rpc EvaluateAnswer (EvaluateRequest) returns (Answer); | |
rpc CorrectExplanation (CorrectionRequest) returns (EmptyResponse); | |
} |
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 tir; | |
service TirService { | |
rpc GenerateKnowledge (EmptyRequest) returns (Thematics); | |
rpc EvaluateAnswer (EvaluateRequest) returns (Answer); | |
rpc CorrectExplanation (CorrectionRequest) returns (EmptyResponse); | |
} |