Skip to content

Commit aebb728

Browse files
committed
update
1 parent 450ae07 commit aebb728

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

context/docs/process_docs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def process(self):
165165
with open(refined_prompt_path, "r", encoding="utf-8") as f:
166166
refined_prompt = f.read()
167167
refined_content = simplify_content_with_llm(refined_prompt, output, self.llm)
168-
return refined_content
168+
return refined_content["response"]
169169

170170

171171
if __name__ == "__main__":

context/examples/process_examples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def process(self):
163163
with open(refined_prompt_path, "r", encoding="utf-8") as f:
164164
refined_prompt = f.read()
165165
refined_content = simplify_content_with_llm(refined_prompt, combined_content, self.llm)
166-
return refined_content
166+
return refined_content["response"]
167167

168168

169169
if __name__ == "__main__":

0 commit comments

Comments
 (0)