From a82195e47012ab88db6d678509e6bce356ed2b31 Mon Sep 17 00:00:00 2001 From: Reza Rahemtola Date: Tue, 26 Nov 2024 17:25:57 +0900 Subject: [PATCH] docs: Version badges in READMEs and typo fixed in docstring --- README.md | 7 +++++++ libertai_agents/README.md | 7 +++++++ libertai_agents/libertai_agents/agents.py | 2 +- 3 files changed, 15 insertions(+), 1 deletion(-) 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: