Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
theonlyamos committed Apr 29, 2024
1 parent d7b884a commit 460c8fa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
8 changes: 2 additions & 6 deletions cognitrix/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@
from llms import Cohere
from agents import AIAssistant
from tools import (
Calculator, YoutubePlayer,
WorldNews, PythonREPL,
FSBrowser, SearchTool,
InternetBrowser, tool
Calculator, YoutubePlayer,PythonREPL,
InternetBrowser, FSBrowser
)

if __name__ == "__main__":
Expand All @@ -14,10 +12,8 @@
assistant = AIAssistant(llm=llm, name='Adam')
assistant.add_tool(Calculator())
assistant.add_tool(YoutubePlayer())
assistant.add_tool(WorldNews())
assistant.add_tool(FSBrowser())
assistant.add_tool(PythonREPL())
assistant.add_tool(InternetBrowser())
assistant.add_tool(SearchTool())
assistant.start()

2 changes: 1 addition & 1 deletion cognitrix/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import aiofiles
import json

VERSION = '0.2.1'
VERSION = '0.2.2'
SPIRAL_WORKDIR = Path('~').expanduser() / '.cognitrix'

AGENTS_FILE = SPIRAL_WORKDIR / 'agents.json'
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cognitrix"
version = "0.2.1"
version = "0.2.2"
description = "Package for creating AI Agents using llms"
authors = ["theonlyamos <theonlyamos@gmail.com>"]
license = "Apache2"
Expand Down

0 comments on commit 460c8fa

Please sign in to comment.