DORA (Dataflow-Oriented Robotic Architecture) is middleware designed to streamline and simplify the creation of AI-based robotic applications. It offers low latency, composable, and distributed dataflow capabilities. Applications are modeled as directed graphs, also referred to as pipelines.
You will find in this pull request a quick implementation of an openAI server makes it possible to make request from an openai endpoint client and receive it within the dataflow.
Note that I have only implemented chat completion and this is still experimental.
Get started with:
cd examples/openai-server
dora build dataflow.yml
dora start dataflow.yml
# In a separate terminal
python openai_api_client.py
You will find in this pull request a quick implementation of an openAI server makes it possible to make request from an openai endpoint client and receive it within the dataflow.
Note that I have only implemented chat completion and this is still experimental.
Get started with: