We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb43d89 commit d923e06Copy full SHA for d923e06
dataflow/statics/pipelines/api_pipelines/func_call_synthesis.py
@@ -38,7 +38,7 @@ def __init__(self):
38
self.multi_turn_conversations_generator = MultiTurnConversationGenerator(llm_serving=self.llm_serving)
39
self.evaluator = FuncCallConversationSampleEvaluator(llm_serving=self.llm_serving)
40
41
- def run(self):
+ def forward(self):
42
self.scenario_extractor.run(
43
self.storage.step(),
44
input_chat_key="chat"
@@ -87,4 +87,4 @@ def run(self):
87
88
if __name__ == "__main__":
89
pipeline = FuncCall_APIPipeline()
90
- pipeline.run()
+ pipeline.forward()
0 commit comments