-
Notifications
You must be signed in to change notification settings - Fork 2k
Add token streaming support for XMLAdapter #8478
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
|
||
from dspy.adapters.chat_adapter import ChatAdapter | ||
from dspy.adapters.json_adapter import JSONAdapter | ||
from dspy.adapters.xml_adapter import XMLAdapter | ||
from dspy.dsp.utils.settings import settings | ||
from dspy.streaming.messages import StreamResponse | ||
|
||
|
@@ -51,6 +52,9 @@ def __init__( | |
self.chat_adapter_start_identifier = f"[[ ## {self.signature_field_name} ## ]]" | ||
self.chat_adapter_end_identifier = re.compile(r"\[\[ ## (\w+) ## \]\]") | ||
|
||
self.xml_adapter_start_identifier = f"<{self.signature_field_name}>" | ||
self.xml_adapter_end_identifier = re.compile(rf"</{self.signature_field_name}>") | ||
|
||
def _buffered_message_end_with_start_identifier(self, concat_message: str, start_identifier: str) -> str: | ||
for i in range(len(concat_message)): | ||
if start_identifier.startswith(concat_message[len(concat_message) - i - 1 :]): | ||
|
@@ -63,14 +67,19 @@ def receive(self, chunk: ModelResponseStream): | |
end_identifier = self.json_adapter_end_identifier | ||
|
||
start_indicator = '"' | ||
elif isinstance(settings.adapter, XMLAdapter): | ||
start_identifier = self.xml_adapter_start_identifier | ||
end_identifier = self.xml_adapter_end_identifier | ||
|
||
start_indicator = "<" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we also make start_indicator an instance variable like we do for start_identifier and end_identifier? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As I mentioned above, maybe it's better to move the logic into each adapter class and remove if-else branch start_identifier = settings.adapter.get_start_identifier(self.signature_field_name)
end_identifier= settings.adapter.get_end_identifier(self.signature_field_name)
start_indicator= settings.adapter.get_start_indicator() |
||
elif isinstance(settings.adapter, ChatAdapter) or settings.adapter is None: | ||
start_identifier = self.chat_adapter_start_identifier | ||
end_identifier = self.chat_adapter_end_identifier | ||
|
||
start_indicator = "[" | ||
else: | ||
raise ValueError( | ||
f"Unsupported adapter for streaming: {settings.adapter}, please use either ChatAdapter or " | ||
f"Unsupported adapter for streaming: {settings.adapter}, please use either ChatAdapter, XMLAdapter or " | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: Can we define const for a list of adapters that support streaming? |
||
"JSONAdapter for streaming purposes." | ||
) | ||
|
||
|
@@ -175,12 +184,21 @@ def flush(self) -> str: | |
else: | ||
boundary_index = len(last_tokens) | ||
return last_tokens[:boundary_index] | ||
elif isinstance(settings.adapter, XMLAdapter): | ||
boundary_index = last_tokens.find(f"</{self.signature_field_name}>") | ||
if boundary_index == -1: | ||
boundary_index = len(last_tokens) | ||
return last_tokens[:boundary_index] | ||
elif isinstance(settings.adapter, ChatAdapter) or settings.adapter is None: | ||
boundary_index = last_tokens.find("[[") | ||
return last_tokens[:boundary_index] | ||
boundary_index = last_tokens.find(f"</{self.signature_field_name}>") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. q: why do we need this change for |
||
if boundary_index == -1: | ||
boundary_index = len(last_tokens) | ||
return last_tokens[:boundary_index] | ||
else: | ||
raise ValueError( | ||
f"Unsupported adapter for streaming: {settings.adapter}, please use either ChatAdapter or " | ||
f"Unsupported adapter for streaming: {settings.adapter}, please use either ChatAdapter, XMLAdapter or " | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ditto |
||
"JSONAdapter for streaming purposes." | ||
) | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since we already have three adapters, shall we define a mapping for adapter-specific parameters? Alternatively, we can move the identifier into each adapter class for better encapsulation