8 lines
154 B
Python
8 lines
154 B
Python
"""Run the Ollama tool-calling demo."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from pyro_mcp.ollama_demo import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|