oRPC OpenAI Streaming Example

Installation
SKILL.md

OpenAI Streaming Example

Integrate oRPC with the OpenAI Streaming API to build a chatbot.

Basic Example

import { createORPCClient } from '@orpc/client'
import { RPCLink } from '@orpc/client/fetch'
import { os, RouterClient } from '@orpc/server'
import * as z from 'zod'
import OpenAI from 'openai'

const openai = new OpenAI()
Installs
First Seen
oRPC OpenAI Streaming Example — ali-master/skills