remove ChatGPTAlphaAgentConfig

This commit is contained in:
Ajay Raj 2023-03-15 10:49:57 -07:00
commit d52bd54d06
2 changed files with 1 additions and 8 deletions

View file

@ -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