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

[WIP] Add multion skill #155

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,5 @@ yarn-error.log*
*.tsbuildinfo
next-env.d.ts

/data/output/*
/data/output/*
/multion_token.txt
37 changes: 37 additions & 0 deletions data/example_objectives/example_multion.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"objective": "Create a poem about BabyAGI and tweet it in 140 characters. Please add '(sent by MultiON)' at the end.",
"examples": [
{
"id": 1,
"task": "UUse web_search to find information about BabyAGI",
"skill": "web_search",
"icon": "🔎",
"dependent_task_ids": [],
"status": "incomplete"
},
{
"id": 2,
"task": "Use text_completion to create a poem about BabyAGI based on the information found",
"skill": "text_completion",
"icon": "🤖",
"dependent_task_ids": [1],
"status": "incomplete"
},
{
"id": 3,
"task": "Use text_completion to shorten the poem to fit within 140 characters, including the phrase '(sent by MultiON)'",
"skill": "text_completion",
"icon": "🤖",
"dependent_task_ids": [2],
"status": "incomplete"
},
{
"id": 4,
"task": "Use multion to log into Twitter, compose a new tweet with the shortened poem, and post it",
"skill": "multion",
"icon": "🪐",
"dependent_task_ids": [3],
"status": "incomplete"
}
]
}