Преглед изворни кода

fix: _convert_prompt_message_to_dict parameters err (#5716)

tags/0.6.12
takatost пре 1 година
родитељ
комит
0bf4817474
No account linked to committer's email address

+ 7
- 6
api/core/app/task_pipeline/workflow_cycle_manage.py Прегледај датотеку

@@ -167,13 +167,14 @@ class WorkflowCycleManage(WorkflowIterationCycleManage):
db.session.refresh(workflow_run)
db.session.close()

trace_manager.add_trace_task(
TraceTask(
TraceTaskName.WORKFLOW_TRACE,
workflow_run=workflow_run,
conversation_id=conversation_id,
if trace_manager:
trace_manager.add_trace_task(
TraceTask(
TraceTaskName.WORKFLOW_TRACE,
workflow_run=workflow_run,
conversation_id=conversation_id,
)
)
)

return workflow_run


+ 1
- 1
api/core/model_runtime/model_providers/moonshot/llm/llm.py Прегледај датотеку

@@ -93,7 +93,7 @@ class MoonshotLargeLanguageModel(OAIAPICompatLargeLanguageModel):
}.intersection(model_schema.features or []):
credentials['function_calling_type'] = 'tool_call'

def _convert_prompt_message_to_dict(self, message: PromptMessage) -> dict:
def _convert_prompt_message_to_dict(self, message: PromptMessage, credentials: Optional[dict] = None) -> dict:
"""
Convert PromptMessage to dict for OpenAI API format
"""

+ 1
- 1
api/core/model_runtime/model_providers/nvidia/llm/llm.py Прегледај датотеку

@@ -200,7 +200,7 @@ class NVIDIALargeLanguageModel(OAIAPICompatLargeLanguageModel):
endpoint_url = str(URL(endpoint_url) / 'chat' / 'completions')
elif 'server_url' in credentials:
endpoint_url = server_url
data['messages'] = [self._convert_prompt_message_to_dict(m) for m in prompt_messages]
data['messages'] = [self._convert_prompt_message_to_dict(m, credentials) for m in prompt_messages]
elif completion_type is LLMMode.COMPLETION:
data['prompt'] = 'ping'
if 'endpoint_url' in credentials:

+ 1
- 1
api/core/model_runtime/model_providers/openai_api_compatible/llm/llm.py Прегледај датотеку

@@ -582,7 +582,7 @@ class OAIAPICompatLargeLanguageModel(_CommonOAI_API_Compat, LargeLanguageModel):

return result

def _convert_prompt_message_to_dict(self, message: PromptMessage, credentials: dict = None) -> dict:
def _convert_prompt_message_to_dict(self, message: PromptMessage, credentials: Optional[dict] = None) -> dict:
"""
Convert PromptMessage to dict for OpenAI API format
"""

Loading…
Откажи
Сачувај