Spaces:
Runtime error
Runtime error
File size: 208 Bytes
105b369 |
1 2 3 4 5 6 7 8 9 |
from typing import Optional
from phi.llm.openai.chat import OpenAIChat
class OpenAILike(OpenAIChat):
name: str = "OpenAILike"
model: str = "not-provided"
api_key: Optional[str] = "not-provided"
|