9 lines
236 B
Python
9 lines
236 B
Python
from openai import OpenAI
|
|
|
|
|
|
def create_client(api_key: str) -> OpenAI:
|
|
"""Factory for an OpenAI-compatible client pointed at DeepSeek."""
|
|
return OpenAI(
|
|
api_key=api_key,
|
|
base_url="https://api.deepseek.com",
|
|
) |