diff --git a/README.md b/README.md
index 4290ea4..3560703 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,12 @@
# LibertAI Agents
+
+
+[![pypi](https://img.shields.io/pypi/v/libertai-agents.svg)](https://pypi.org/project/libertai-agents)
+[![python](https://img.shields.io/pypi/pyversions/libertai-agents.svg)](https://pypi.org/project/libertai-agents)
+
+
+
LibertAI Agents are highly customizable assistants that operates in a decentralized and confidential environment.\
They can be given tools to perform tasks (search something on the web, make a transaction on-chain...), making them
powerful companions.
diff --git a/libertai_agents/README.md b/libertai_agents/README.md
index e4231c4..b5e547d 100644
--- a/libertai_agents/README.md
+++ b/libertai_agents/README.md
@@ -1,5 +1,12 @@
# LibertAI Agents
+
+
+[![pypi](https://img.shields.io/pypi/v/libertai-agents.svg)](https://pypi.org/project/libertai-agents)
+[![python](https://img.shields.io/pypi/pyversions/libertai-agents.svg)](https://pypi.org/project/libertai-agents)
+
+
+
Framework to create and deploy decentralized agents 🚀
> âš This framework is in beta and might undergo some breaking changes before the stable release.
diff --git a/libertai_agents/libertai_agents/agents.py b/libertai_agents/libertai_agents/agents.py
index 07eefcc..6997761 100644
--- a/libertai_agents/libertai_agents/agents.py
+++ b/libertai_agents/libertai_agents/agents.py
@@ -69,7 +69,7 @@ async def generate_answer(self, messages: list[Message], only_final_answer: bool
Generate an answer based on a conversation
:param messages: List of messages previously sent in this conversation
- :param only_final_answer: Only yields the final answer without include the thought process (tool calls and their response)
+ :param only_final_answer: Only yields the final answer without including the thought process (tool calls and their response)
:return: The string response of the agent
"""
if len(messages) == 0: