From 59dcf0bb79c43a0b6d1856eb5987f0af915e8c3e Mon Sep 17 00:00:00 2001 From: Tapan Chugh Date: Fri, 7 Nov 2025 14:07:59 -0800 Subject: [PATCH 1/2] update project settings --- fastagent.config.yaml | 9 +-------- pyproject.toml | 5 +++-- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/fastagent.config.yaml b/fastagent.config.yaml index ad87aff..220696f 100644 --- a/fastagent.config.yaml +++ b/fastagent.config.yaml @@ -1,15 +1,8 @@ default_model: "openai.gpt-4o-mini" - -mcp: - servers: - minimal_test: - command: python - args: ["/Users/tapanc/dev/elicitation_evals/test_minimal_mcp.py"] - logger: level: debug type: file - path: /Users/tapanc/dev/elicitation_evals/minimal_test.jsonl + path: fastagent.log.jsonl show_chat: true show_tools: true truncate_tools: false diff --git a/pyproject.toml b/pyproject.toml index f32ecd0..736ec18 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,7 +41,8 @@ evals = [ [tool.uv] override-dependencies = [ - "openai>=1.108.0", # Override appworld-experiments' openai<=1.99.8 constraint + "openai[aiohttp]>=1.108.0", # Override appworld-experiments' openai<=1.99.8 constraint + "mcp>=1.19.0" ] [tool.uv.sources] @@ -119,4 +120,4 @@ ignore_errors = true [[tool.mypy.overrides]] module = "tests.benchmarks.appworld.mcp_server" -disable_error_code = ["attr-defined", "no-untyped-call", "misc"] \ No newline at end of file +disable_error_code = ["attr-defined", "no-untyped-call", "misc"] From 0f58f8b1753601d0a60e371e66a74cb5ca666d80 Mon Sep 17 00:00:00 2001 From: Tapan Chugh Date: Fri, 7 Nov 2025 14:21:06 -0800 Subject: [PATCH 2/2] remove mcp dep --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 736ec18..416c148 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,6 @@ evals = [ [tool.uv] override-dependencies = [ "openai[aiohttp]>=1.108.0", # Override appworld-experiments' openai<=1.99.8 constraint - "mcp>=1.19.0" ] [tool.uv.sources]