Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/awesome-assistants/awsistants-python
pip package for awesome assistants
https://github.com/awesome-assistants/awsistants-python
List: awsistants-python
Last synced: 2 months ago
JSON representation
pip package for awesome assistants
- Host: GitHub
- URL: https://github.com/awesome-assistants/awsistants-python
- Owner: awesome-assistants
- License: mit
- Created: 2023-11-24T14:45:35.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-07T16:44:54.000Z (about 1 year ago)
- Last Synced: 2024-07-09T08:40:54.403Z (7 months ago)
- Language: Python
- Size: 68.4 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
- License: LICENSE
Awesome Lists containing this project
README
# Awsistants python package
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
## Install
### pip
pip install awsistants@git+https://github.com/awesome-assistants/awsistants-python@main
### requirements.txt
awsistants@git+https://github.com/awesome-assistants/awsistants-python@main
### poetry
poetry add git+https://github.com/awesome-assistants/awsistants-python.git@main
or add to `pyproject.toml`
awsistants = {git = "https://github.com/awesome-assistants/awsistants-python.git", rev = "main"}
## Build
make
## Usage
```python
from awsistants import Awsistants
aw = Awsistants()
all_assistants = aw.get_assistants()
awesome_assistant = all_assistants[0]print(awesome_assistant.id)
print(awesome_assistant.name)
print(awesome_assistant.instructions)```