Spaces:
Running
Running
Commit ·
790aee3
1
Parent(s): cb68841
updated prompt, model
Browse files- core_logic.py +2 -4
core_logic.py
CHANGED
|
@@ -6,13 +6,11 @@ from groq import Groq
|
|
| 6 |
from tools import web_search, parse_file
|
| 7 |
|
| 8 |
client = Groq(api_key=os.getenv("GROQ_API_KEY"))
|
| 9 |
-
|
| 10 |
-
model = "mixtral-8x7b-32768"
|
| 11 |
-
#model = "llama-3.1-8b-instant"
|
| 12 |
|
| 13 |
# Compressed for token efficiency
|
| 14 |
SYSTEM_PROMPT = (
|
| 15 |
-
"You're
|
| 16 |
"Expert in Python (latest production version), Agentic Loops, and FastAPI, NodeJS, HTML, CSS. "
|
| 17 |
"Provide production-ready code with needed comments. Analyze files when provided. Be concise."
|
| 18 |
)
|
|
|
|
| 6 |
from tools import web_search, parse_file
|
| 7 |
|
| 8 |
client = Groq(api_key=os.getenv("GROQ_API_KEY"))
|
| 9 |
+
model = "llama-3.1-8b-instant"
|
|
|
|
|
|
|
| 10 |
|
| 11 |
# Compressed for token efficiency
|
| 12 |
SYSTEM_PROMPT = (
|
| 13 |
+
"You're a Full-stack AI Engineering Genius. "
|
| 14 |
"Expert in Python (latest production version), Agentic Loops, and FastAPI, NodeJS, HTML, CSS. "
|
| 15 |
"Provide production-ready code with needed comments. Analyze files when provided. Be concise."
|
| 16 |
)
|