upload project
Signed-off-by: Ahmed_Elsharkawy <ahmed.yaser.el.sharkawy@gmail.com>
هذا الالتزام موجود في:
19
main.py
Normal file
19
main.py
Normal file
@@ -0,0 +1,19 @@
|
||||
from openai import OpenAI
|
||||
import os
|
||||
from dotenv import load_dotenv
|
||||
|
||||
load_dotenv()
|
||||
|
||||
api_key=os.getenv("API_KEY")
|
||||
|
||||
client = OpenAI(api_key=api_key, base_url="https://genai.ghaymah.systems")
|
||||
|
||||
response = client.chat.completions.create(
|
||||
model="DeepSeek-V3-0324",
|
||||
messages=[
|
||||
{"role": "user", "content": "Explain AI in simple terms"}
|
||||
],
|
||||
max_tokens=100
|
||||
)
|
||||
|
||||
print(response.choices[0].message.content)
|
المرجع في مشكلة جديدة
حظر مستخدم