Files
evotraders/sample_template/main.py
2025-11-05 11:44:19 +08:00

17 lines
263 B
Python

# -*- coding: utf-8 -*-
"""
[Your Sample 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()