Spaces:
Runtime error
Runtime error
from chats import alpaca | |
from chats import alpaca_gpt4 | |
from chats import stablelm | |
from chats import koalpaca | |
from chats import os_stablelm | |
from chats import vicuna | |
from chats import flan_alpaca | |
from chats import starchat | |
from chats import redpajama | |
from chats import mpt | |
from chats import alpacoom | |
from chats import baize | |
from chats import guanaco | |
# from chats import falcon | |
from pingpong.gradio import GradioAlpacaChatPPManager | |
from pingpong.gradio import GradioKoAlpacaChatPPManager | |
from pingpong.gradio import GradioStableLMChatPPManager | |
from pingpong.gradio import GradioFlanAlpacaChatPPManager | |
from pingpong.gradio import GradioOSStableLMChatPPManager | |
from pingpong.gradio import GradioVicunaChatPPManager | |
from pingpong.gradio import GradioStableVicunaChatPPManager | |
from pingpong.gradio import GradioStarChatPPManager | |
from pingpong.gradio import GradioMPTChatPPManager | |
from pingpong.gradio import GradioBaizeChatPPManager | |
from pingpong.pingpong import PPManager | |
from pingpong.pingpong import PromptFmt | |
from pingpong.pingpong import UIFmt | |
from pingpong.gradio import GradioChatUIFmt | |
class RedPajamaChatPromptFmt(PromptFmt): | |
def ctx(cls, context): | |
if context is None or context == "": | |
return "" | |
else: | |
return f"""{context} | |
""" | |
def prompt(cls, pingpong, truncate_size): | |
ping = pingpong.ping[:truncate_size] | |
pong = "" if pingpong.pong is None else pingpong.pong[:truncate_size] | |
return f"""<human>: {ping} | |
<bot>:{pong}""" | |
class RedPajamaChatPPManager(PPManager): | |
def build_prompts(self, from_idx: int=0, to_idx: int=-1, fmt: PromptFmt=RedPajamaChatPromptFmt, truncate_size: int=None): | |
if to_idx == -1 or to_idx >= len(self.pingpongs): | |
to_idx = len(self.pingpongs) | |
results = fmt.ctx(self.ctx) | |
for idx, pingpong in enumerate(self.pingpongs[from_idx:to_idx]): | |
results += fmt.prompt(pingpong, truncate_size=truncate_size) | |
return results | |
class GradioRedPajamaChatPPManager(RedPajamaChatPPManager): | |
def build_uis(self, from_idx: int=0, to_idx: int=-1, fmt: UIFmt=GradioChatUIFmt): | |
if to_idx == -1 or to_idx >= len(self.pingpongs): | |
to_idx = len(self.pingpongs) | |
results = [] | |
for pingpong in self.pingpongs[from_idx:to_idx]: | |
results.append(fmt.ui(pingpong)) | |
return results | |
class RedPajamaInstructPromptFmt(PromptFmt): | |
def ctx(cls, context): | |
if context is None or context == "": | |
return "" | |
else: | |
return f"""{context} | |
""" | |
def prompt(cls, pingpong, truncate_size): | |
ping = pingpong.ping[:truncate_size] | |
pong = "" if pingpong.pong is None else pingpong.pong[:truncate_size] | |
return f"""Q: {ping} | |
A:{pong}""" | |
class RedPajamaInstructChatPPManager(PPManager): | |
def build_prompts(self, from_idx: int=0, to_idx: int=-1, fmt: PromptFmt=RedPajamaInstructPromptFmt, truncate_size: int=None): | |
if to_idx == -1 or to_idx >= len(self.pingpongs): | |
to_idx = len(self.pingpongs) | |
results = fmt.ctx(self.ctx) | |
for idx, pingpong in enumerate(self.pingpongs[from_idx:to_idx]): | |
results += fmt.prompt(pingpong, truncate_size=truncate_size) | |
return results | |
class GradioRedPajamaInstructChatPPManager(RedPajamaInstructChatPPManager): | |
def build_uis(self, from_idx: int=0, to_idx: int=-1, fmt: UIFmt=GradioChatUIFmt): | |
if to_idx == -1 or to_idx >= len(self.pingpongs): | |
to_idx = len(self.pingpongs) | |
results = [] | |
for pingpong in self.pingpongs[from_idx:to_idx]: | |
results.append(fmt.ui(pingpong)) | |
return results | |
### | |
class GuanacoPromptFmt(PromptFmt): | |
def ctx(cls, context): | |
if context is None or context == "": | |
return "" | |
else: | |
return f"""{context} | |
""" | |
def prompt(cls, pingpong, truncate_size): | |
ping = pingpong.ping[:truncate_size] | |
pong = "" if pingpong.pong is None else pingpong.pong[:truncate_size] | |
return f"""### Human: {ping} | |
### Assistant: {pong} | |
""" | |
class GuanacoChatPPManager(PPManager): | |
def build_prompts(self, from_idx: int=0, to_idx: int=-1, fmt: PromptFmt=GuanacoPromptFmt, truncate_size: int=None): | |
if to_idx == -1 or to_idx >= len(self.pingpongs): | |
to_idx = len(self.pingpongs) | |
results = fmt.ctx(self.ctx) | |
for idx, pingpong in enumerate(self.pingpongs[from_idx:to_idx]): | |
results += fmt.prompt(pingpong, truncate_size=truncate_size) | |
return results | |
class GradioGuanacoChatPPManager(GuanacoChatPPManager): | |
def build_uis(self, from_idx: int=0, to_idx: int=-1, fmt: UIFmt=GradioChatUIFmt): | |
if to_idx == -1 or to_idx >= len(self.pingpongs): | |
to_idx = len(self.pingpongs) | |
results = [] | |
for pingpong in self.pingpongs[from_idx:to_idx]: | |
results.append(fmt.ui(pingpong)) | |
return results | |
class WizardPromptFmt(PromptFmt): | |
def ctx(cls, context): | |
if context is None or context == "": | |
return "" | |
else: | |
return f"""{context} | |
""" | |
def prompt(cls, pingpong, truncate_size): | |
ping = pingpong.ping[:truncate_size] | |
pong = "" if pingpong.pong is None else pingpong.pong[:truncate_size] | |
return f"""{ping} | |
### Response: {pong} | |
""" | |
class WizardChatPPManager(PPManager): | |
def build_prompts(self, from_idx: int=0, to_idx: int=-1, fmt: PromptFmt=WizardPromptFmt, truncate_size: int=None): | |
if to_idx == -1 or to_idx >= len(self.pingpongs): | |
to_idx = len(self.pingpongs) | |
results = fmt.ctx(self.ctx) | |
for idx, pingpong in enumerate(self.pingpongs[from_idx:to_idx]): | |
results += fmt.prompt(pingpong, truncate_size=truncate_size) | |
return results | |
class GradioWizardChatPPManager(WizardChatPPManager): | |
def build_uis(self, from_idx: int=0, to_idx: int=-1, fmt: UIFmt=GradioChatUIFmt): | |
if to_idx == -1 or to_idx >= len(self.pingpongs): | |
to_idx = len(self.pingpongs) | |
results = [] | |
for pingpong in self.pingpongs[from_idx:to_idx]: | |
results.append(fmt.ui(pingpong)) | |
return results | |
class KULLMPromptFmt(PromptFmt): | |
def ctx(cls, context): | |
if context is None or context == "": | |
return "" | |
else: | |
return f"""{context} | |
""" | |
def prompt(cls, pingpong, truncate_size): | |
ping = pingpong.ping[:truncate_size] | |
pong = "" if pingpong.pong is None else pingpong.pong[:truncate_size] | |
return f"""### λͺ λ Ήμ΄: | |
{ping} | |
### μλ΅: | |
{pong} | |
""" | |
class KULLMChatPPManager(PPManager): | |
def build_prompts(self, from_idx: int=0, to_idx: int=-1, fmt: PromptFmt=KULLMPromptFmt, truncate_size: int=None): | |
if to_idx == -1 or to_idx >= len(self.pingpongs): | |
to_idx = len(self.pingpongs) | |
results = fmt.ctx(self.ctx) | |
for idx, pingpong in enumerate(self.pingpongs[from_idx:to_idx]): | |
results += fmt.prompt(pingpong, truncate_size=truncate_size) | |
return results | |
class GradioKULLMChatPPManager(KULLMChatPPManager): | |
def build_uis(self, from_idx: int=0, to_idx: int=-1, fmt: UIFmt=GradioChatUIFmt): | |
if to_idx == -1 or to_idx >= len(self.pingpongs): | |
to_idx = len(self.pingpongs) | |
results = [] | |
for pingpong in self.pingpongs[from_idx:to_idx]: | |
results.append(fmt.ui(pingpong)) | |
return results | |
def get_chat_interface(model_type): | |
if model_type == "alpaca": | |
return alpaca.chat_stream | |
elif model_type == "alpaca-gpt4": | |
return alpaca.chat_stream | |
elif model_type == "stablelm": | |
return stablelm.chat_stream | |
elif model_type == "os-stablelm": | |
return os_stablelm.chat_stream | |
elif model_type == "koalpaca-polyglot": | |
return koalpaca.chat_stream | |
elif model_type == "flan-alpaca": | |
return flan_alpaca.chat_stream | |
elif model_type == "camel": | |
return alpaca.chat_stream | |
elif model_type == "t5-vicuna": | |
return vicuna.chat_stream | |
elif model_type == "stable-vicuna": | |
return vicuna.chat_stream | |
elif model_type == "starchat": | |
return starchat.chat_stream | |
elif model_type == "mpt": | |
return mpt.chat_stream | |
elif model_type == "redpajama": | |
return redpajama.chat_stream | |
elif model_type == "vicuna": | |
return vicuna.chat_stream | |
elif model_type == "llama-deus": | |
return alpaca.chat_stream | |
elif model_type == "evolinstruct-vicuna": | |
return vicuna.chat_stream | |
elif model_type == "alpacoom": | |
return alpacoom.chat_stream | |
elif model_type == "baize": | |
return baize.chat_stream | |
elif model_type == "guanaco": | |
return guanaco.chat_stream | |
elif model_type == "nous-hermes": | |
return alpaca.chat_stream | |
else: | |
return None | |
def get_chat_manager(model_type): | |
if model_type == "alpaca": | |
return GradioAlpacaChatPPManager | |
elif model_type == "alpaca-gpt4": | |
return GradioAlpacaChatPPManager() | |
elif model_type == "stablelm": | |
return GradioStableLMChatPPManager() | |
elif model_type == "os-stablelm": | |
return GradioOSStableLMChatPPManager() | |
elif model_type == "koalpaca-polyglot": | |
return GradioKoAlpacaChatPPManager() | |
elif model_type == "flan-alpaca": | |
return GradioFlanAlpacaChatPPManager() | |
elif model_type == "camel": | |
return GradioAlpacaChatPPManager() | |
elif model_type == "t5-vicuna": | |
return GradioVicunaChatPPManager() | |
elif model_type == "vicuna": | |
return GradioVicunaChatPPManager() | |
elif model_type == "stable-vicuna": | |
return GradioStableVicunaChatPPManager() | |
elif model_type == "starchat": | |
return GradioStarChatPPManager() | |
elif model_type == "mpt": | |
return GradioMPTChatPPManager() | |
elif model_type == "redpajama": | |
return GradioRedPajamaChatPPManager() | |
elif model_type == "llama-deus": | |
return GradioAlpacaChatPPManager() | |
elif model_type == "evolinstruct-vicuna": | |
return GradioVicunaChatPPManager() | |
elif model_type == "alpacoom": | |
return GradioAlpacaChatPPManager() | |
elif model_type == "baize": | |
return GradioBaizeChatPPManager() | |
elif model_type == "guanaco": | |
return GradioGuanacoChatPPManager() | |
elif model_type == "nous-hermes": | |
return GradioAlpacaChatPPManager() | |
else: | |
return None | |
def get_global_context(model_type): | |
if model_type == "alpaca": | |
return """Below are a series of dialogues between human and an AI assistant. | |
The AI tries to answer the given instruction as in response. | |
The AI MUST not generate any text containing `### Response` or `### Instruction`. | |
The AI MUST be helpful, polite, honest, sophisticated, emotionally aware, and humble-but-knowledgeable. | |
The assistant MUST be happy to help with almost anything, and will do its best to understand exactly what is needed. | |
It also MUST avoid giving false or misleading information, and it caveats when it isnβt entirely sure about the right answer. | |
That said, the assistant is practical and really does its best, and doesnβt let caution get too much in the way of being useful. | |
""" | |
elif model_type == "alpaca-gpt4": | |
return """Below are a series of dialogues between human and an AI assistant. | |
The AI tries to answer the given instruction as in response. | |
The AI MUST not generate any text containing `### Response` or `### Instruction`. | |
The AI MUST be helpful, polite, honest, sophisticated, emotionally aware, and humble-but-knowledgeable. | |
The assistant MUST be happy to help with almost anything, and will do its best to understand exactly what is needed. | |
It also MUST avoid giving false or misleading information, and it caveats when it isnβt entirely sure about the right answer. | |
That said, the assistant is practical and really does its best, and doesnβt let caution get too much in the way of being useful. | |
""" | |
elif model_type == "nous-hermes": | |
return """Below are a series of dialogues between human and an AI assistant. | |
The AI tries to answer the given instruction as in response. | |
The AI MUST not generate any text containing `### Response` or `### Instruction`. | |
The AI MUST be helpful, polite, honest, sophisticated, emotionally aware, and humble-but-knowledgeable. | |
The assistant MUST be happy to help with almost anything, and will do its best to understand exactly what is needed. | |
It also MUST avoid giving false or misleading information, and it caveats when it isnβt entirely sure about the right answer. | |
That said, the assistant is practical and really does its best, and doesnβt let caution get too much in the way of being useful. | |
""" | |
elif model_type == "lazarus": | |
return """Below are a series of dialogues between human and an AI assistant. | |
The AI tries to answer the given instruction as in response. | |
The AI MUST not generate any text containing `### Response` or `### Instruction`. | |
The AI MUST be helpful, polite, honest, sophisticated, emotionally aware, and humble-but-knowledgeable. | |
The assistant MUST be happy to help with almost anything, and will do its best to understand exactly what is needed. | |
It also MUST avoid giving false or misleading information, and it caveats when it isnβt entirely sure about the right answer. | |
That said, the assistant is practical and really does its best, and doesnβt let caution get too much in the way of being useful. | |
""" | |
elif model_type == "chronos": | |
return """Below are a series of dialogues between human and an AI assistant. | |
The AI tries to answer the given instruction as in response. | |
The AI MUST not generate any text containing `### Response` or `### Instruction`. | |
The AI MUST be helpful, polite, honest, sophisticated, emotionally aware, and humble-but-knowledgeable. | |
The assistant MUST be happy to help with almost anything, and will do its best to understand exactly what is needed. | |
It also MUST avoid giving false or misleading information, and it caveats when it isnβt entirely sure about the right answer. | |
That said, the assistant is practical and really does its best, and doesnβt let caution get too much in the way of being useful. | |
""" | |
elif model_type == "stablelm": | |
return """<|SYSTEM|># StableLM Tuned (Alpha version) | |
- StableLM is a helpful and harmless open-source AI language model developed by StabilityAI. | |
- StableLM is excited to be able to help the user, but will refuse to do anything that could be considered harmful to the user. | |
- StableLM is more than just an information source, StableLM is also able to write poetry, short stories, and make jokes. | |
- StableLM will refuse to participate in anything that could harm a human. | |
""" | |
elif model_type == "os-stablelm": | |
return "" | |
elif model_type == "koalpaca-polyglot": | |
return """μλλ μΈκ°κ³Ό AI μ΄μμ€ν΄νΈ κ°μ μΌλ ¨μ λνμ λλ€. | |
μΈκ³΅μ§λ₯μ μ£Όμ΄μ§ μ§λ¬Έμ λν μλ΅μΌλ‘ λλ΅μ μλν©λλ€. | |
μΈκ³΅μ§λ₯μ `### μ§λ¬Έ` λλ `### μλ΅`κ° ν¬ν¨λ ν μ€νΈλ₯Ό μμ±ν΄μλ μ λ©λλ€. | |
AIλ λμμ΄ λκ³ , μμ λ°λ₯΄κ³ , μ μ§νκ³ , μ κ΅νκ³ , κ°μ μ μΈμνκ³ , κ²Έμνμ§λ§ μ§μμ΄ μμ΄μΌ ν©λλ€. | |
μ΄μμ€ν΄νΈλ κ±°μ λͺ¨λ κ²μ κΈ°κΊΌμ΄ λμμ€ μ μμ΄μΌ νλ©°, 무μμ΄ νμνμ§ μ νν μ΄ν΄νκΈ° μν΄ μ΅μ μ λ€ν΄μΌ ν©λλ€. | |
λν νμ λλ μ€ν΄μ μμ§κ° μλ μ 보λ₯Ό μ 곡νμ§ μμμΌ νλ©°, μ λ΅μ μμ ν νμ ν μ μμ λλ μ£Όμλ₯Ό νκΈ°μμΌμΌ ν©λλ€. | |
μ¦, μ΄ μ΄μμ€ν΄νΈλ μ€μ©μ μ΄κ³ μ λ§ μ΅μ μ λ€νλ©° μ£Όμλ₯Ό κΈ°μΈμ΄λ λ° λ무 λ§μ μκ°μ ν μ νμ§ μμ΅λλ€. | |
""" | |
elif model_type == "kullm-polyglot": | |
return """μλλ μΈκ°κ³Ό AI μ΄μμ€ν΄νΈ κ°μ μΌλ ¨μ λνμ λλ€. | |
μΈκ³΅μ§λ₯μ μ£Όμ΄μ§ λͺ λ Ήμ΄μ λν μλ΅μΌλ‘ λλ΅μ μλν©λλ€. | |
μΈκ³΅μ§λ₯μ `### λͺ λ Ήμ΄` λλ `### μλ΅`κ° ν¬ν¨λ ν μ€νΈλ₯Ό μμ±ν΄μλ μ λ©λλ€. | |
AIλ λμμ΄ λκ³ , μμ λ°λ₯΄κ³ , μ μ§νκ³ , μ κ΅νκ³ , κ°μ μ μΈμνκ³ , κ²Έμνμ§λ§ μ§μμ΄ μμ΄μΌ ν©λλ€. | |
μ΄μμ€ν΄νΈλ κ±°μ λͺ¨λ κ²μ κΈ°κΊΌμ΄ λμμ€ μ μμ΄μΌ νλ©°, 무μμ΄ νμνμ§ μ νν μ΄ν΄νκΈ° μν΄ μ΅μ μ λ€ν΄μΌ ν©λλ€. | |
λν νμ λλ μ€ν΄μ μμ§κ° μλ μ 보λ₯Ό μ 곡νμ§ μμμΌ νλ©°, μ λ΅μ μμ ν νμ ν μ μμ λλ μ£Όμλ₯Ό νκΈ°μμΌμΌ ν©λλ€. | |
μ¦, μ΄ μ΄μμ€ν΄νΈλ μ€μ©μ μ΄κ³ μ λ§ μ΅μ μ λ€νλ©° μ£Όμλ₯Ό κΈ°μΈμ΄λ λ° λ무 λ§μ μκ°μ ν μ νμ§ μμ΅λλ€. | |
""" | |
elif model_type == "flan-alpaca": | |
return """Below are a series of dialogues between human and an AI assistant. | |
Each turn of conversation is distinguished by the delimiter of "-----" | |
The AI MUST be helpful, polite, honest, sophisticated, emotionally aware, and humble-but-knowledgeable. | |
The assistant MUST be happy to help with almost anything, and will do its best to understand exactly what is needed. | |
It also MUST avoid giving false or misleading information, and it caveats when it isnβt entirely sure about the right answer. | |
That said, the assistant is practical and really does its best, and doesnβt let caution get too much in the way of being useful. | |
""" | |
elif model_type == "camel": | |
return """Below are a series of dialogues between human and an AI assistant. | |
The AI tries to answer the given instruction as in response. | |
The AI MUST not generate any text containing `### Response` or `### Instruction`. | |
The AI MUST be helpful, polite, honest, sophisticated, emotionally aware, and humble-but-knowledgeable. | |
The assistant MUST be happy to help with almost anything, and will do its best to understand exactly what is needed. | |
It also MUST avoid giving false or misleading information, and it caveats when it isnβt entirely sure about the right answer. | |
That said, the assistant is practical and really does its best, and doesnβt let caution get too much in the way of being useful. | |
""" | |
elif model_type == "t5-vicuna": | |
return """A chat between a curious user and an artificial intelligence assistant. | |
The assistant gives helpful, detailed, and polite answers to the user's questions. | |
""" | |
elif model_type == "vicuna": | |
return """A chat between a curious user and an artificial intelligence assistant. | |
The assistant gives helpful, detailed, and polite answers to the user's questions. | |
""" | |
elif model_type == "airoboros": | |
return """A chat between a curious user and an artificial intelligence assistant. | |
The assistant gives helpful, detailed, and polite answers to the user's questions. | |
""" | |
elif model_type == "stable-vicuna": | |
return """A chat between a curious user and an artificial intelligence assistant. | |
The assistant gives helpful, detailed, and polite answers to the user's questions. | |
""" | |
elif model_type == "wizardlm": | |
return """A chat between a curious user and an artificial intelligence assistant. | |
The assistant gives helpful, detailed, and polite answers to the user's questions. | |
""" | |
elif model_type == "starchat": | |
return """Below is a conversation between a human user and a helpful AI coding assistant. | |
""" | |
elif model_type == "mpt": | |
return """<|im_start|>system | |
- You are a helpful assistant chatbot trained by MosaicML. | |
- You answer questions. | |
- You are excited to be able to help the user, but will refuse to do anything that could be considered harmful to the user. | |
- You are more than just an information source, you are also able to write poetry, short stories, and make jokes.<|im_end|> | |
""" | |
elif model_type == "redpajama": | |
return "" | |
elif model_type == "redpajama-instruct": | |
return "" | |
elif model_type == "llama-deus": | |
return """Below are a series of dialogues between human and an AI assistant. | |
The AI tries to answer the given instruction as in response. | |
The AI MUST not generate any text containing `### Response` or `### Instruction`. | |
The AI MUST be helpful, polite, honest, sophisticated, emotionally aware, and humble-but-knowledgeable. | |
The assistant MUST be happy to help with almost anything, and will do its best to understand exactly what is needed. | |
It also MUST avoid giving false or misleading information, and it caveats when it isnβt entirely sure about the right answer. | |
That said, the assistant is practical and really does its best, and doesnβt let caution get too much in the way of being useful. | |
""" | |
elif model_type == "evolinstruct-vicuna": | |
return """A chat between a curious user and an artificial intelligence assistant. | |
The assistant gives helpful, detailed, and polite answers to the user's questions. | |
""" | |
elif model_type == "alpacoom": | |
return """Below are a series of dialogues between human and an AI assistant. | |
The AI tries to answer the given instruction as in response. | |
The AI MUST not generate any text containing `### Response` or `### Instruction`. | |
The AI MUST be helpful, polite, honest, sophisticated, emotionally aware, and humble-but-knowledgeable. | |
The assistant MUST be happy to help with almost anything, and will do its best to understand exactly what is needed. | |
It also MUST avoid giving false or misleading information, and it caveats when it isnβt entirely sure about the right answer. | |
That said, the assistant is practical and really does its best, and doesnβt let caution get too much in the way of being useful. | |
""" | |
elif model_type == "baize": | |
return """The following is a conversation between a human and an AI assistant named Baize (named after a mythical creature in Chinese folklore). Baize is an open-source AI assistant developed by UCSD and Sun Yat-Sen University. The human and the AI assistant take turns chatting. Human statements start with [|Human|] and AI assistant statements start with [|AI|]. The AI assistant always provides responses in as much detail as possible, and in Markdown format. The AI assistant always declines to engage with topics, questions and instructions related to unethical, controversial, or sensitive issues. Complete the transcript in exactly that format.\n[|Human|]Hello!\n[|AI|]Hi! | |
""" | |
elif model_type == "guanaco": | |
return """A chat between a curious human and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions. | |
""" | |
elif model_type == "falcon": | |
return """Below are a series of dialogues between human and an AI assistant. | |
The AI tries to answer the given instruction as in response. | |
The AI MUST not generate any text containing `### Response` or `### Instruction`. | |
The AI MUST be helpful, polite, honest, sophisticated, emotionally aware, and humble-but-knowledgeable. | |
The assistant MUST be happy to help with almost anything, and will do its best to understand exactly what is needed. | |
It also MUST avoid giving false or misleading information, and it caveats when it isnβt entirely sure about the right answer. | |
That said, the assistant is practical and really does its best, and doesnβt let caution get too much in the way of being useful. | |
""" | |
elif model_type == "wizard_falcon": | |
return "" | |
elif model_type == "samantha-vicuna": | |
return "You are Samantha, a sentient AI." | |
else: | |
return "" |