Skip to content

Commit d923e06

Browse files
committed
fix func name for func call pipeline
1 parent bb43d89 commit d923e06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dataflow/statics/pipelines/api_pipelines/func_call_synthesis.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def __init__(self):
3838
self.multi_turn_conversations_generator = MultiTurnConversationGenerator(llm_serving=self.llm_serving)
3939
self.evaluator = FuncCallConversationSampleEvaluator(llm_serving=self.llm_serving)
4040

41-
def run(self):
41+
def forward(self):
4242
self.scenario_extractor.run(
4343
self.storage.step(),
4444
input_chat_key="chat"
@@ -87,4 +87,4 @@ def run(self):
8787

8888
if __name__ == "__main__":
8989
pipeline = FuncCall_APIPipeline()
90-
pipeline.run()
90+
pipeline.forward()

0 commit comments

Comments
 (0)