diffusers dependencies

pull/64/head
Kye 1 year ago
parent b79c748e34
commit edbe62514e

@ -36,6 +36,7 @@ langchain-experimental = "*"
playwright = "*"
duckduckgo-search = "*"
faiss-cpu = "*"
diffusers = "*"
wget = "*"
httpx = "*"
ggl = "*"

@ -20,7 +20,7 @@ class Kosmos:
"""
Args:
# Initialize Kosmos

@ -10,6 +10,10 @@ class Zephyr:
Args:
max_new_tokens(int) = Number of max new tokens
temperature(float) = temperature of the LLM
top_k(float) = top k of the model set to 50
top_p(float) = top_p of the model set to 0.95

@ -578,14 +578,6 @@ class Tool(BaseTool):
)
class EdgeGPTTool:
def __init__(self, model):
self.model = model
def run(self, prompt):
return self.model.ask(prompt)
class StructuredTool(BaseTool):
"""Tool that can operate on any number of inputs."""

Loading…
Cancel
Save