18 lines
220 B
Python
18 lines
220 B
Python
"""
|
|
Step 05-07: RAG / Self-Correction / Multi-Agent 主程序
|
|
|
|
运行方式:
|
|
cd step_05_07_advanced
|
|
python main.py
|
|
"""
|
|
|
|
from concept import demo
|
|
|
|
|
|
def main():
|
|
demo()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|