Files
hsa/AlgoriAgent/factory.py
CakeCN 4198ca63b1 init
2024-12-03 16:21:19 +08:00

7 lines
219 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# AlgoriAgent factory 当有同学进入网页的时候就创建一个AlgoriAgent
def CreateAlgoriAgent(UserName=None):
print("CreateAlgoriAgent with user: "+UserName)
return AlgoriAgent(UserName)