Skip to main content

OpenAI

Type: conversation.openai

Status: alpha

Reference: https://docs.dapr.io/reference/components-reference/supported-conversation/openai/

Example

apiVersion: cra.diagrid.io/v1beta1
kind: Component
metadata:
name: <name>
spec:
type: conversation.openai
version: v1
metadata:
# API key for OpenAI.
- name: key
value: |
**********
# A time-to-live value for a prompt cache to expire. Uses Golang durations (Optional)
#- name: cacheTTL
# value: "10m"
# The OpenAI LLM to use. Defaults to gpt-4o (Optional)
#- name: model
# value: "gpt-4-turbo"

Authentication profiles

Available authentication profiles:

  • API Key

API Key

Authenticate using an API key

key (string)

Required - API key for OpenAI.

Example value:

**********

Metadata

cacheTTL (string)

A time-to-live value for a prompt cache to expire. Uses Golang durations

Example value: 10m

model (string)

The OpenAI LLM to use. Defaults to gpt-4o

Example value: gpt-4-turbo