agentsilex
A transparent, minimal, and hackable agent framework. ~300 lines of readable code. Full control, no magic.
File Explorer
Download Latest Version (.zip)- ci.yml
- publish.yml
- weather_agent_eval.json
- weather_agent_eval_with_failures.json
- agent_as_tool_demo.py
- agent_handoff_demo.py
- context_demo.py
- eval_weather_agent.py
- eval_weather_agent_bad_cases.py
- history_management_demo.py
- mcp_demo.py
- observibility_demo.py
- simple_agent.py
- simple_stream_agent.py
- structured_output_demo.py
- agentsilex_streaming_demo.mp4
- agentsilex_streaming_demo.webp
- __init__.py
- base_metric_evaluator.py
- llm_judge_evaluator.py
- response_match_evaluator.py
- tool_trajectory_evaluator.py
- __init__.py
- agent_evaluator.py
- data_types.py
- __init__.py
- agent.py
- agent_as_tool.py
- callbacks.py
- extract_function_schema.py
- function_tool.py
- mcp.py
- observability.py
- run_result.py
- runner.py
- session.py
- stream_event.py
- tool.py
- utils.py
- test_extract_function_schema.py
- test_mcp.py
- test_observability.py
- test_runner.py
- test_utils.py
- chat.js
- index.html
- app.py
- README.md
- requirements.txt
- run.sh
- .env.example
- .gitattributes
- .gitignore
- LICENSE
- Makefile
- pyproject.toml
- README.md
# Installation Guide
git clone https://github.com/howl-anderson/agentsilex
Downloads the entire project code from GitHub to your computer.
cd agentsilex
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Python 3 Python is required to use pip.
pip install agentsilex
Installs the package published on PyPI directly โ no need to clone the source.
pip install arize-phoenix
Installs the package published on PyPI directly โ no need to clone the source.
Pulled directly from this repo's README.
3. Python
Easypip install agentsilex
Installs the package published on PyPI directly โ no need to clone the source.
pip install arize-phoenix
Installs the package published on PyPI directly โ no need to clone the source.
python -m phoenix.server.main serve
Runs the Python script (or module).
Pulled directly from this repo's README.
4. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
