mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
9 lines
262 B
Python
9 lines
262 B
Python
"""test logo"""
|
|
|
|
from reme.core.schema import ServiceConfig, MCPConfig
|
|
|
|
if __name__ == "__main__":
|
|
from reme.core.utils import print_logo
|
|
|
|
c = ServiceConfig(app_name="reme", backend="mcp", mcp=MCPConfig(transport="sse"))
|
|
print_logo(service_config=c)
|