Untitled

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

{

"openapi": "3.1.0",
"info": {
"title": "My API",
"description": "This is a description of my API",
"version": "v1.0.0"
},
"servers": [
{
"url": "http://localhost:8080"
}
],
"paths": {},
"components": {
"schemas": {}
}
}
#!/bin/bash

OPENAI_API_KEY="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"

function call_openai_api() {
local endpoint=$1
local data=$2

curl "https://api.openai.com/v1/${endpoint}" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-H "OpenAI-Beta: assistants=v1" \
-d "$data"
}

# Example usage:
call_openai_api "threads/thread_abc123/messages" '{
"role": "user",
"content": "I need to solve the equation `3x + 11 = 14`. Can you help me?"
}'

You might also like