Remove GitHub-specific project plumbing

This commit is contained in:
Thales Maciel 2026-03-09 22:58:29 -03:00
parent 895cb608c0
commit 0181de2563
7 changed files with 13 additions and 62 deletions

View file

@ -23,11 +23,10 @@ __all__ = ["Pyro", "run_ollama_tool_demo"]
DEFAULT_OLLAMA_BASE_URL: Final[str] = "http://localhost:11434/v1"
DEFAULT_OLLAMA_MODEL: Final[str] = "llama3.2:3b"
MAX_TOOL_ROUNDS: Final[int] = 12
CLONE_TARGET_DIR: Final[str] = "hello-world"
NETWORK_PROOF_COMMAND: Final[str] = (
"rm -rf hello-world "
"&& git clone --depth 1 https://github.com/octocat/Hello-World.git hello-world >/dev/null "
"&& git -C hello-world rev-parse --is-inside-work-tree"
'python3 -c "import urllib.request as u; '
"print(u.urlopen('https://example.com').status)"
'"'
)
TOOL_SPECS: Final[list[dict[str, Any]]] = [