Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.epigos.ai/llms.txt

Use this file to discover all available pages before exploring further.

The Epigos Python Package is a python wrapper around the core Epigos AI web application and REST API.

Python SDK

Visit the GitHub Repo
You’ll need to Create an API Key to Authentication with Epigos AI.

Install

To add epigos to your project simply install with pip:
pip install epigos
or with poetry:
poetry add epigos

Modules

import epigos

client = epigos.Epigos("api_key")

# load classification model
ic = client.classification("model_id")

# load object detection model
od = client.object_detection("model_id")

Checkout the code on Github