Skip to content

Commit

Permalink
agentagenda
Browse files Browse the repository at this point in the history
  • Loading branch information
lalalune committed Jul 28, 2023
1 parent b591646 commit 735f9b0
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
# easytask <a href="https://discord.gg/qetWd7J9De"><img style="float: right" src="https://dcbadge.vercel.app/api/server/qetWd7J9De" alt=""></a>
# agentagenda <a href="https://discord.gg/qetWd7J9De"><img style="float: right" src="https://dcbadge.vercel.app/api/server/qetWd7J9De" alt=""></a>

A simple task manager for your agent. Give it a goal, get a task with a plan and steps.

<img src="resources/image.jpg">

[![Lint and Test](https://github.com/AutonomousResearchGroup/easytask/actions/workflows/test.yml/badge.svg)](https://github.com/AutonomousResearchGroup/easytask/actions/workflows/test.yml)
[![PyPI version](https://badge.fury.io/py/easytask.svg)](https://badge.fury.io/py/easytask)
[![Lint and Test](https://github.com/AutonomousResearchGroup/agentagenda/actions/workflows/test.yml/badge.svg)](https://github.com/AutonomousResearchGroup/agentagenda/actions/workflows/test.yml)
[![PyPI version](https://badge.fury.io/py/agentagenda.svg)](https://badge.fury.io/py/agentagenda)

## Installation

```bash
pip install easytask
pip install agentagenda
```

## Quickstart

This will create a new task with the goal "Write README.md file", and then mark it as completed.

```python
from easytask import create_task, finish_task
from agentagenda import create_task, finish_task

# Create a new task
task = create_task("Write README.md file")
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions easytask/test.py → agentagenda/test.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from datetime import datetime
import json
from agentmemory import create_memory, get_memories, get_memory, wipe_category
from easytask import (
from agentagenda import (
create_task,
delete_task,
list_tasks,
Expand All @@ -15,7 +15,7 @@
finish_step,
cancel_step,
)
from easytask.main import get_next_step, get_task_as_formatted_string, list_tasks_as_formatted_string
from agentagenda.main import get_next_step, get_task_as_formatted_string, list_tasks_as_formatted_string

goal = "Make a balogna sandwich"

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@


setup(
name="easytask",
name="agentagenda",
version="0.0.5",
description="A task manager for your agent.",
long_description=long_description, # added this line
long_description_content_type="text/markdown", # and this line
url="https://github.com/AutonomousResearchGroup/easytask",
url="https://github.com/AutonomousResearchGroup/agentagenda",
author="Moon",
author_email="[email protected]",
license="MIT",
packages=["easytask"],
packages=["agentagenda"],
install_requires=["easycompletion", "agentmemory", "agentlogger"],
readme="README.md",
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion test.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from easytask.test import *
from agentagenda.test import *

0 comments on commit 735f9b0

Please sign in to comment.