Skip to content

Commit 53dc06a

Browse files
committed
Update speech_graph.py
1 parent 9ac74de commit 53dc06a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scrapegraphai/graphs/speech_graph.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def run(self) -> str:
111111
Returns:
112112
str: The answer to the prompt.
113113
"""
114-
114+
115115
inputs = {"user_prompt": self.prompt, self.input_key: self.source}
116116
self.final_state, self.execution_info = self.graph.execute(inputs)
117117

@@ -122,4 +122,4 @@ def run(self) -> str:
122122
"output_path", "output.mp3"))
123123
print(f"Audio saved to {self.config.get('output_path', 'output.mp3')}")
124124

125-
return self.final_state.get("answer", "No answer found.")
125+
return self.final_state.get("answer", "No answer found.")

0 commit comments

Comments
 (0)