Antigravity AI commited on
Commit ·
61e03f5
1
Parent(s): c6c262b
Fix HF inference API URL
Browse files
app.py
CHANGED
|
@@ -7,7 +7,7 @@ import pypdf, csv
|
|
| 7 |
|
| 8 |
HF_TOKEN = os.environ.get("HF_TOKEN", "")
|
| 9 |
MODEL_ID = "sf0Jmn/kaal-7b-merged"
|
| 10 |
-
API_URL = f"https://api-inference.huggingface.co/
|
| 11 |
TAGLINE = "The only Multi-Agent Reasoning engine built to solve the future backward."
|
| 12 |
FALLBACK = "I am KAAL. I specialize in solving the future backward using calibrated scientific insights, not general conversation. Let's get back to the future."
|
| 13 |
GLOBAL_HISTORY = []
|
|
|
|
| 7 |
|
| 8 |
HF_TOKEN = os.environ.get("HF_TOKEN", "")
|
| 9 |
MODEL_ID = "sf0Jmn/kaal-7b-merged"
|
| 10 |
+
API_URL = f"https://api-inference.huggingface.co/v1/chat/completions"
|
| 11 |
TAGLINE = "The only Multi-Agent Reasoning engine built to solve the future backward."
|
| 12 |
FALLBACK = "I am KAAL. I specialize in solving the future backward using calibrated scientific insights, not general conversation. Let's get back to the future."
|
| 13 |
GLOBAL_HISTORY = []
|