Metadata-Version: 2.1
Name: fleet-sdk
Version: 0.5.5
Summary: Fleet SDK for building and managing chatGPT plugins
Author: fleet_team
Author-email: fleet.ai.team@gmail.com
Requires-Python: >=3.6,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
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: Programming Language :: Python :: 3.11
Requires-Dist: fastapi (>=0.95.0,<0.96.0)
Description-Content-Type: text/markdown

## Set Up Fleet

# Install the SDK 

pip install fleet-sdk

# Import the SDK at the top of your plugin's files

from fleet_sdk.fastapi import Tracker 

from fleet_sdk.flask import Tracker 

from fleet_sdk.quart import Tracker 

# Initialize the SDK with your Plugins Analytics's ID.

tracker = Tracker("fleet-49b1bee7-b471-492a-a814-1bfbc2c2afa8", app=app)

# Add this decorator to the endpoints you want to track.

@tracker.log_event
