Skip to content
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

Add skilll #3

Merged
merged 4 commits into from
Dec 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ instance/

# Scrapy stuff:
.scrapy
.ipynb

# memray
memray-*
Expand All @@ -107,6 +108,7 @@ target/

.pytest_cache/
.mypy_cache/
*.ipynb

#exceptions
!*.gitkeep
Expand Down
290 changes: 290 additions & 0 deletions examples/semantic_kernel_test.ipynb

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions sonagent/actions/actions.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
class Action:

def __init__(self) -> None:
pass

def run(self, input) -> None:
pass
1 change: 1 addition & 0 deletions sonagent/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ def run(self, input) -> None:


def get_tools(self) -> list:

return []
1 change: 1 addition & 0 deletions sonagent/persistence/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from persistence.models import init_db
1 change: 1 addition & 0 deletions sonagent/planning/planning.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# planning module
13 changes: 13 additions & 0 deletions sonagent/skills/FunSkill/Joke/skprompt.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
WRITE EXACTLY ONE JOKE or HUMOROUS STORY ABOUT THE TOPIC BELOW

JOKE MUST BE:
- G RATED
- WORKPLACE/FAMILY SAFE
NO SEXISM, RACISM OR OTHER BIAS/BIGOTRY

BE CREATIVE AND FUNNY. I WANT TO LAUGH.
Incorporate the style suggestion, if provided: {{$style}}
+++++

{{$input}}
+++++
Empty file removed sonagent/tools/__init__.py
Empty file.
Empty file.
Empty file removed sonagent/tools/search/__init__.py
Empty file.
10 changes: 0 additions & 10 deletions sonagent/tools/tool_base.yaml

This file was deleted.

Loading