mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-01-10 23:58:06 -05:00
Fix forgeAgent class (#5204)
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user