Skip to main content

A Flask extension for easy integration with OpenAI's API.

Project description

Flask-OpenAI Extension

The Flask-OpenAI extension provides a simple and intuitive way to integrate OpenAI's API into your Flask applications. With minimal setup, you can start leveraging the power of AI models in your Flask projects, whether it's for generating text, code, or any other application supported by OpenAI.

Features

  • Easy integration of OpenAI's API into Flask applications.
  • Automatic management of OpenAI API keys.
  • Efficient handling of API client instances throughout the application lifecycle.

Installation

Install Flask-OpenAI using pip:

pip install flask-openai

Quick Start

  1. Set up your Flask application

First, ensure you have Flask installed. If not, you can install it using pip:

pip install Flask

Then, set up a basic Flask application:

from flask import Flask
app = Flask(__name__)
  1. Configure the Flask-OpenAI extension

Import and initialize the OpenAI extension, passing your Flask app object to it. Don't forget to set the OPENAI_API_KEY in your app's configuration:

from flask_openai import OpenAI

app.config['OPENAI_API_KEY'] = 'your_openai_api_key_here'
openai_extension = OpenAI(app)

Alternatively, if you are using a factory function to create your Flask app, you can set up the OpenAI extension like this:

openai_extension = OpenAI()

def create_app():
    app = Flask(__name__)
    app.config['OPENAI_API_KEY'] = 'your_openai_api_key_here'
    openai_extension.init_app(app)
    return app
  1. Use the OpenAI client in your application

Now, you can access the OpenAI client in your route handlers using openai_extension.client. Here's an example of how to generate text with the OpenAI API:

@app.route('/generate-text')
def generate_text():
    response = openai_extension.client.Completion.create(
      engine="text-davinci-003",
      prompt="Once upon a time",
      max_tokens=50
    )
    return response.choices[0].text

Documentation

For more information on OpenAI's API and its capabilities, visit OpenAI API documentation.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contributing

Contributions are welcome! Please feel free to submit a pull request.

Support

If you have any questions or encounter any issues, please open an issue on the project's GitHub page.

Acknowledgements

This project is not officially associated with OpenAI. All trademarks are the property of their respective owners.

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

flask_openai-0.2.0.tar.gz (4.4 kB view details)

Uploaded Source

Built Distribution

flask_openai-0.2.0-py3-none-any.whl (3.7 kB view details)

Uploaded Python 3

File details

Details for the file flask_openai-0.2.0.tar.gz.

File metadata

  • Download URL: flask_openai-0.2.0.tar.gz
  • Upload date:
  • Size: 4.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.31.0

File hashes

Hashes for flask_openai-0.2.0.tar.gz
Algorithm Hash digest
SHA256 dab4909fd23995d3748c98de415abaf9896747ef22c6d588337e5a194aae5d8a
MD5 daa6bf8c75b2fcbac9679445837d1721
BLAKE2b-256 65cb5423979b8ac85af2f43cd21799ba68716c2933d7b77715c0997093f36f33

See more details on using hashes here.

File details

Details for the file flask_openai-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for flask_openai-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 84cb03caeacccfe435b6a4b5b3b00a0ce258a4a58427463349f2031f995f2201
MD5 8b09e93bc32c2c6d0406ec12a6ebe14a
BLAKE2b-256 136e8200d7ff39d080af42a8b507aa6eca8c042bce067e99dfc233525cd83070

See more details on using hashes here.

Supported by

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