add project template

This commit is contained in:
raykkk
2025-10-29 12:10:18 +08:00
parent dc9f38e5f3
commit 38a7e49d03
3 changed files with 79 additions and 0 deletions

14
project_template/main.py Normal file
View File

@@ -0,0 +1,14 @@
"""
[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()