Commit f16c8135 authored by John Wang's avatar John Wang

fix: parse error in chat history

parent 3f247ef2
...@@ -35,6 +35,8 @@ class Completion: ...@@ -35,6 +35,8 @@ class Completion:
""" """
errors: ProviderTokenNotInitError errors: ProviderTokenNotInitError
""" """
query = PromptBuilder.process_template(query)
memory = None memory = None
if conversation: if conversation:
# get memory of conversation (read-only) # get memory of conversation (read-only)
...@@ -140,7 +142,6 @@ class Completion: ...@@ -140,7 +142,6 @@ class Completion:
chain_output: Optional[str], chain_output: Optional[str],
memory: Optional[ReadOnlyConversationTokenDBBufferSharedMemory]) -> \ memory: Optional[ReadOnlyConversationTokenDBBufferSharedMemory]) -> \
Tuple[Union[str | List[BaseMessage]], Optional[List[str]]]: Tuple[Union[str | List[BaseMessage]], Optional[List[str]]]:
query = PromptBuilder.process_template(query)
# disable template string in query # disable template string in query
# query_params = JinjaPromptTemplate.from_template(template=query).input_variables # query_params = JinjaPromptTemplate.from_template(template=query).input_variables
# if query_params: # if query_params:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment