15 lines
239 B
Python
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()
|