Skip to main content

sinapsis module to handle OpenAI modules for chat completion, image edition and creation, audio generation, among other tasks

Project description



Sinapsis OpenAI

Templates for seamless integration with OpenAI's powerful APIs

🐍 Installation 🚀 Features 📚 Usage example 🌐 Webapp📙 Documentation 🔍 License

Sinapsis OpenAI provides a powerful and flexible implementation for leveraging OpenAI's APIs. It enables users to easily configure and run various AI tasks including chat completions, audio processing, and image generation/editing.

🐍 Installation

Install using your package manager of choice. We encourage the use of uv

Example with uv:

  uv pip install sinapsis-openai --extra-index-url https://pypi.sinapsis.tech

or with raw pip:

  pip install sinapsis-openai --extra-index-url https://pypi.sinapsis.tech

🚀 Features

Templates Supported

This module includes multiple templates tailored for different OpenAI tasks:

  • OpenAIChatWrapper: Enables chat completions using OpenAI's chat API, supporting models like GPT-4 and GPT-3.5-turbo.
  • OpenAIAudioTranslationWrapper: Translates audio input into text in another language using Whisper models.
  • OpenAIAudioTranscriptionWrapper: Converts audio input into text, supporting multiple languages and long audio files.
  • OpenAIAudioCreationWrapper: Generates audio from text using speech synthesis with multiple voice options.
  • OpenAIImageCreationWrapper: Creates images from text prompts using DALL-E models, with configurable sizes and formats.
  • OpenAIImageEditionWrapper: Edits images using OpenAI's image editing API, supporting inpainting and variations.

[!TIP] Use CLI command sinapsis info --all-template-names to show a list with all the available Template names installed with Sinapsis OpenAI.

🌍 General Attributes

All templates share the following attribute:

  • model: Determines which model to use depending on the task chosen.
  • openai_init: Dictionary of attributes related to the arguments of the OpenAI client method. Ensure that values are assigned correctly according to the official OpenAI documentation.
Specific Attributes

There are some attributes specific to the templates used:

  • OpenAIChatWrapper has one additional attribute:
    • create (dict, optional): Dictionary of attributes related to the arguments of the OpenAI create method. Ensure that values are assigned correctly according to the official OpenAI chat documentation.
  • OpenAIAudioTranslationWrapper has one additional attribute:
    • create (dict, optional): Dictionary of attributes related to the arguments of the OpenAI create method. Ensure that values are assigned correctly according to the official OpenAI audio documentation.
  • OpenAIAudioTranscriptionWrapper has two additional attributes:
    • create (dict, optional): Dictionary of attributes related to the arguments of the OpenAI create method. Ensure that values are assigned correctly according to the official OpenAI audio documentation.
  • OpenAIAudioCreationWrapper has two additional attributes:
    • output_dir (str, optional): Relative path where the binary audio output file will be saved. Defaults to openai/openai_audio.mp4.
    • create (dict, optional): Dictionary of attributes related to the arguments of the OpenAI create method. Ensure that values are assigned correctly according to the official OpenAI audio documentation.
  • OpenAIImageCreationWrapper has two additional attributes:
    • response_format (Literal, optional): Specifies the format of the API response. Defaults to url.
    • generate (dict, optional): Dictionary of attributes related to the arguments of the OpenAI generate method. Ensure that values are assigned correctly according to the official OpenAI image documentation.
  • OpenAIImageEditionWrapper has three additional attributes:
    • path_to_mask (str, optional): File path to a mask image.
    • path_to_image (str, required): The file path of the original image to be edited. The image is expected to be in png format.
    • edit (dict, optional): Dictionary of attributes related to the arguments of the OpenAI edit method. Ensure that values are assigned correctly according to the official OpenAI image documentation.

[!TIP] Use CLI command sinapsis info --example-template-config TEMPLATE_NAME to produce an example Agent config for the Template specified in TEMPLATE_NAME.

For example, for OpenAIImageCreationWrapper use sinapsis info --example-template-config OpenAIImageCreationWrapper to produce an example config like:

agent:
  name: my_test_agent
templates:
- template_name: InputTemplate
  class_name: InputTemplate
  attributes: {}
- template_name: OpenAIImageCreationWrapper
  class_name: OpenAIImageCreationWrapper
  template_input: InputTemplate
  attributes:
    model: 'dall-e-3'
    response_format: url
    openai_init:
      api_key: null
      organization: null
      project: null
      base_url: null
      websocket_base_url: null
      timeout: 2
      max_retries: 2
      default_headers: null
      default_query: null
      http_client: null
    generate:
      n: 1
      quality: 'standard'
      size: '256x256'
      style: 'vivid'
      user: 'my user'
      extra_headers: null
      extra_query: null
      extra_body: null
      timeout: 2

📚 Usage example

