-
-
Notifications
You must be signed in to change notification settings - Fork 717
feat: add core functionality for task orchestration and management wi… #1317
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| @@ -0,0 +1,94 @@ | |||
| import typer | |||
Check failure
Code scanning / Pyre
Undefined import Error
| @@ -0,0 +1,94 @@ | |||
| import typer | |||
| from rich.console import Console | |||
Check failure
Code scanning / Pyre
Undefined import Error
| @@ -0,0 +1,94 @@ | |||
| import typer | |||
| from rich.console import Console | |||
| from rich.table import Table | |||
Check failure
Code scanning / Pyre
Undefined import Error
| import typer | ||
| from rich.console import Console | ||
| from rich.table import Table | ||
| from rich.panel import Panel |
Check failure
Code scanning / Pyre
Undefined import Error
| if not pending: | ||
| console.print("No planned tasks to approve.") | ||
| return | ||
| from rich.prompt import Confirm |
Check failure
Code scanning / Pyre
Undefined import Error
| t = cs.create_task("T1", "Research the market") | ||
| # simulate planned result | ||
| t.result = { | ||
| "subtasks": [ |
Check failure
Code scanning / Pyre
Parsing failure Error test
| @@ -0,0 +1,47 @@ | |||
| import typer | |||
Check failure
Code scanning / Pyre
Undefined import Error
| @@ -0,0 +1,47 @@ | |||
| import typer | |||
| from rich import print | |||
Check failure
Code scanning / Pyre
Undefined import Error
| @@ -0,0 +1,30 @@ | |||
| import pytest | |||
Check failure
Code scanning / Pyre
Undefined import Error test
| @@ -0,0 +1,30 @@ | |||
| import pytest | |||
| from taskmaster.manager import TaskManager | |||
Check failure
Code scanning / Pyre
Undefined import Error test
Resolves #1006
📚 Documentation preview 📚: https://swarms--1317.org.readthedocs.build/en/1317/