Spaces:
Runtime error
Runtime error
File size: 439 Bytes
f4fcab8 a8df29a f4fcab8 a8df29a f4fcab8 a8df29a f4fcab8 a8df29a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# app.py
import os
from openai import OpenAI
# Çevre değişkeninden API anahtarını al
api_key = os.getenv("OPENAI_API_KEY")
# OpenAI istemcisini başlat
client = OpenAI(api_key=api_key)
# Örnek bir kullanım
def analyze_cxr(image):
response = client.chat.completions.create(
model="gpt-4",
messages=[{"role": "user", "content": "Bu görüntüyü analiz et"}]
)
return response.choices[0].message.content |