Metadata-Version: 2.1
Name: friendlly
Version: 0.0.2
Summary: Your friendlly ai assistant
Home-page: https://github.com/xl0/friendlly
Author: Alexey
Author-email: alexey.zaytsev@gmail.com
License: Apache Software License 2.0
Keywords: nbdev jupyter notebook python
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: claudette
Provides-Extra: dev
Requires-Dist: python-dotenv; extra == "dev"

FriendLLy
================

<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->

## Install

``` sh
pip install friendlly
```

## How to use

``` python
import os
os.environ['ANTHROPIC_API_KEY'] = 'your-very-secret-anthropic-api-key'

# Or even better, use dotenv instead:
# (assuming you have an .env file with 'ANTHROPIC_API_KEY=your-very-secret-anthropic-api-key' in it)
import dotenv; dotenv.load_dotenv();
```

------------------------------------------------------------------------

``` python
%load_ext friendlly
```

``` python
%fr Hello there! My name is Alex.
# Hello Alex! It's nice to meet you. I'm an AI assistant created by Anthropic to be helpful,
# harmless, and honest. How can I help you today?

%fr
```
