Fix forgeAgent class (#5204)

This commit is contained in:
merwanehamadi
2023-09-12 12:36:03 -07:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -23,6 +23,6 @@ if __name__ == "__main__":
port = os.getenv("PORT")
database = forge.sdk.db.AgentDB(database_name, debug_enabled=True)
agent = forge.agent.forgeAgent(database=database, workspace=workspace)
agent = forge.agent.ForgeAgent(database=database, workspace=workspace)
agent.start(port=port)

View File

@@ -1,7 +1,7 @@
from forge.sdk import Agent, AgentDB, Step, StepRequestBody, Workspace
class AutoGPTAgent(Agent):
class ForgeAgent(Agent):
"""
The goal of the Forge is to take care of the boilerplate code so you can focus on
agent design.