From 735f9b0098b52e20c1291b9d02d443b3e3d28aca Mon Sep 17 00:00:00 2001 From: moon Date: Fri, 28 Jul 2023 03:39:46 -0700 Subject: [PATCH] agentagenda --- README.md | 10 +++++----- {easytask => agentagenda}/__init__.py | 0 {easytask => agentagenda}/main.py | 0 {easytask => agentagenda}/test.py | 4 ++-- setup.py | 6 +++--- test.py | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) rename {easytask => agentagenda}/__init__.py (100%) rename {easytask => agentagenda}/main.py (100%) rename {easytask => agentagenda}/test.py (98%) diff --git a/README.md b/README.md index e6d2674..26dc0e6 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,16 @@ -# easytask +# agentagenda A simple task manager for your agent. Give it a goal, get a task with a plan and steps. -[![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 @@ -18,7 +18,7 @@ pip install easytask 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") diff --git a/easytask/__init__.py b/agentagenda/__init__.py similarity index 100% rename from easytask/__init__.py rename to agentagenda/__init__.py diff --git a/easytask/main.py b/agentagenda/main.py similarity index 100% rename from easytask/main.py rename to agentagenda/main.py diff --git a/easytask/test.py b/agentagenda/test.py similarity index 98% rename from easytask/test.py rename to agentagenda/test.py index 6b82459..7082ade 100644 --- a/easytask/test.py +++ b/agentagenda/test.py @@ -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, @@ -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" diff --git a/setup.py b/setup.py index 8ebc7e8..e6e877f 100644 --- a/setup.py +++ b/setup.py @@ -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="shawmakesmagic@gmail.com", license="MIT", - packages=["easytask"], + packages=["agentagenda"], install_requires=["easycompletion", "agentmemory", "agentlogger"], readme="README.md", classifiers=[ diff --git a/test.py b/test.py index b1295ba..96d671c 100644 --- a/test.py +++ b/test.py @@ -1 +1 @@ -from easytask.test import * \ No newline at end of file +from agentagenda.test import * \ No newline at end of file