Below is an example YAML configuration for chat completions using OpenAI's GPT-4. In this example, we define an agent named my_test_agent and configure a chat template to process a text input ("What is AI?"). The chat template uses GPT-4 with a temperature of 0.2 and limits the response to a maximum of 60 completion tokens. Environment variables are used for API authentication.

Config
agent:
  name: my_test_agent
  description: "Chat example"

templates:

- template_name: InputTemplate
  class_name: InputTemplate
  attributes: {}

- template_name: TextInput
  class_name: TextInput
  template_input: InputTemplate
  attributes:
    text : What is AI?

- template_name: OpenAIChat
  class_name: OpenAIChatWrapper
  template_input: TextInput
  attributes:
    model : gpt-4
    openai_init: {}
    create:
      temperature: 0.2
      max_completion_tokens: 60
This configuration defines an **agent** and a sequence of **templates** to create a chat completion using OpenAI GPT-4.

[!IMPORTANT] Attributes specified under the *_init keys (e.g., openai_init) correspond directly to the OpenAi client parameters, while the ones under the create are directly associated to the arguments expected in the create method. Ensure that values are assigned correctly according to the official OpenAI documentation.

The TextInput template correspond to sinapsis-data-readers. If you want to use the example, please make sure you install the package.

To run the config, use the CLI:

sinapsis run name_of_config.yml

🌐 Webapp

The webapp provides a simple interface to generate images using OpenAI's DALL-E 3. Just input your text prompt, and the app will create and display the generated image.

[!IMPORTANT] To run the app you first need to clone this repository:

git clone git@github.com:Sinapsis-ai/sinapsis-openai.git
cd sinapsis-openai

[!NOTE] If you'd like to enable external app sharing in Gradio, export GRADIO_SHARE_APP=True

[!IMPORTANT] You need to set your OpenAI API key, export OPENAI_API_KEY="your-api-key-here"

[!TIP] To use different prompts, modify the text attribute in the TextInput template within the configuration file config_image_creation.yaml under src/sinapsis_openai/configs. For example:

- template_name: TextInput
  class_name: TextInput
  template_input: InputTemplate
  attributes:
    text: "Your new prompt here"
🐳 Docker

IMPORTANT This docker image depends on the sinapsis:base image. Please refer to the official sinapsis instructions to Build with Docker.

  1. Build the sinapsis-openai image:
docker compose -f docker/compose.yaml build
  1. Start the app container:
docker compose -f docker/compose_apps.yaml up sinapsis-openai-gradio -d
  1. Check the status:
docker logs -f sinapsis-openai-gradio
  1. The logs will display the URL to access the webapp, e.g.:

NOTE: The url can be different, check the output of logs

Running on local URL:  http://127.0.0.1:7860
  1. To stop the app:
docker compose -f docker/compose_apps.yaml down
💻 UV

To run the webapp using the uv package manager, please:

  1. Create the virtual environment and sync the dependencies:
uv sync --frozen
  1. Install the wheel:
uv pip install sinapsis-openai[all] --extra-index-url https://pypi.sinapsis.tech
  1. Activate the environment:
source .venv/bin/activate
  1. Run the webapp:
python webapps/image_creation.py
  1. The terminal will display the URL to access the webapp, e.g.:

NOTE: The url can be different, check the output of the terminal

Running on local URL:  http://127.0.0.1:7860

📙 Documentation

Documentation for this and other sinapsis packages is available on the sinapsis website

Tutorials for different projects within sinapsis are available at sinapsis tutorials page

🔍 License

This project is licensed under the AGPLv3 license, which encourages open collaboration and sharing. For more details, please refer to the LICENSE file.

For commercial use, please refer to our official Sinapsis website for information on obtaining a commercial license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sinapsis_openai-0.1.2.tar.gz (28.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sinapsis_openai-0.1.2-py3-none-any.whl (29.7 kB view details)

Uploaded Python 3

File details

Details for the file sinapsis_openai-0.1.2.tar.gz.

File metadata

  • Download URL: sinapsis_openai-0.1.2.tar.gz
  • Upload date:
  • Size: 28.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.16

File hashes

Hashes for sinapsis_openai-0.1.2.tar.gz
Algorithm Hash digest
SHA256 b8c1485a81938833aace73455b0183afb880ab65d57e2e89fb68eade2c79916c
MD5 cd24acc63d2309979dd1529454f5bc91
BLAKE2b-256 7616c4da09a1e008219714ec0798acec6843eb23e57158ded75daa69d5797bfc

See more details on using hashes here.

File details

Details for the file sinapsis_openai-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for sinapsis_openai-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 39bdbceb44e3ded9eb8b40d56209cf3e0f1cce98e4442fd055b872de8e1cfeef
MD5 f4ce7c1db4171f05fdd56c332b1cd86b
BLAKE2b-256 d87783e0dcaf0bc40d883034af3df748778fa843d4692b1635dfebf5759f17b4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page