-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
52 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "surfkit" | ||
version = "0.1.238" | ||
version = "0.1.239" | ||
description = "A toolkit for building AI agents that use devices" | ||
authors = ["Patrick Barker <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -22,7 +22,7 @@ rich = "^13.7.1" | |
tqdm = "^4.66.4" | ||
agentdesk = "^0.2.93" | ||
kubernetes = "^30.1.0" | ||
taskara = "^0.1.125" | ||
taskara = "^0.1.126" | ||
|
||
|
||
[tool.poetry.group.dev.dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ | |
) | ||
|
||
from surfkit.client import solve | ||
from taskara import Task, TaskStatus |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
from abc import ABC, abstractmethod | ||
|
||
|
||
class Teacher(ABC): | ||
|
||
@abstractmethod | ||
def teach(self, *args, **kwargs): | ||
pass | ||
|
||
|
||
class LLMTeach(Teacher): | ||
pass |