File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33# Agent Lightning⚡
44
5- Agent Lightning is a flexible framework that enables you to optimize any AI agent.
5+ [ ![ CPU Test] ( https://github.com/microsoft/agent-lightning/actions/workflows/tests.yml/badge.svg )] ( https://github.com/microsoft/agent-lightning/actions/workflows/tests.yml )
6+ [ ![ GPU Test] ( https://github.com/microsoft/agent-lightning/actions/workflows/examples.yml/badge.svg )] ( https://github.com/microsoft/agent-lightning/actions/workflows/examples.yml )
7+ [ ![ PyPI version] ( https://badge.fury.io/py/agentlightning.svg )] ( https://badge.fury.io/py/agentlightning )
8+ [ ![ License] ( https://img.shields.io/badge/license-MIT-blue.svg )] ( LICENSE )
9+
10+ ** The absolute trainer to light up AI agents.**
611
712## ⚡ Core Features
813
Original file line number Diff line number Diff line change 1- __version__ = "0.1"
1+ __version__ = "0.1.1 "
22
33from .client import AgentLightningClient , DevTaskLoader
44from .config import lightning_cli
Original file line number Diff line number Diff line change 11[project ]
22name = " agentlightning"
3- version = " 0.1"
4- description = " Agent Lightning"
3+ version = " 0.1.1 "
4+ description = " Agent Lightning is the absolute trainer to light up AI agents. "
55readme = " README.md"
66requires-python = " >=3.10"
77dependencies = [
Original file line number Diff line number Diff line change @@ -842,16 +842,7 @@ def test_run_with_agentops_tracer(agent_func):
842842
843843@pytest .mark .parametrize ("agent_func" , list (iterate_over_agents ()), ids = lambda f : f .__name__ )
844844def test_run_with_http_tracer (agent_func ):
845- if "mcp" in agent_func .__name__ :
846- pytest .skip ("MCP server is not yet supported with HTTP tracer" )
847- if "openai_agents_sdk" in agent_func .__name__ :
848- pytest .skip ("OpenAI Agents SDK is not yet supported with HTTP tracer" )
849- if "langchain_tooluse" in agent_func .__name__ :
850- pytest .skip ("LangChain tool use sometimes timeouts with HTTP tracer" )
851- if "langgraph" in agent_func .__name__ :
852- pytest .skip ("LangGraph is not yet supported with HTTP tracer" )
853- if "autogen" in agent_func .__name__ :
854- pytest .skip ("AutoGen is not yet supported with HTTP tracer" )
845+ pytest .skip ("HTTP tracer tests are disabled for now due to issues on GitHub Actions." )
855846
856847 import httpdbg .hooks .all
857848
You can’t perform that action at this time.
0 commit comments