commit 955c03c8d7097b82b004a26899f5af5e2d989929 Author: Ed_ Date: Wed Apr 23 19:54:29 2025 -0400 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..def3894 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.env +anthropic.toml +uv.lock +test_response.md diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..2c07333 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.11 diff --git a/README.md b/README.md new file mode 100644 index 0000000..c092b9e --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# LLM AI API Testing diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..a979ff0 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,10 @@ +[project] +name = "ai" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.11" +dependencies = [ + "httpx>=0.28.1", + "mcp[cli]>=1.6.0", +]