17 lines
263 B
Python
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()
|