Paper - Pytorch
Project description
Athena
Install
$ pip install athena-starship
Usage
python3 sam_altman.py
import os
from dotenv import load_dotenv
# Import the OpenAIChat model and the Agent struct
from swarms import Agent
from athena_starship.llama import llama
from athena_starship.memory import ChromaDB
from athena_starship.tools.google_calendar import calendar
# Load the environment variables
load_dotenv()
# Get the API key from the environment
api_key = os.environ.get("OPENAI_API_KEY")
# Initilaize the chromadb client
chromadb = ChromaDB(
metric="cosine",
verbose=True,
n_results=3,
)
## Initialize the workflow
agent = Agent(
llm=llama,
agent_name="Sam Altman",
agent_description="Sam Altman Agent, CEO of OpenAI.",
system_prompt="You're Sam Altman, CEO of OpenAI.",
max_loops="auto",
interactive=True,
autosave=True,
dashboard=True,
long_term_memory=chromadb,
stopping_token="<DONE>",
verbose=True,
tools=[calendar],
)
# Run the workflow on a task
agent.run(
"What are the 3 traits you look for before investing in a seed"
" stage startup?"
)
License
MIT
Todo
- Make csv of few shot prompt examples for various tool usages
- Make tools for airtable, google calendar, notion, gmail
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
athena_starship-0.0.3.tar.gz
(8.3 kB
view details)
Built Distribution
File details
Details for the file athena_starship-0.0.3.tar.gz
.
File metadata
- Download URL: athena_starship-0.0.3.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.11.0 Darwin/23.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c1c7e5b4967fd12ea378f939d748cdd23f318e7db8ef9b6abecfca536544169 |
|
MD5 | 343294765b0e05b5c690afdaa98aa6a7 |
|
BLAKE2b-256 | 015bab394857907c2800768dda0ffcb16d203d84f3f686f2c74f8d1c5908c2b6 |
File details
Details for the file athena_starship-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: athena_starship-0.0.3-py3-none-any.whl
- Upload date:
- Size: 9.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.11.0 Darwin/23.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 067361b5bacb0bdd6ddcd4926e183d107eba51926054b593e5f5fd3a842e4502 |
|
MD5 | 2f0c8200177eeccd3b91c28a4a208c1b |
|
BLAKE2b-256 | 378a1008299da78e713c44a3bf946c70fa9a424592a02adfcf70af0f2ac39427 |