Files
evotraders/project_template/main.py
2025-10-29 12:10:18 +08:00

15 lines
239 B
Python

"""
[Your Project Name] - Entry Point
This example demonstrates [brief description].
"""
import agentscope
def main():
"""Main function to run the example."""
print(agentscope.__version__)
if __name__ == "__main__":
main()