LordXido commited on
Commit
647b435
·
verified ·
1 Parent(s): 15e2b3b

Update codex/code_generator.py

Browse files
Files changed (1) hide show
  1. codex/code_generator.py +1 -1
codex/code_generator.py CHANGED
@@ -4,7 +4,7 @@ import requests
4
  GROQ_API = "https://api.groq.com/openai/v1/chat/completions"
5
  GROQ_KEY = os.environ.get("GROQ_API_KEY")
6
 
7
- MODEL = "llama3-8b-8192"
8
 
9
  def generate_code(task):
10
  if not GROQ_KEY:
 
4
  GROQ_API = "https://api.groq.com/openai/v1/chat/completions"
5
  GROQ_KEY = os.environ.get("GROQ_API_KEY")
6
 
7
+ MODEL = "llama-3.1-8b-instant" # 🔥 LIVE + SUPPORTED
8
 
9
  def generate_code(task):
10
  if not GROQ_KEY: