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

15 lines
238 B
Python

"""
[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()