Skip to content

Commit

Permalink
remove unused CLI chat service option
Browse files Browse the repository at this point in the history
  • Loading branch information
hmasdev committed Oct 27, 2024
1 parent a5ecd16 commit a60b371
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion langchain_werewolf/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
# llm
DEFAULT_MODEL: str = 'gpt-4o-mini'
MODEL_SERVICE_MAP: dict[str, EChatService] = {
'cli': EChatService.CLI,
'gpt-3.5-turbo': EChatService.OpenAI,
'gpt-4': EChatService.OpenAI,
'gpt-4-turbo': EChatService.OpenAI,
Expand Down
1 change: 0 additions & 1 deletion langchain_werewolf/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ class ESideVictoryCondition(Enum):


class EChatService(Enum):
CLI: str = 'cli'
OpenAI: str = 'openai'
Google: str = 'google'
Groq: str = 'groq'
Expand Down

0 comments on commit a60b371

Please sign in to comment.