Metadata-Version: 2.1
Name: cyberchipped
Version: 0.2.6
Summary: Build AI Apps Fast
Home-page: https://cyberchipped.com
License: Apache-2.0
Keywords: ai,openai
Author: Bevan Hunt
Author-email: bevan@bevanhunt.com
Requires-Python: >=3.11
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Dist: jinja2 (>=3.1.2)
Requires-Dist: openai (>=1.1.0)
Requires-Dist: pydantic (>=2.4.2)
Requires-Dist: pydantic_settings
Requires-Dist: pymongo (>=4.6.1)
Requires-Dist: python-dotenv (>=1.0.0)
Requires-Dist: rich (>=12)
Requires-Dist: tiktoken (>=0.4.0)
Project-URL: Repository, https://github.com/bevanhunt/cyberchipped
Description-Content-Type: text/markdown

# CyberChipped

[![PyPI - Version](https://img.shields.io/pypi/v/cyberchipped)](https://pypi.org/project/cyberchipped/)
[![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/bevanhunt/cyberchipped/build.yml)](https://github.com/bevanhunt/cyberchipped/actions)
[![Codecov](https://img.shields.io/codecov/c/github/bevanhunt/cyberchipped)](https://app.codecov.io/gh/bevanhunt/cyberchipped)

![CyberChipped Logo](https://cyberchipped.com/375.png)

## Introduction
CyberChipped enables building powerful AI apps fast by providing three core abstractions.

These abstractions are the OpenAI Assistant, AI Function, and AI Model.

The key selling point of this library is to build an OpenAI Assistant in two lines of code!

CyberChipped powers the most feature-rich AI Companion - [CometHeart](https://cometheart.com)!

## Install

```bash
pip install cyberchipped
```

## Setup
Create a .env file in your project root with this key in it:
```bash
OPENAI_API_KEY=YOUR_OPENAI_API_KEY
```

## Abstractions

### OpenAI Assistant
```python
from cyberchipped.assistants import Assistant


with Assistant() as ai:
    print(ai.say("Hello World!"))
    # prints: "Hello there! How can I assist you today?"
```

### AI Function
```python
from cyberchipped import ai_fn

@ai_fn
def echo(text: str) -> str:
    """You return `text`."""

print(echo("Hello World!"))
# prints: "Hello World!"

```

### AI Model
```python
from cyberchipped import ai_model
from pydantic import BaseModel, Field

@ai_model
class Planet(BaseModel):
    """Planet Attributes"""
    name: str = Field(..., description="The name of the planet.")

planet = Planet("Mars is a great place to visit!")
print(planet.name)
# prints: "Mars"
```

## Database
CyberChipped requires a database to track and manage OpenAI Assistant threads across runs.


### SQLite (default)
Will be saved in your local working directory (where you code is located) and be called `cyberchipped.db`. Unless you use MongoDB.

### MongoDB
Set the following env vars in your .env file:
```bash
MONGO_URL=YOUR_MONGO_URL
MONGO_DB=YOUR_DATABASE_NAME
MONGO_COLLECTION=YOUR_COLLECTION_NAME
```

## Source
This is a hard fork of [Marvin](https://askmarvin.ai) pre-release

## Platform Support
Mac and Linux

## Requirements
Python >= 3.11

