medtrax / app.py
erhanmeydan's picture
Update app.py
a8df29a verified
raw
history blame
439 Bytes
# 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