Skip to content

Commit

Permalink
adding typo with pos / neg extractions
Browse files Browse the repository at this point in the history
  • Loading branch information
himynamesdave committed Nov 25, 2024
1 parent 9f49784 commit e247dc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion txt2stix/ai_extractor/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def get_extractors_str(extractors):
if extractor.prompt_positive_examples:
print(f"- Here are some examples of what SHOULD be extracted for {extractor.name} extractions: {json.dumps(extractor.prompt_positive_examples)}", file=buffer)
if extractor.prompt_negative_examples:
print(f"- Here are some examples of what SHOULD NOT be extracted for {extractor.name} extractions: {json.dumps(extractor.prompt_positive_examples)}", file=buffer)
print(f"- Here are some examples of what SHOULD NOT be extracted for {extractor.name} extractions: {json.dumps(extractor.prompt_negative_examples)}", file=buffer)
print("</extractor>", file=buffer)
print("\n"*2, file=buffer)

Expand Down

0 comments on commit e247dc5

Please sign in to comment.