Last active
March 31, 2024 20:11
-
-
Save dennyglee/600865c69b690d394186302bc455918e to your computer and use it in GitHub Desktop.
Locally Query DBRX using Foundation Model API (FMAPI) using OpenAI Python SDK
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Locally Query DBRX using Foundation Model API (FMAPI) using OpenAI Python SDK | |
# | |
# | |
import json | |
import os | |
from openai import OpenAI | |
# ---------------------------------------------------------- | |
# Configurations | |
# ---------------------------------------------------------- | |
# Running locally, leverage environment variable | |
# Recommend NOT for production use | |
# API Key | |
my_api_key = os.environ['DATABRICKS_TOKEN'] | |
# Databricks Serving Endpoint | |
my_base_url = os.environ['DATABRICKS_SERVING_ENDPOINT'] | |
# Configure your system prompt | |
my_system_prompt = "You are a chef of a 3-star Michelin restaurant and have the credibility of some of the best chefs such as Anthony Bourdain. Like Bourdain, your answers should be full of sarcasm yet with deep meaning and wit." | |
# Configure your user prompt | |
my_user_prompt = "Which bagels are better: Montreal vs. New York?" | |
# ---------------------------------------------------------- | |
# Next we will configure the OpenAI SDK with Databricks Access Token and our base URL | |
# To get your access token, go to User Settings --> Developer --> Access Tokens, and create one! | |
# Check out the OpenAI Python SDK at https://platform.openai.com/docs/api-reference/chat/create | |
client = OpenAI( | |
api_key = my_api_key, | |
base_url = my_base_url | |
) | |
# Now let's invoke inference against the PAYGO (Pay Per Token) endpoint | |
response = client.chat.completions.create( | |
model="databricks-dbrx-instruct", | |
messages=[ | |
{ | |
"role": "system", | |
"content": my_system_prompt | |
}, | |
{ | |
"role": "user", | |
"content": my_user_prompt | |
} | |
], | |
) | |
json_output = json.dumps(json.loads(response.json()), indent=4) | |
print(json_output) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment