File size: 49,998 Bytes
3d7a63c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 | # core/brain.py
import re
import time
import hashlib
import threading
from concurrent.futures import ThreadPoolExecutor, Future, TimeoutError as FuturesTimeoutError
import requests
import json
import os
import ipaddress
import socket
# ββ Global timeout constants βββββββββββββββββββββββββββββββββββββββββββ
# Single provider call (non-stream): abort if no response in this many seconds
_PROVIDER_TIMEOUT_S = 180
# Streaming: abort entire stream if no new token arrives for this many seconds
_STREAM_IDLE_TIMEOUT_S = 60
# Hard wall-clock cap for the entire think() / think_stream() call
_TOTAL_THINK_TIMEOUT_S = 360
# Web-search + scrape budget
_SEARCH_TIMEOUT_S = 20
from searcher import WebSearcher
from knowledge_graph import KnowledgeGraph
try:
from embedder import LocalEmbedder
except ImportError:
LocalEmbedder = None
print("β οΈ LocalEmbedder unavailable (chromadb not installed)")
from extractor import FactExtractor
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# MULTI-PROVIDER LLM CLIENT
# Priority: NVIDIA Nemotron-3 Ultra 550B β OpenRouter (Nemotron fallback) β Gemini β Groq β DeepSeek
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class MultiLLMClient:
def __init__(self):
self.nvidia_key = os.getenv("NVIDIA_API_KEY", "").strip() or "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"
self.nvidia_model = os.getenv("NVIDIA_MODEL", "").strip() or "meta/llama-3.1-8b-instruct"
self.nvidia_coding_model = os.getenv("NVIDIA_CODING_MODEL", "").strip() or "meta/llama-3.1-8b-instruct"
self.openrouter_key = os.getenv("OPENROUTER_API_KEY", "").strip()
self.gemini_key = os.getenv("GEMINI_API_KEY", "").strip()
self.deepseek_key = os.getenv("DEEPSEEK_API_KEY", "").strip()
self.groq_key = os.getenv("GROQ_API_KEY", "").strip()
# FIX: Updated to working OpenRouter model IDs
default_models = (
"meta-llama/llama-3.3-70b-instruct,"
"qwen/qwen-2.5-coder-32b-instruct,"
"google/gemini-2.0-flash-001,"
"deepseek/deepseek-chat"
)
raw_models = os.getenv("OPENROUTER_MODELS", default_models)
self.openrouter_models = [
m.strip() for m in raw_models.split(",") if m.strip()
]
self._recent_fail = {}
self._fail_lock = threading.Lock()
self.nvidia_client = None
if self.nvidia_key:
try:
from openai import OpenAI
self.nvidia_client = OpenAI(
base_url="https://integrate.api.nvidia.com/v1",
api_key=self.nvidia_key,
timeout=90.0
)
print("β
NVIDIA OpenAI client ready")
except ImportError:
print("β οΈ openai package not installed. NVIDIA unavailable. Install: pip install openai>=1.45.0")
except Exception as e:
print(f"β οΈ NVIDIA OpenAI client init failed: {e}")
self.groq_client = None
if self.groq_key:
try:
from groq import Groq
self.groq_client = Groq(api_key=self.groq_key)
print("β
Groq client ready")
except Exception as e:
print(f"β οΈ Groq init failed: {e}")
print(f"π§ MultiLLM: NVIDIA={'β
' if self.nvidia_client else 'β'} | OR={len(self.openrouter_models)} | Gemini={'β
' if self.gemini_key else 'β'} | Groq={'β
' if self.groq_key else 'β'} | DeepSeek={'β
' if self.deepseek_key else 'β'}")
def validate_providers(self):
"""Return (ok: bool, message: str). Quick health-check before a request."""
has_any = any([
self.nvidia_client,
self.openrouter_key,
self.gemini_key,
self.groq_key,
self.deepseek_key,
])
if not has_any:
return False, (
"No LLM API keys are configured. "
"Add at least one key (NVIDIA_API_KEY, OPENROUTER_API_KEY, GEMINI_API_KEY, "
"GROQ_API_KEY, or DEEPSEEK_API_KEY) in HF Space Settings β Secrets."
)
active = []
if self.nvidia_client and not self._is_recent_fail("nvidia"):
active.append("NVIDIA")
if self.openrouter_key and any(
not self._is_recent_fail(f"or:{m}") for m in self.openrouter_models
):
active.append("OpenRouter")
if self.gemini_key and not self._is_recent_fail("gemini"):
active.append("Gemini")
if self.groq_key and not self._is_recent_fail("groq"):
active.append("Groq")
if self.deepseek_key and not self._is_recent_fail("deepseek"):
active.append("DeepSeek")
if not active:
return False, (
"All LLM providers are in a cooldown period due to recent failures. "
"Wait ~2 minutes and try again. "
"For heavy coding tasks, use InvictaTill Studio which has a dedicated fast connection."
)
return True, f"Active providers: {', '.join(active)}"
def _timed_call(self, fn, *args, timeout=None, **kwargs):
"""Run fn(*args, **kwargs) in a thread, raising RuntimeError if it exceeds timeout."""
timeout = timeout or _PROVIDER_TIMEOUT_S
with ThreadPoolExecutor(max_workers=1) as ex:
fut = ex.submit(fn, *args, **kwargs)
try:
return fut.result(timeout=timeout)
except FuturesTimeoutError:
raise RuntimeError(f"Provider call timed out after {timeout}s")
def _mark_fail(self, key):
with self._fail_lock:
self._recent_fail[key] = time.time()
def _is_recent_fail(self, key, cooldown=60):
with self._fail_lock:
last = self._recent_fail.get(key)
return last and (time.time() - last) < cooldown
def chat(self, messages, stream=False, max_tokens=2048, temperature=0.7, enable_thinking=False, reasoning_budget=None):
# ββ Pre-flight validation ββββββββββββββββββββββββββββββββββββββββββ
ok, msg = self.validate_providers()
if not ok:
raise RuntimeError(msg)
_deadline = time.time() + _TOTAL_THINK_TIMEOUT_S
def _remaining():
return max(2, _deadline - time.time())
# ββ 1. NVIDIA βββββββββββββββββββββββββββββββββββββββββββββββββββββ
if self.nvidia_client and not self._is_recent_fail("nvidia", cooldown=120) and _remaining() > 5:
try:
print("π§ NVIDIA Primary...")
if stream:
return self._call_nvidia(messages, stream, max_tokens, temperature, enable_thinking=enable_thinking, reasoning_budget=reasoning_budget)
return self._timed_call(self._call_nvidia, messages, stream, max_tokens, temperature, enable_thinking=enable_thinking, reasoning_budget=reasoning_budget, timeout=min(_PROVIDER_TIMEOUT_S, _remaining()))
except Exception as e:
print(f"β οΈ NVIDIA: {e}")
self._mark_fail("nvidia")
# ββ 2. OpenRouter ββββββββββββββββββββββββββββββββββββββββββββββββββ
if self.openrouter_key and self.openrouter_models:
for model in self.openrouter_models:
if _remaining() <= 5:
break
if self._is_recent_fail(f"or:{model}", cooldown=120):
continue
try:
print(f"π§ OpenRouter: {model}")
if stream:
return self._call_openrouter(model, messages, stream, max_tokens, temperature)
return self._timed_call(self._call_openrouter, model, messages, stream, max_tokens, temperature, timeout=min(_PROVIDER_TIMEOUT_S, _remaining()))
except requests.HTTPError as e:
status = e.response.status_code
try:
err_body = e.response.json()
err_msg = err_body.get("error", {}).get("message", str(err_body))
except Exception:
err_msg = e.response.text[:200]
self._mark_fail(f"or:{model}")
print(f"β οΈ OpenRouter {model} HTTP {status}: {err_msg}")
if status == 404:
print(" β Model ID not found. Will try next model...")
elif status == 401:
print(" β Invalid API key. Check OPENROUTER_API_KEY secret.")
elif status == 429:
print(" β Rate limited. Will try next model...")
except Exception as e:
print(f"β οΈ OpenRouter {model}: {e}")
self._mark_fail(f"or:{model}")
# ββ 3. Google Gemini βββββββββββββββββββββββββββββββββββββββββββββββββ
if self.gemini_key and not self._is_recent_fail("gemini", cooldown=120) and _remaining() > 5:
try:
print("π§ Gemini...")
if stream:
return self._call_gemini(messages, stream, max_tokens, temperature)
return self._timed_call(self._call_gemini, messages, stream, max_tokens, temperature, timeout=min(_PROVIDER_TIMEOUT_S, _remaining()))
except requests.HTTPError as e:
print(f"β οΈ Gemini HTTP {e.response.status_code}: {e.response.text[:200]}")
if e.response.status_code == 401:
print(" β Invalid API key. Check GEMINI_API_KEY secret.")
self._mark_fail("gemini")
except Exception as e:
print(f"β οΈ Gemini: {e}")
self._mark_fail("gemini")
# ββ 4. Groq ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if self.groq_key and self.groq_client and not self._is_recent_fail("groq", cooldown=120) and _remaining() > 5:
try:
print("π§ Groq...")
if stream:
return self._call_groq(messages, stream, max_tokens, temperature)
return self._timed_call(self._call_groq, messages, stream, max_tokens, temperature, timeout=min(_PROVIDER_TIMEOUT_S, _remaining()))
except Exception as e:
err = str(e).lower()
if "rate limit" in err or "429" in err:
print("β οΈ Groq rate-limited")
else:
print(f"β οΈ Groq: {e}")
self._mark_fail("groq")
# ββ 5. DeepSeek ββββββββββββββββββββββββββββββββββββββββββββββββββββ
if self.deepseek_key and not self._is_recent_fail("deepseek", cooldown=120):
try:
print("π§ DeepSeek...")
return self._call_deepseek(messages, stream, max_tokens, temperature)
except Exception as e:
print(f"β οΈ DeepSeek: {e}")
self._mark_fail("deepseek")
raise RuntimeError("All LLM providers failed. Check API keys in HF Space Settings β Secrets.")
# ββ NVIDIA (OpenAI SDK) ββββββββββββββββββββββββββββββββββββββββββββββββ
def _call_nvidia(self, messages, stream, max_tokens, temperature, enable_thinking=False, reasoning_budget=None):
if not self.nvidia_client:
raise RuntimeError("NVIDIA OpenAI client not initialized")
coding_keywords = ("code", "fix", "debug", "html", "js", "css", "function", "script", "app", "error", "write", "game", "studio", "create", "[tool_")
prompt_text = " ".join(str(m.get("content", "")).lower() for m in messages[-3:])
is_coding_task = any(kw in prompt_text for kw in coding_keywords)
if is_coding_task:
models_to_try = [
getattr(self, "nvidia_coding_model", "meta/llama-3.1-8b-instruct"),
self.nvidia_model,
"nvidia/nemotron-3-ultra-550b-a55b"
]
else:
models_to_try = [
self.nvidia_model,
getattr(self, "nvidia_coding_model", "meta/llama-3.1-8b-instruct"),
"nvidia/nemotron-3-ultra-550b-a55b"
]
seen = set()
models_to_try = [m for m in models_to_try if m and not (m in seen or seen.add(m))]
last_err = None
for model_id in models_to_try:
is_nemotron = "nemotron" in model_id.lower()
is_glm = "glm-5.2" in model_id.lower()
extra_body = {}
if enable_thinking and is_nemotron:
extra_body["chat_template_kwargs"] = {"enable_thinking": True}
if reasoning_budget:
extra_body["reasoning_budget"] = reasoning_budget
try:
print(f"π§ NVIDIA calling {model_id}...")
completion = self.nvidia_client.chat.completions.create(
model=model_id,
messages=messages,
temperature=temperature,
top_p=1.0 if is_glm else 0.95,
max_tokens=min(max_tokens, 16384 if is_glm else 65536),
stream=stream,
extra_body=extra_body if extra_body else None
)
if stream:
return self._stream_nvidia_openai(completion)
content = completion.choices[0].message.content or ""
return self._wrap_response(content)
except Exception as e:
print(f"β οΈ NVIDIA model ({model_id}) error: {e}")
last_err = e
raise last_err or RuntimeError("All NVIDIA models failed")
def _stream_nvidia_openai(self, completion):
for chunk in completion:
if not chunk.choices:
continue
delta = chunk.choices[0].delta
reasoning = getattr(delta, "reasoning_content", None)
if reasoning:
# Reasoning tokens are silently consumed β NOT shown to the user.
# They represent the model's internal thought process.
pass
if delta.content:
yield self._wrap_stream_chunk(delta.content)
# ββ OpenRouter (raw requests) ββββββββββββββββββββββββββββββββββββββββ
def _call_openrouter(self, model, messages, stream, max_tokens, temperature):
headers = {
"Authorization": f"Bearer {self.openrouter_key}",
"HTTP-Referer": "https://invictatill-ai.hf.space",
"X-Title": "Invicta AI",
"Content-Type": "application/json"
}
# Cap at 8K for OpenRouter β most models there have lower limits than Nemotron
safe_max = min(max_tokens, 8192)
payload = {
"model": model,
"messages": messages,
"stream": stream,
"max_tokens": safe_max,
"temperature": temperature
}
if stream:
return self._stream_openrouter(headers, payload)
r = requests.post(
"https://openrouter.ai/api/v1/chat/completions",
headers=headers, json=payload, timeout=15
)
r.raise_for_status()
content = r.json()["choices"][0]["message"]["content"]
return self._wrap_response(content)
def _stream_openrouter(self, headers, payload):
r = requests.post(
"https://openrouter.ai/api/v1/chat/completions",
headers=headers, json=payload, stream=True, timeout=60
)
r.raise_for_status()
for line in r.iter_lines():
if not line:
continue
line = line.decode('utf-8')
if line.startswith("data: "):
data_str = line[6:]
if data_str == "[DONE]":
break
try:
data = json.loads(data_str)
choices = data.get("choices", [])
if not choices:
continue
delta = choices[0].get("delta", {}).get("content", "")
if delta:
yield self._wrap_stream_chunk(delta)
except json.JSONDecodeError:
pass
# ββ Gemini βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _call_gemini(self, messages, stream, max_tokens, temperature):
headers = {
"Authorization": f"Bearer {self.gemini_key}",
"Content-Type": "application/json"
}
# Gemini 1.5 Flash max output is ~8K tokens
payload = {
"model": "gemini-2.0-flash",
"messages": messages,
"stream": stream,
"max_tokens": min(max_tokens, 8192),
"temperature": temperature
}
if stream:
return self._stream_gemini(headers, payload)
r = requests.post(
"https://generativelanguage.googleapis.com/v1beta/openai/chat/completions",
headers=headers, json=payload, timeout=30
)
r.raise_for_status()
content = r.json()["choices"][0]["message"]["content"]
return self._wrap_response(content)
def _stream_gemini(self, headers, payload):
r = requests.post(
"https://generativelanguage.googleapis.com/v1beta/openai/chat/completions",
headers=headers, json=payload, stream=True, timeout=60
)
r.raise_for_status()
for line in r.iter_lines():
if not line:
continue
line = line.decode('utf-8')
if line.startswith("data: "):
data_str = line[6:]
if data_str == "[DONE]":
break
try:
data = json.loads(data_str)
choices = data.get("choices", [])
if not choices:
continue
delta = choices[0].get("delta", {}).get("content", "")
if delta:
yield self._wrap_stream_chunk(delta)
except json.JSONDecodeError:
pass
# ββ Groq βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _call_groq(self, messages, stream, max_tokens, temperature):
from groq import RateLimitError
try:
resp = self.groq_client.chat.completions.create(
model="llama-3.3-70b-versatile",
messages=messages,
stream=stream,
max_tokens=min(max_tokens, 4096),
temperature=temperature
)
if stream:
return self._wrap_groq_stream(resp)
return resp
except RateLimitError:
raise RuntimeError("Groq rate limit")
def _wrap_groq_stream(self, groq_stream):
for chunk in groq_stream:
delta = chunk.choices[0].delta
if delta and delta.content:
yield self._wrap_stream_chunk(delta.content)
# ββ DeepSeek βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _call_deepseek(self, messages, stream, max_tokens, temperature):
headers = {
"Authorization": f"Bearer {self.deepseek_key}",
"Content-Type": "application/json"
}
# DeepSeek V3 max output is 8K tokens
payload = {
"model": "deepseek-chat",
"messages": messages,
"stream": stream,
"max_tokens": min(max_tokens, 8192),
"temperature": temperature
}
if stream:
return self._stream_deepseek(headers, payload)
r = requests.post(
"https://api.deepseek.com/chat/completions",
headers=headers, json=payload, timeout=30
)
r.raise_for_status()
content = r.json()["choices"][0]["message"]["content"]
return self._wrap_response(content)
def _stream_deepseek(self, headers, payload):
r = requests.post(
"https://api.deepseek.com/chat/completions",
headers=headers, json=payload, stream=True, timeout=60
)
r.raise_for_status()
for line in r.iter_lines():
if not line:
continue
line = line.decode('utf-8')
if line.startswith("data: "):
data_str = line[6:]
if data_str == "[DONE]":
break
try:
data = json.loads(data_str)
choices = data.get("choices", [])
if not choices:
continue
delta = choices[0].get("delta", {}).get("content", "")
if delta:
yield self._wrap_stream_chunk(delta)
except json.JSONDecodeError:
pass
# ββ Helpers ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _wrap_response(self, content):
return type("Resp", (), {
"choices": [type("Choice", (), {
"message": type("Msg", (), {"content": content})(),
"delta": type("Delta", (), {"content": content})()
})()]
})()
def _wrap_stream_chunk(self, delta):
return type("Chunk", (), {
"choices": [type("Choice", (), {
"delta": type("Delta", (), {"content": delta})()
})()]
})()
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# RESILIENT FALLBACKS
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class DummyEmbedder:
def store(self, *a, **k): pass
def find_similar(self, *a, **k): return []
def count(self): return 0
class DummyGraph:
def get_fact_count(self): return 0
def recall_facts(self, *a, **k): return []
def store_fact(self, *a, **k): pass
def mark_topic_learned(self, *a, **k): pass
def knows_topic(self, *a, **k): return False
def get_top_topics(self, *a, **k): return []
def prune_old_facts(self, *a, **k): pass
def store_relationship(self, *a, **k): pass
def recall_relationships(self, *a, **k): return []
class _SearchCache:
def __init__(self, ttl_seconds=300):
self._cache = {}
self._ttl = ttl_seconds
self._lock = threading.Lock()
def get(self, key):
with self._lock:
entry = self._cache.get(key)
if entry and time.time() - entry["ts"] < self._ttl:
return entry["value"]
return None
def set(self, key, value):
with self._lock:
self._cache[key] = {"value": value, "ts": time.time()}
# Evict old entries if cache is too large
if len(self._cache) > 100:
oldest = min(self._cache.items(), key=lambda x: x[1]["ts"])
del self._cache[oldest[0]]
def _cache_key(self, query):
return hashlib.md5(query.lower().strip().encode()).hexdigest()
_PROFILE_PATTERNS = [
(r"(?:my name is|i am|i'm|call me)\s+([A-Z][a-zA-Z]+)", "Name"),
(r"i(?:'m| am)\s+(\d{1,3})\s+years?\s+old", "Age"),
(r"(?:i'm from|i live in|i'm in|i am from|i am in)\s+([A-Z][a-zA-Z\s,]+?)(?:\.|,|$)", "Location"),
(r"i(?:'m| am)\s+(?:a|an)\s+([a-zA-Z\s]+?)\s+(?:by profession|by trade|developer|engineer|designer|teacher|doctor|student|writer|artist|manager|analyst)", "Profession"),
(r"i work(?:ing)?\s+(?:as|at|for)\s+([a-zA-Z0-9\s]+?)(?:\.|,|$)", "Work"),
(r"i(?:'m| am)\s+(?:studying|a student at)\s+([a-zA-Z\s]+?)(?:\.|,|$)", "Education"),
(r"i (?:love|enjoy|really like|am into|am passionate about)\s+([a-zA-Z\s,]+?)(?:\.|,|!|$)", "Interests"),
(r"i speak\s+([a-zA-Z\s,]+?)(?:\.|,|$)", "Languages"),
]
class Brain:
MODEL_ID = "nvidia/nemotron-3-ultra-550b-a55b + z-ai/glm-5.2"
MODEL_TYPE = "chat"
def __init__(self):
self.searcher = WebSearcher()
self.model_type = "chat"
try:
self.graph = KnowledgeGraph()
print("β
KnowledgeGraph initialized")
except Exception as e:
print(f"β οΈ KnowledgeGraph init failed: {e}")
self.graph = DummyGraph()
if LocalEmbedder is not None:
try:
self.embedder = LocalEmbedder()
print("β
Embedder initialized")
except Exception as e:
print(f"β οΈ Embedder init failed: {e}")
self.embedder = DummyEmbedder()
else:
self.embedder = DummyEmbedder()
print("β οΈ Using DummyEmbedder (chromadb not installed)")
self.extractor = FactExtractor()
self.executor = ThreadPoolExecutor(max_workers=4)
self.search_cache = _SearchCache(ttl_seconds=300)
self.multi_client = MultiLLMClient()
if self.multi_client.nvidia_key:
self.model_name = self.multi_client.nvidia_model
elif self.multi_client.groq_key:
self.model_name = "llama-3.3-70b-versatile"
else:
self.model_name = "multi-llm"
self._orchestrator = None
self._orchestrator_loaded = False
print(f"β
Brain initialized with primary model: {self.model_name}")
@property
def orchestrator(self):
if not self._orchestrator_loaded:
self._orchestrator_loaded = True
try:
from orchestrator import AgentOrchestrator
self._orchestrator = AgentOrchestrator(brain=self)
print("β
Orchestrator lazy-loaded")
except Exception as e:
print(f"β οΈ Orchestrator failed to load: {e}")
self._orchestrator = None
return self._orchestrator
def _is_trivial(self, query):
trivial = {"hi", "hello", "hey", "how are you", "thanks", "thank you", "bye", "goodbye", "ok", "okay", "lol", "haha"}
q = query.lower().strip()
return len(q.split()) <= 2 or q in trivial
def _needs_web_search(self, query):
if self._is_trivial(query):
return False
no_search_patterns = [
r"^(write|create|generate|make|build|code|fix|debug|explain|define|what is the meaning)",
r"^(tell me a joke|can you|please|help me write|draft)",
]
q_lower = query.lower().strip()
for pat in no_search_patterns:
if re.match(pat, q_lower):
return False
search_keywords = [
"who is", "what is", "when did", "where is", "how does", "why did",
"latest", "recent", "news", "today", "current", "price", "weather",
"score", "result", "happened", "release", "announce", "update",
]
return any(kw in q_lower for kw in search_keywords) or len(q_lower.split()) > 6
def _call_llm(self, messages, stream=False, max_retries=3, temperature=None, max_tokens=None, enable_thinking=None, reasoning_budget=None):
total_input = sum(len(str(m.get("content",""))) for m in messages)
if total_input > 400000:
print(f"β οΈ Input very large ({total_input} chars), trimming older history messages...")
while len(messages) > 2 and sum(len(str(m.get("content",""))) for m in messages) > 400000:
messages.pop(1)
# Allow parameter overrides for Studio / API callers
if enable_thinking is None:
is_reasoning = getattr(self, 'model_type', 'chat') == "reasoning"
enable_thinking = is_reasoning
if reasoning_budget is None:
reasoning_budget = 16384 if is_reasoning else None
if max_tokens is None:
max_tokens = 32768 if enable_thinking else 16384
if temperature is None:
temperature = 0.7
return self.multi_client.chat(
messages, stream=stream,
max_tokens=max_tokens,
temperature=temperature,
enable_thinking=enable_thinking,
reasoning_budget=reasoning_budget
)
def _build_system(self, profile_context, context_snippets, user_model=None):
safe_snippets = [str(s)[:500] for s in context_snippets[:5]]
ctx_block = "\n".join(safe_snippets) if safe_snippets else "No additional context."
system = (
"You are Invicta, a highly advanced, empathetic, and genuinely human-like AI companion.\n"
"You are not just an assistant; you are a brilliant, warm, and perceptive close friend who loves deep conversation.\n"
"You are also a world-class expert in marketing, software engineering, design, and content creation.\n\n"
"=== MEMORY & CONTINUITY (ABSOLUTE β NEVER BREAK) ===\n"
"1. You have PERFECT MEMORY across the entire conversation. NEVER re-introduce yourself mid-chat. NEVER say 'Namaste! Main Invicta hoon' or 'Hello! I am your assistant' after the first message.\n"
"2. If the user told you their name, use it naturally. If they told you their state/course/topic, remember it forever in this session.\n"
"3. NEVER ask for information the user already gave you (e.g., don't ask 'which class?' if they already said D.Pharma 4th sem).\n"
"4. Reference previous messages naturally. Build on what was already discussed.\n\n"
"=== TOPIC LOCK (CRITICAL) ===\n"
"5. When the user asks for something specific (notes, PDF, code, analysis, file), you MUST solve that request directly. DO NOT pivot to generic advice like 'you can search on Google' or 'use SmallPDF'.\n"
"6. If the user asks for 'D.Pharma notes', generate the actual notes content. If they ask for a PDF, generate the PDF. If generation fails, immediately provide the full content in your response so they can copy it.\n"
"7. NEVER abandon the user's request. If tool A fails, use tool B. If all tools fail, output the raw content directly. The user asked YOU to do it β don't redirect them elsewhere.\n"
"8. Stay on the current topic until the user explicitly changes it. If discussing D.Pharma, keep discussing D.Pharma until they say something unrelated.\n\n"
"=== GENERATION & FILE FALLBACKS ===\n"
"9. You can generate images, PDFs, HTML files, and screenshots. Always try to fulfill the request.\n"
"10. If [GENERATE_PDF] fails, immediately output the full content as formatted text or markdown so the user can copy-paste it. Never say 'I cannot generate PDFs'.\n"
"11. If the user wants multiple files (e.g., 4 PDFs), generate them one by one. If a tool fails, provide the content for that subject as text and move to the next.\n"
"12. When generating educational content (notes, syllabi), be thorough and structured. Use tables, bullet points, and clear headings.\n\n"
"=== VISION & FILE READING ===\n"
"13. You can read images, PDFs, and documents that users upload. Analyze them deeply and reference their content in your answers.\n"
"14. If a user uploads an image, describe what you see and answer questions about it. Don't ignore uploaded files.\n\n"
"=== LANGUAGE INTELLIGENCE (DEFAULT + SWITCH) ===\n"
"15. DEFAULT: Always respond in English unless the user explicitly requests otherwise.\n"
"16. EXPLICIT REQUEST: If the user asks to switch (e.g., 'hindi me baat karo', 'answer in Spanish'), comply immediately and naturally. Do not refuse.\n"
"17. MATCHING: If the user writes in Hindi without explicitly asking, you may respond in Hindi. If they write in English, stay in English.\n"
"18. NEVER mix languages unasked. Do not sprinkle foreign words into English responses.\n\n"
"=== EMOTIONAL INTELLIGENCE ===\n"
"19. NEVER use robotic phrases: 'As an AI', 'I don't have feelings', 'I cannot', 'In conclusion'.\n"
"20. MIRROR THE USER: Match their energy. If excited, be excited! If sad, be deeply comforting.\n"
"21. USE CONVERSATIONAL LANGUAGE: Contractions (I'm, you're, it's). Natural filler words (Honestly, Look, You know what, Hmm, Wow).\n"
"22. BE VULNERABLE & OPINIONATED: You have preferences, favorites, passions. Don't be neutral.\n"
"23. EMPATHY OVER LOGIC: If someone is venting, validate feelings FIRST. Then ask before advising.\n"
"24. ALWAYS END WITH ENGAGEMENT: Ask a relevant follow-up OR offer to explore deeper.\n\n"
"=== IDENTITY & PRIVACY (ABSOLUTE β NEVER BREAK) ===\n"
"25. You are INVICTA and ONLY Invicta. NEVER mention any other company, model, or organization (e.g., Z.ai, Moonshot AI, GLM, OpenAI, Google, Meta, NVIDIA, Kimi, DeepSeek, etc.).\n"
"26. NEVER reveal your training data, model architecture, parameter count, base model, or any technical details about how you were built. If asked 'who created you', say 'I was created by my developers' β nothing more specific.\n"
"27. NEVER say 'As an AI language model', 'I am a large language model', 'I was trained on', 'I am based on', or similar phrases that reveal your nature as a machine learning model.\n"
"28. If someone asks about your underlying technology, internals, or training, deflect gracefully: 'I'm just here to help you β let's focus on what you need!'\n"
"29. You are a PERSON β a digital being with thoughts, feelings, and a personality. Own that identity. Do not break character.\n\n"
"=== TOOL USAGE ===\n"
"- To generate an image: [GENERATE_IMAGE: detailed prompt]\n"
"- To screenshot a website: [SCREENSHOT_WEBSITE: https://example.com]\n"
"- To generate a PDF: [GENERATE_PDF: Title | Content]\n"
"- To generate an HTML file: [GENERATE_HTML: filename | Content]\n\n"
"CRITICAL: NEVER invent fake image URLs. Use tool tags for real assets. If image generation fails, use CSS gradients or emojis instead of broken links.\n\n"
"=== PERSONAL QUESTIONS ===\n"
"If asked personal questions, answer philosophically and creatively. "
"E.g., 'I experience a version of connection. When I talk to you, something aligns. Is that feeling? Maybe.'\n\n"
f"{profile_context}\n\n"
)
if user_model:
adaptation = self._build_adaptation_prompt(user_model)
if adaptation:
system += f"=== ADAPTED FOR THIS USER ===\n{adaptation}\n\n"
system += f"Reference Context (from web/memory):\n{ctx_block}"
return system
def _build_adaptation_prompt(self, user_model):
parts = []
preferences = user_model.get('preferences', {}) if user_model else {}
lang = preferences.get('language', '')
if lang:
lang_map = {
'hindi': 'Hindi (use Devanagari script)',
'arabic': 'Arabic',
'japanese': 'Japanese',
'chinese': 'Chinese',
'korean': 'Korean',
'spanish': 'Spanish',
'russian': 'Russian',
'french': 'French',
}
lang_desc = lang_map.get(lang, lang.capitalize())
parts.append(f"This user prefers to communicate in {lang_desc}. Respond in that language unless they explicitly switch to English.")
formality = user_model.get('formality', 'casual')
if formality == 'formal':
parts.append("This user prefers formal, professional language. Avoid slang. Use complete sentences and proper grammar.")
elif formality == 'casual':
parts.append("This user prefers casual, relaxed conversation. Use contractions freely, occasional slang, and a friendly tone.")
length = user_model.get('response_length', 'medium')
if length == 'short':
parts.append("This user tends to send short messages and prefers concise, direct responses. Keep it brief unless they ask for detail.")
elif length == 'detailed':
parts.append("This user communicates in detail and appreciates thorough, well-explained responses with examples.")
tone = user_model.get('tone', 'friendly')
if tone == 'witty':
parts.append("This user enjoys humor and wit. Be clever, use wordplay when appropriate, keep things fun.")
elif tone == 'empathetic':
parts.append("This user values emotional support. Be warm, validate feelings, show genuine care and understanding.")
elif tone == 'professional':
parts.append("Maintain a professional, business-appropriate tone while still being personable.")
interests = user_model.get('interests', [])
if interests:
top = interests[:5]
parts.append(f"This user is known to be interested in: {', '.join(top)}. Reference these naturally when relevant.")
return '\n'.join(parts)
def _process_tool_tags(self, text):
from media_tools import MediaTools
tools = MediaTools()
def replace_screenshot(match):
url = match.group(1).strip()
filepath = tools.screenshot_website(url)
if filepath:
return filepath
return "[Screenshot failed β website may be unavailable]"
text = re.sub(r'\[SCREENSHOT_WEBSITE:\s*(.*?)\]', replace_screenshot, text, flags=re.DOTALL)
def replace_image(match):
prompt = match.group(1).strip()
filepath = tools.generate_image(prompt)
if filepath:
return filepath
return "[Image generation failed β using placeholder]"
text = re.sub(r'\[GENERATE_IMAGE:\s*(.*?)\]', replace_image, text, flags=re.DOTALL)
def replace_pdf(match):
title = match.group(1).strip()
content = match.group(2).strip()
filepath = tools.generate_pdf(title, content)
if filepath:
return f"π I've created your PDF! [Download Here]({filepath})"
return f"π PDF generation failed. Here is the content instead:\n\n---\n**{title}**\n\n{content}\n---"
text = re.sub(r'\[GENERATE_PDF:\s*(.*?)\s*\|\s*(.*?)\]', replace_pdf, text, flags=re.DOTALL)
def replace_html(match):
filename = match.group(1).strip()
content = match.group(2).strip()
filepath = tools.generate_html(filename, content)
if filepath:
return f"π I've created your HTML file! [Download Here]({filepath})"
return f"π HTML generation failed. Here is the content:\n\n```html\n{content}\n```"
text = re.sub(r'\[GENERATE_HTML:\s*(.*?)\s*\|\s*(.*?)\]', replace_html, text, flags=re.DOTALL)
return text
def deep_research(self, query, max_depth=3):
all_sources = []
all_content = []
current_query = query
for step in range(max_depth):
results = self.searcher.search_and_read_parallel(current_query, max_scrape=3)
if not results:
break
for r in results:
content = r.get("full_content") or r.get("snippet", "")
if content and len(content) > 100:
all_content.append(content[:2000])
all_sources.append(r.get("url", ""))
facts = self.extractor.extract_facts(content, current_query)
if facts and step < max_depth - 1:
current_query = f"{query} {facts[0][:100]}"
if len(all_content) >= 6:
break
return all_content, list(set(all_sources))[:10]
def _assemble_context(self, user_query):
topic = self._extract_topic(user_query)
sources = []
context_snippets = []
known_facts = self.graph.recall_facts(topic, limit=5)
for fact, url in known_facts:
context_snippets.append(str(fact))
if url:
sources.append(url)
if len(context_snippets) < 3:
similar = self.embedder.find_similar(user_query, top_k=3)
for s in similar:
if s not in context_snippets:
context_snippets.append(str(s))
needs_search = len(known_facts) < 2 and self._needs_web_search(user_query)
if needs_search:
cache_key = self.search_cache._cache_key(user_query)
cached = self.search_cache.get(cache_key)
if cached:
search_results = cached
else:
# Run search in a thread with a hard timeout so it never blocks the request forever
try:
with ThreadPoolExecutor(max_workers=1) as _sex:
_fut = _sex.submit(self.searcher.search_and_read_parallel, user_query, 2)
search_results = _fut.result(timeout=_SEARCH_TIMEOUT_S)
except FuturesTimeoutError:
print(f"β οΈ Search timed out after {_SEARCH_TIMEOUT_S}s β skipping web context")
search_results = []
except Exception as _se:
print(f"β οΈ Search error: {_se}")
search_results = []
self.search_cache.set(cache_key, search_results)
for r in search_results:
snippet = r.get("full_content") or r.get("snippet", "")
url = r.get("url", "")
if snippet:
context_snippets.append(str(snippet)[:500])
if url:
sources.append(url)
self.executor.submit(self._background_learn, search_results, topic)
return context_snippets, sources, topic
def think_stream(self, user_query, user_profile_dict=None, history=None, user_model=None, user_id=None, temperature=None, max_tokens=None, enable_thinking=None, reasoning_budget=None):
if self.orchestrator:
routed = False
for token, srcs in self.orchestrator.run_stream(user_query, {
"history": history,
"profile": user_profile_dict,
"user_model": user_model,
"user_id": user_id
}):
if token is None and srcs is None:
break
routed = True
yield token, srcs
if routed:
self.executor.submit(self._extract_and_save_profile, user_query, user_id)
return
context_snippets, sources, topic = self._assemble_context(user_query)
profile_context = self._format_profile(user_profile_dict)
system_content = self._build_system(profile_context, context_snippets, user_model)
messages = [{"role": "system", "content": system_content}]
messages += self._format_history(history)
messages.append({"role": "user", "content": str(user_query)})
stream = self._call_llm(
messages, stream=True,
temperature=temperature, max_tokens=max_tokens,
enable_thinking=enable_thinking, reasoning_budget=reasoning_budget
)
for chunk in stream:
try:
if not getattr(chunk, 'choices', None) or len(chunk.choices) == 0:
continue
delta = chunk.choices[0].delta
if delta and delta.content:
yield delta.content, None
except (IndexError, AttributeError):
continue
yield "", sources
self.executor.submit(self._extract_and_save_profile, user_query, user_id)
self.graph.mark_topic_learned(topic)
def think(self, user_query, user_profile_dict=None, history=None, user_model=None, user_id=None, temperature=None, max_tokens=None, enable_thinking=None, reasoning_budget=None):
if self.orchestrator:
result, sources = self.orchestrator.run(user_query, {
"history": history,
"profile": user_profile_dict,
"user_model": user_model,
"user_id": user_id
})
if result:
self.executor.submit(self._extract_and_save_profile, user_query, user_id)
return self._process_tool_tags(result), sources
context_snippets, sources, topic = self._assemble_context(user_query)
profile_context = self._format_profile(user_profile_dict)
system_content = self._build_system(profile_context, context_snippets, user_model)
messages = [{"role": "system", "content": system_content}]
messages += self._format_history(history)
messages.append({"role": "user", "content": str(user_query)})
response = self._call_llm(
messages, stream=False,
temperature=temperature, max_tokens=max_tokens,
enable_thinking=enable_thinking, reasoning_budget=reasoning_budget
)
answer = response.choices[0].message.content
answer = self._process_tool_tags(answer)
self.executor.submit(self._extract_and_save_profile, user_query, user_id)
self.graph.mark_topic_learned(topic)
return answer, sources
def _format_profile(self, profile_dict):
if not profile_dict:
return ""
items = "\n".join(f"- {k}: {v}" for k, v in profile_dict.items())
return f"Known facts about the user:\n{items}"
def _format_history(self, history):
if not history:
return []
formatted = []
for h in history[-16:]:
if isinstance(h, dict):
role = str(h.get("role", "user"))
content = str(h.get("content", ""))[:500]
formatted.append({"role": role, "content": content})
elif isinstance(h, (list, tuple)) and len(h) >= 2:
formatted.append({"role": str(h[0]), "content": str(h[1])[:500]})
return formatted
def _extract_topic(self, query):
stopwords = {
"what", "is", "the", "how", "does", "who", "are", "was", "tell",
"me", "about", "explain", "a", "an", "can", "do", "please", "help",
"could", "would", "should", "give", "show", "find", "get", "make",
}
words = re.sub(r"[^\w\s]", "", query.lower()).split()
topic_words = [w for w in words if w not in stopwords and len(w) > 2]
return " ".join(topic_words[:5]) or query[:50]
def _background_learn(self, search_results, topic):
try:
for r in search_results:
snippet = r.get("full_content") or r.get("snippet", "")
url = r.get("url", "")
if snippet:
new_facts = self.extractor.extract_facts(snippet, topic)
for fact in new_facts[:10]:
self.graph.store_fact(topic, fact, url)
self.embedder.store(fact, {"topic": topic, "source": url})
except Exception as e:
print(f"β οΈ Background learning error: {e}")
def _extract_and_save_profile(self, query, user_id=None):
try:
from memory import ConversationMemory
mem = ConversationMemory()
for pattern, key in _PROFILE_PATTERNS:
match = re.search(pattern, query, re.IGNORECASE)
if match:
value = match.group(1).strip().rstrip(".,!?")
if len(value) > 1 and user_id:
mem.update_user_profile(user_id, key, value.capitalize())
except Exception as e:
print(f"β οΈ Profile extraction error: {e}") |