From 955c03c8d7097b82b004a26899f5af5e2d989929 Mon Sep 17 00:00:00 2001 From: Ed_ <edwardgz@gmail.com> Date: Wed, 23 Apr 2025 19:54:29 -0400 Subject: [PATCH] initial commit --- .gitignore | 4 ++++ .python-version | 1 + README.md | 1 + pyproject.toml | 10 ++++++++++ 4 files changed, 16 insertions(+) create mode 100644 .gitignore create mode 100644 .python-version create mode 100644 README.md create mode 100644 pyproject.toml 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", +]