Explore Pixeltable ecosystem of built-in integrations for AI/ML workflows
From language models to computer vision frameworks, Pixeltable integrates with the entire ecosystem. All integrations are available out-of-the-box with Pixeltable installation. No additional setup required unless specified.
If you have a framework that you want us to integrate with, please reach out and you can also leverage Pixeltable’s UDFs to build your own.
import pixeltable as pxtfrom pixeltable.functions import openai# Create a table with computed column for OpenAI completiontable = pxt.create_table('responses', {'prompt': pxt.String})table.add_computed_column( response=openai.chat_completions( messages=[{'role': 'user', 'content': table.prompt}], model='gpt-4' ))
Computer Vision
Copy
Ask AI
from pixeltable.functions.yolox import yolox# Add object detection to video framesframes_view.add_computed_column( detections=yolox( frames_view.frame, model_id='yolox_l' ))