From d52bd54d06b46233574f0535a52a33342f871fd0 Mon Sep 17 00:00:00 2001 From: Ajay Raj Date: Wed, 15 Mar 2023 10:49:57 -0700 Subject: [PATCH] remove ChatGPTAlphaAgentConfig --- pyproject.toml | 2 +- vocode/models/agent.py | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3826e6e..63c36d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "vocode" -version = "0.1.35" +version = "0.1.36" description = "The all-in-one voice SDK" authors = ["Ajay Raj "] license = "MIT License" diff --git a/vocode/models/agent.py b/vocode/models/agent.py index 4de9514..18b9076 100644 --- a/vocode/models/agent.py +++ b/vocode/models/agent.py @@ -58,13 +58,6 @@ class LLMAgentConfig(AgentConfig, type=AgentType.LLM): cut_off_response: Optional[CutOffResponse] = None -class ChatGPTAlphaAgentConfig(AgentConfig, type=AgentType.CHAT_GPT_ALPHA): - prompt_preamble: str - expected_first_prompt: Optional[str] = None - temperature: float = LLM_AGENT_DEFAULT_TEMPERATURE - max_tokens: int = LLM_AGENT_DEFAULT_MAX_TOKENS - - class ChatGPTAgentConfig(AgentConfig, type=AgentType.CHAT_GPT): prompt_preamble: str expected_first_prompt: Optional[str] = None