prompt-generic is no longer supported

This commit is contained in:
Cyber MacGeddon 2024-11-05 21:12:13 +00:00
parent 3ab54bc763
commit baa02e4f01

View file

@ -2,6 +2,15 @@
Language service abstracts prompt engineering from LLM. Language service abstracts prompt engineering from LLM.
""" """
#
# FIXME: This module is broken, it doesn't conform to the prompt API change
# made in 0.14, nor the prompt template support.
#
# It could be made to conform by using prompt-template as a starting
# point, and hard-coding all the information.
#
import json import json
import re import re
@ -469,5 +478,7 @@ class Processor(ConsumerProducer):
def run(): def run():
raise RuntimeError("NOT IMPLEMENTED")
Processor.start(module, __doc__) Processor.start(module, __doc__)