mirror of https://github.com/kortix-ai/suna.git
bump version to 0.1.3
This commit is contained in:
parent
07a2f786b7
commit
8e25bc3f52
32
README.md
32
README.md
|
@ -18,8 +18,8 @@ pip install agentpress
|
||||||
```bash
|
```bash
|
||||||
agentpress init
|
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:
|
3. If you selected the example agent during initialization:
|
||||||
- Creates an `agent.py` file with a web development agent example
|
- 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
|
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
|
## File Overview
|
||||||
|
|
||||||
|
@ -145,6 +132,7 @@ Central registry for tool management. Keeps track of available tools and their s
|
||||||
### agentpress/state_manager.py
|
### agentpress/state_manager.py
|
||||||
Simple key-value based state persistence using JSON files. For maintaining environment state, settings, or other persistent data.
|
Simple key-value based state persistence using JSON files. For maintaining environment state, settings, or other persistent data.
|
||||||
|
|
||||||
|
|
||||||
## Philosophy
|
## Philosophy
|
||||||
- **Plug & Play**: Start with our defaults, then customize to your needs.
|
- **Plug & Play**: Start with our defaults, then customize to your needs.
|
||||||
- **Agnostic**: Built on LiteLLM, supporting any LLM provider. Minimal opinions, maximum flexibility.
|
- **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
|
- Fork the repository and send pull requests
|
||||||
- Share how you've used AgentPress in your projects
|
- 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
|
## License
|
||||||
|
|
||||||
[MIT License](LICENSE)
|
[MIT License](LICENSE)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "agentpress"
|
name = "agentpress"
|
||||||
version = "0.1.2"
|
version = "0.1.3"
|
||||||
description = "Building blocks for AI Agents"
|
description = "Building blocks for AI Agents"
|
||||||
authors = ["marko-kraemer <mail@markokraemer.com>"]
|
authors = ["marko-kraemer <mail@markokraemer.com>"]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
Loading…
Reference in New Issue