mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
35a8565495
* Add AG-UI integration * Fix tests. PR feedback * Cleanup * PR Feedback * Improve README and getting started experience * Fix links
9 lines
188 B
Python
9 lines
188 B
Python
# Copyright (c) Microsoft. All rights reserved.
|
|
|
|
"""Entry point for running the AG-UI examples server as a module."""
|
|
|
|
from .server.main import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|