From 8e25bc3f52759693e4cfa6b1502d8a31159aba95 Mon Sep 17 00:00:00 2001 From: marko-kraemer Date: Sat, 2 Nov 2024 03:13:08 +0100 Subject: [PATCH] bump version to 0.1.3 --- README.md | 32 +++++++++++++++++--------------- pyproject.toml | 2 +- 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 5b1a01cb..3f3a1007 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,8 @@ pip install agentpress ```bash agentpress init ``` -This will create a `agentpress` directory with the core utilities you can customize. - +Creates a `agentpress` directory with all the core utilities. +Check out [File Overview](#file-overview) for explanations of the generated util files. 3. If you selected the example agent during initialization: - Creates an `agent.py` file with a web development agent example @@ -114,19 +114,6 @@ Run the thread viewer to view messages of threads in a stylised web UI: streamlit run agentpress/thread_viewer_ui.py ``` -## Development - -1. Clone for reference: -```bash -git clone https://github.com/kortix-ai/agentpress -cd agentpress -``` - -2. Install dependencies: -```bash -pip install poetry -poetry install -``` ## File Overview @@ -145,6 +132,7 @@ Central registry for tool management. Keeps track of available tools and their s ### agentpress/state_manager.py Simple key-value based state persistence using JSON files. For maintaining environment state, settings, or other persistent data. + ## Philosophy - **Plug & Play**: Start with our defaults, then customize to your needs. - **Agnostic**: Built on LiteLLM, supporting any LLM provider. Minimal opinions, maximum flexibility. @@ -158,6 +146,20 @@ We welcome contributions! Feel free to: - Fork the repository and send pull requests - Share how you've used AgentPress in your projects +## Development + +1. Clone for reference: +```bash +git clone https://github.com/kortix-ai/agentpress +cd agentpress +``` + +2. Install dependencies: +```bash +pip install poetry +poetry install +``` + ## License [MIT License](LICENSE) diff --git a/pyproject.toml b/pyproject.toml index dafd0acb..ff7a41d3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "agentpress" -version = "0.1.2" +version = "0.1.3" description = "Building blocks for AI Agents" authors = ["marko-kraemer "] readme = "README.md"