Skip to content

Commit

Permalink
docs: Version badges in READMEs and typo fixed in docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
RezaRahemtola committed Nov 28, 2024
1 parent 15719eb commit a82195e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# LibertAI Agents

<div align="center">

[![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)

</div>

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.
Expand Down
7 changes: 7 additions & 0 deletions libertai_agents/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# LibertAI Agents

<div align="center">

[![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)

</div>

Framework to create and deploy decentralized agents 🚀

> ⚠ This framework is in beta and might undergo some breaking changes before the stable release.
Expand Down
2 changes: 1 addition & 1 deletion libertai_agents/libertai_agents/agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit a82195e

Please sign in to comment.