Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update agent.py typos gramatical errors #9127

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions autogpts/forge/forge/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ForgeAgent(Agent):
agent design.

There is a great paper surveying the agent landscape: https://arxiv.org/abs/2308.11432
Which I would highly recommend reading as it will help you understand the possabilities.
Which I would highly recommend reading as it will help you understand the possibilities.

Here is a summary of the key components of an agent:

Expand All @@ -33,7 +33,7 @@ class ForgeAgent(Agent):
Profile:

Agents typically perform a task by assuming specific roles. For example, a teacher,
a coder, a planner etc. In using the profile in the llm prompt it has been shown to
a coder, a planner etc. In using the profile in the LLM prompt it has been shown to
improve the quality of the output. https://arxiv.org/abs/2305.14688

Additionally, based on the profile selected, the agent could be configured to use a
Expand Down Expand Up @@ -72,7 +72,7 @@ def __init__(self, database: AgentDB, workspace: Workspace):
The database is used to store tasks, steps and artifact metadata. The workspace is used to
store artifacts. The workspace is a directory on the file system.

Feel free to create subclasses of the database and workspace to implement your own storage
Feel free to create subclasses of the database and workspace for implementing your custom storage.
"""
super().__init__(database, workspace)
self.abilities = ActionRegister(self)
Expand Down Expand Up @@ -105,7 +105,7 @@ async def execute_step(self, task_id: str, step_request: StepRequestBody) -> Ste
the agent has been asked to solve and additional input, which is a dictionary and
could contain anything.

If you want to get the task use:
If you need to retrieve the task, use::

```
task = await self.db.get_task(task_id)
Expand Down
Loading