Husnain commited on
Commit
4af16e1
1 Parent(s): 2f7e54b

💎 [Feature] Enable chat response with get_message_id

Browse files
Files changed (1) hide show
  1. constants/models.py +2 -0
constants/models.py CHANGED
@@ -5,6 +5,7 @@ MODEL_MAP = {
5
  # "openchat-3.5": "openchat/openchat-3.5-0106",
6
  "gemma-7b": "google/gemma-1.1-7b-it",
7
  "command-r-plus": "CohereForAI/c4ai-command-r-plus",
 
8
  "default": "mistralai/Mixtral-8x7B-Instruct-v0.1",
9
  }
10
 
@@ -27,6 +28,7 @@ TOKEN_LIMIT_MAP = {
27
  "gemma-7b": 8192,
28
  "gpt-3.5-turbo": 8192,
29
  "command-r-plus": 32768,
 
30
  }
31
 
32
  TOKEN_RESERVED = 20
 
5
  # "openchat-3.5": "openchat/openchat-3.5-0106",
6
  "gemma-7b": "google/gemma-1.1-7b-it",
7
  "command-r-plus": "CohereForAI/c4ai-command-r-plus",
8
+ "llama3-70b": "meta-llama/Meta-Llama-3-70B-Instruct",
9
  "default": "mistralai/Mixtral-8x7B-Instruct-v0.1",
10
  }
11
 
 
28
  "gemma-7b": 8192,
29
  "gpt-3.5-turbo": 8192,
30
  "command-r-plus": 32768,
31
+ "llama3-70b": 8192,
32
  }
33
 
34
  TOKEN_RESERVED = 20