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