Update codex/code_generator.py
Browse files- 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 = "
|
| 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:
|