返回提交历史
Modified
g4f/Provider/MetaAI.py
+1
-1
XFEstudio/gpt4free
Update MetaAI.py
c5c18093
代码差异
1 个文件
+1
-1
@@ -17,7 +17,7 @@ from .helper import format_prompt, get_connector, format_cookies
17
17
18
18
class Sources():
19
19
def __init__(self, link_list: List[Dict[str, str]]) -> None:
20
self.link = link_list
20
self.list = link_list
21
21
22
22
def __str__(self) -> str:
23
23
return "\n\n" + ("\n".join([f"[{link['title']}]({link['link']})" for link in self.list]))