* fix typos in various places

* Revert changes to NOTICES

---------

Co-authored-by: Nicholas Tindle <nicholas.tindle@agpt.co>
This commit is contained in:
RainRat
2024-05-31 02:16:23 -07:00
committed by GitHub
parent 16df151977
commit cb9ad6f64d
10 changed files with 14 additions and 13 deletions

View File

@@ -287,7 +287,7 @@ class BaseAgent(Generic[AnyProposal], metaclass=AgentMeta):
f"Component {component.__class__.__name__} "
"is attached to an agent but not added to components list"
)
# Skip collecting anf sorting and sort if ordering is explicit
# Skip collecting and sorting and sort if ordering is explicit
return
self.components = self._topological_sort(components)

View File

@@ -43,9 +43,9 @@ class ComponentEndpointError(Exception):
class EndpointPipelineError(ComponentEndpointError):
"""Error of an entire pipline of one endpoint."""
"""Error of an entire pipeline of one endpoint."""
class ComponentSystemError(EndpointPipelineError):
"""Error of a group of pipelines;
multiple different enpoints."""
multiple different endpoints."""

View File

@@ -84,7 +84,7 @@ This command forcefully stops the agent. You can also restart it using the start
## To Recap
- We've forked the AutoGPT repo and cloned it locally on your machine.
- we connected the library with our personal github access token as part of the setup.
- We've run the agent and it's tasking server successfully without an error.
- We've run the agent and its tasking server successfully without an error.
- We've logged into the server site at localhost:8000 using our github account.
Make sure you've completed every step successfully before moving on :).

View File

@@ -34,7 +34,7 @@ Anatomy of an Agent from the Agent Landscape Survey
### **Profile**
Humans naturally adapt our mindset based on the tasks we're tackling, whether it's writing, cooking, or playing sports. Similarly, agents can be conditioned or "profiled" to specialize in specific tasks.
The profile of an agent is it's personality, mindset, and high-level instructions. Research indicates that merely informing an agent that it's an expert in a certain domain can boost its performance.
The profile of an agent is its personality, mindset, and high-level instructions. Research indicates that merely informing an agent that it's an expert in a certain domain can boost its performance.
| **Potential Applications of Profiling** | **Description** |
|-----------------------------------------|----------------------------------------------------------------------------------------------------------|