https://github.com/fetchai/agents-aea
A framework for autonomous economic agent (AEA) development
https://github.com/fetchai/agents-aea
aea agent agent-framework autonomous autonomous-agents autonomous-economic-agents cryptocurrencies cryptocurrency decentralized decentralized-network fetch-ai multi-agent multi-agent-systems
Last synced: about 2 months ago
JSON representation
A framework for autonomous economic agent (AEA) development
- Host: GitHub
- URL: https://github.com/fetchai/agents-aea
- Owner: fetchai
- License: apache-2.0
- Created: 2019-08-21T10:12:47.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2023-07-19T04:45:10.000Z (almost 2 years ago)
- Last Synced: 2025-04-11T17:13:50.530Z (about 2 months ago)
- Topics: aea, agent, agent-framework, autonomous, autonomous-agents, autonomous-economic-agents, cryptocurrencies, cryptocurrency, decentralized, decentralized-network, fetch-ai, multi-agent, multi-agent-systems
- Language: Python
- Homepage: https://docs.fetch.ai/aea/
- Size: 101 MB
- Stars: 220
- Watchers: 32
- Forks: 68
- Open Issues: 88
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Citation: CITATION.cff
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
AEA Framework
Create Autonomous Economic Agents (AEAs)The AEA framework allows you to create **Autonomous Economic Agents**:
- An AEA is an Agent, representing an individual, family, organisation or object (a.k.a. its "owner") in the digital world. It looks after its owner's interests and has their preferences in mind when acting on their behalf.
- AEAs are Autonomous; acting with no, or minimal, interference from their owners.
- AEAs have a narrow and specific focus: creating Economic value for their owners.## To install
1. Ensure you have Python (version `3.8`, `3.9` or `3.10`).
2. (optional) Use a virtual environment (e.g. [`pipenv`][pipenv] or [`poetry`][poetry]).
3. Install: `pip install aea[all]`Please see the [installation page][docs-install] for more details.
## Documentation
The full documentation, including how to get started, can be found [here][docs].
## Contributing
All contributions are very welcome! Remember, contribution is not only PRs and code, but any help with docs or helping other developers solve their issues are very appreciated!
Read below to learn how you can take part in the AEA project.
### Code of Conduct
Please be sure to read and follow our [Code of Conduct][coc]. By participating, you are expected to uphold this code.
### Contribution Guidelines
Read our [contribution guidelines][contributing] to learn about our issue and PR submission processes, coding rules, and more.
### Development Guidelines
Read our [development guidelines][developing] to learn about the development processes and workflows when contributing to different parts of the AEA project.
### Issues, Questions and Discussions
We use [GitHub Issues][issues] for tracking requests and bugs, and [GitHub Discussions][discussion] for general questions and discussion.
## License
The AEA project is licensed under [Apache License 2.0][license].
[poetry]: https://python-poetry.org
[pipenv]: https://pypi.org/project/pipenv/
[docs]: https://docs.fetch.ai
[contributing]: https://github.com/fetchai/agents-aea/blob/main/CONTRIBUTING.md
[developing]: https://github.com/fetchai/agents-aea/blob/main/DEVELOPING.md
[coc]: https://github.com/fetchai/agents-aea/blob/main/CODE_OF_CONDUCT.md
[discussion]: https://github.com/fetchai/agents-aea/discussions
[issues]: https://github.com/fetchai/agents-aea/issues
[license]: https://github.com/fetchai/agents-aea/blob/main/LICENSE
[docs-install]: https://docs.fetch.ai/aea/installation/