Skip to content

Commit 60d728a

Browse files
committed
Add a CLI processor which processes Ssurgeon requests. Will be the CoreNLP side of an Ssurgeon interface for Python. Included in this change is adding optional tokens to the DependencyGraph
1 parent f69fef1 commit 60d728a

File tree

7 files changed

+5172
-531
lines changed

7 files changed

+5172
-531
lines changed

src/edu/stanford/nlp/pipeline/CoreNLP.proto

+32
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,9 @@ message DependencyGraph {
315315
repeated Node node = 1;
316316
repeated Edge edge = 2;
317317
repeated uint32 root = 3 [packed=true];
318+
// optional: if this graph message is not part of a larger context,
319+
// the tokens will help reconstruct the actual sentence
320+
repeated Token token = 4;
318321
}
319322

320323
//
@@ -679,6 +682,35 @@ message SemgrexResponse {
679682
}
680683

681684

685+
// A message for processing an Ssurgeon
686+
// Each sentence stores information about the tokens making up the
687+
// corresponding graph
688+
// An alternative would have been to use the existing Document or
689+
// Sentence classes, but the problem with that is it would be
690+
// ambiguous which dependency object to use.
691+
// The Ssurgeon is composed of two pieces, the semgrex and the
692+
// ssurgeon operations, along with some optional documentation.
693+
message SsurgeonRequest {
694+
message Ssurgeon {
695+
optional string semgrex = 1;
696+
repeated string operation = 2;
697+
optional string id = 3;
698+
optional string notes = 4;
699+
}
700+
701+
repeated Ssurgeon ssurgeon = 1;
702+
repeated DependencyGraph graph = 2;
703+
}
704+
705+
message SsurgeonResponse {
706+
message SsurgeonResult {
707+
optional DependencyGraph graph = 1;
708+
optional bool changed = 2;
709+
}
710+
711+
repeated SsurgeonResult result = 1;
712+
}
713+
682714
// It's possible to send in a whole document, but we
683715
// only care about the Sentences and Tokens
684716
message TokensRegexRequest {

0 commit comments

Comments
 (0)