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 9ac74de commit 53dc06aCopy full SHA for 53dc06a
scrapegraphai/graphs/speech_graph.py
@@ -111,7 +111,7 @@ def run(self) -> str:
111
Returns:
112
str: The answer to the prompt.
113
"""
114
-
+
115
inputs = {"user_prompt": self.prompt, self.input_key: self.source}
116
self.final_state, self.execution_info = self.graph.execute(inputs)
117
@@ -122,4 +122,4 @@ def run(self) -> str:
122
"output_path", "output.mp3"))
123
print(f"Audio saved to {self.config.get('output_path', 'output.mp3')}")
124
125
- return self.final_state.get("answer", "No answer found.")
+ return self.final_state.get("answer", "No answer found.")
0 commit comments