Skip to content

Commit

Permalink
autogpt mapping
Browse files Browse the repository at this point in the history
Former-commit-id: a779393
  • Loading branch information
kyegomez committed Aug 9, 2023
1 parent 40cf980 commit 2542e31
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
from setuptools import setup, find_packages
##

setup(
name = 'swarms',
packages = find_packages(exclude=[]),
version = '1.1.9',
version = '1.2.0',
license='MIT',
description = 'Swarms - Pytorch',
author = 'Kye Gomez',
Expand Down
4 changes: 3 additions & 1 deletion swarms/boss/boss_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
from langchain.agents import AgentExecutor, Tool, ZeroShotAgent
from langchain.docstore import InMemoryDocstore
from langchain.embeddings import OpenAIEmbeddings
from langchain.experimental import BabyAGI

from langchain_experimental.autonomous_agents import BabyAGI

from langchain.vectorstores import FAISS
from pydantic import ValidationError

Expand Down
2 changes: 1 addition & 1 deletion swarms/workers/worker_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from langchain.docstore import InMemoryDocstore
from langchain.embeddings import OpenAIEmbeddings
# TODO: refactor to Agent class
from langchain.experimental.autonomous_agents.autogpt.agent import AutoGPT
from langchain_experimental.autonomous_agents import AutoGPT
from langchain.vectorstores import FAISS

from swarms.agents.tools.autogpt import (
Expand Down

0 comments on commit 2542e31

Please sign in to comment.