feat: add tools

pull/5/head
adldotori 1 year ago
parent 66aea0406e
commit 4c5be38958

@ -15,6 +15,7 @@ from tools.cpu import (
CodeEditor,
RequestsGet,
WineDB,
ExitConversation,
)
from tools.gpu import (
ImageEditing,
@ -34,6 +35,8 @@ toolsets: List[BaseToolSet] = [
Terminal(),
CodeEditor(),
RequestsGet(),
WineDB(),
ExitConversation(),
Text2Image("cuda"),
ImageEditing("cuda"),
InstructPix2Pix("cuda"),

@ -148,7 +148,7 @@ class CodeEditor(BaseToolSet):
class RequestsGet(BaseToolSet):
@tool(
name="requests_get",
name="Requests Get",
description="A portal to the internet. "
"Use this when you need to get specific content from a website."
"Input should be a url (i.e. https://www.google.com)."

Loading…
Cancel
Save