Spaces:
Paused
Paused
File size: 19,734 Bytes
8d1819a |
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 |
from datetime import datetime
from typing import Any, List, Sequence
from langchain.storage import InMemoryByteStore, LocalFileStore
from langchain.embeddings import CacheBackedEmbeddings
from python.helpers import guids
# from langchain_chroma import Chroma
from langchain_community.vectorstores import FAISS
# faiss needs to be patched for python 3.12 on arm #TODO remove once not needed
from python.helpers import faiss_monkey_patch
import faiss
from langchain_community.docstore.in_memory import InMemoryDocstore
from langchain_community.vectorstores.utils import (
DistanceStrategy,
)
from langchain_core.embeddings import Embeddings
import os, json
import numpy as np
from python.helpers.print_style import PrintStyle
from . import files
from langchain_core.documents import Document
from python.helpers import knowledge_import
from python.helpers.log import Log, LogItem
from enum import Enum
from agent import Agent, AgentContext
import models
import logging
from simpleeval import simple_eval
# Raise the log level so WARNING messages aren't shown
logging.getLogger("langchain_core.vectorstores.base").setLevel(logging.ERROR)
class MyFaiss(FAISS):
# override aget_by_ids
def get_by_ids(self, ids: Sequence[str], /) -> List[Document]:
# return all self.docstore._dict[id] in ids
return [self.docstore._dict[id] for id in (ids if isinstance(ids, list) else [ids]) if id in self.docstore._dict] # type: ignore
async def aget_by_ids(self, ids: Sequence[str], /) -> List[Document]:
return self.get_by_ids(ids)
def get_all_docs(self):
return self.docstore._dict # type: ignore
class Memory:
class Area(Enum):
MAIN = "main"
FRAGMENTS = "fragments"
SOLUTIONS = "solutions"
INSTRUMENTS = "instruments"
index: dict[str, "MyFaiss"] = {}
@staticmethod
async def get(agent: Agent):
memory_subdir = get_agent_memory_subdir(agent)
if Memory.index.get(memory_subdir) is None:
log_item = agent.context.log.log(
type="util",
heading=f"Initializing VectorDB in '/{memory_subdir}'",
)
db, created = Memory.initialize(
log_item,
agent.config.embeddings_model,
memory_subdir,
False,
)
Memory.index[memory_subdir] = db
wrap = Memory(db, memory_subdir=memory_subdir)
knowledge_subdirs = get_knowledge_subdirs_by_memory_subdir(
memory_subdir, agent.config.knowledge_subdirs or []
)
if knowledge_subdirs:
await wrap.preload_knowledge(log_item, knowledge_subdirs, memory_subdir)
return wrap
else:
return Memory(
db=Memory.index[memory_subdir],
memory_subdir=memory_subdir,
)
@staticmethod
async def get_by_subdir(
memory_subdir: str,
log_item: LogItem | None = None,
preload_knowledge: bool = True,
):
if not Memory.index.get(memory_subdir):
import initialize
agent_config = initialize.initialize_agent()
model_config = agent_config.embeddings_model
db, _created = Memory.initialize(
log_item=log_item,
model_config=model_config,
memory_subdir=memory_subdir,
in_memory=False,
)
wrap = Memory(db, memory_subdir=memory_subdir)
if preload_knowledge:
knowledge_subdirs = get_knowledge_subdirs_by_memory_subdir(
memory_subdir, agent_config.knowledge_subdirs or []
)
if knowledge_subdirs:
await wrap.preload_knowledge(
log_item, knowledge_subdirs, memory_subdir
)
Memory.index[memory_subdir] = db
return Memory(db=Memory.index[memory_subdir], memory_subdir=memory_subdir)
@staticmethod
async def reload(agent: Agent):
memory_subdir = get_agent_memory_subdir(agent)
if Memory.index.get(memory_subdir):
del Memory.index[memory_subdir]
return await Memory.get(agent)
@staticmethod
def initialize(
log_item: LogItem | None,
model_config: models.ModelConfig,
memory_subdir: str,
in_memory=False,
) -> tuple[MyFaiss, bool]:
PrintStyle.standard("Initializing VectorDB...")
if log_item:
log_item.stream(progress="\nInitializing VectorDB")
em_dir = files.get_abs_path(
"memory/embeddings"
) # just caching, no need to parameterize
db_dir = abs_db_dir(memory_subdir)
# make sure embeddings and database directories exist
os.makedirs(db_dir, exist_ok=True)
if in_memory:
store = InMemoryByteStore()
else:
os.makedirs(em_dir, exist_ok=True)
store = LocalFileStore(em_dir)
embeddings_model = models.get_embedding_model(
model_config.provider,
model_config.name,
**model_config.build_kwargs(),
)
embeddings_model_id = files.safe_file_name(
model_config.provider + "_" + model_config.name
)
# here we setup the embeddings model with the chosen cache storage
embedder = CacheBackedEmbeddings.from_bytes_store(
embeddings_model, store, namespace=embeddings_model_id
)
# initial DB and docs variables
db: MyFaiss | None = None
docs: dict[str, Document] | None = None
created = False
# if db folder exists and is not empty:
if os.path.exists(db_dir) and files.exists(db_dir, "index.faiss"):
db = MyFaiss.load_local(
folder_path=db_dir,
embeddings=embedder,
allow_dangerous_deserialization=True,
distance_strategy=DistanceStrategy.COSINE,
# normalize_L2=True,
relevance_score_fn=Memory._cosine_normalizer,
) # type: ignore
# if there is a mismatch in embeddings used, re-index the whole DB
emb_ok = False
emb_set_file = files.get_abs_path(db_dir, "embedding.json")
if files.exists(emb_set_file):
embedding_set = json.loads(files.read_file(emb_set_file))
if (
embedding_set["model_provider"] == model_config.provider
and embedding_set["model_name"] == model_config.name
):
# model matches
emb_ok = True
# re-index - create new DB and insert existing docs
if db and not emb_ok:
docs = db.get_all_docs()
db = None
# DB not loaded, create one
if not db:
index = faiss.IndexFlatIP(len(embedder.embed_query("example")))
db = MyFaiss(
embedding_function=embedder,
index=index,
docstore=InMemoryDocstore(),
index_to_docstore_id={},
distance_strategy=DistanceStrategy.COSINE,
# normalize_L2=True,
relevance_score_fn=Memory._cosine_normalizer,
)
# insert docs if reindexing
if docs:
PrintStyle.standard("Indexing memories...")
if log_item:
log_item.stream(progress="\nIndexing memories")
db.add_documents(documents=list(docs.values()), ids=list(docs.keys()))
# save DB
Memory._save_db_file(db, memory_subdir)
# save meta file
meta_file_path = files.get_abs_path(db_dir, "embedding.json")
files.write_file(
meta_file_path,
json.dumps(
{
"model_provider": model_config.provider,
"model_name": model_config.name,
}
),
)
created = True
return db, created
def __init__(
self,
db: MyFaiss,
memory_subdir: str,
):
self.db = db
self.memory_subdir = memory_subdir
async def preload_knowledge(
self, log_item: LogItem | None, kn_dirs: list[str], memory_subdir: str
):
if log_item:
log_item.update(heading="Preloading knowledge...")
# db abs path
db_dir = abs_db_dir(memory_subdir)
# Load the index file if it exists
index_path = files.get_abs_path(db_dir, "knowledge_import.json")
# make sure directory exists
if not os.path.exists(db_dir):
os.makedirs(db_dir)
index: dict[str, knowledge_import.KnowledgeImport] = {}
if os.path.exists(index_path):
with open(index_path, "r") as f:
index = json.load(f)
# preload knowledge folders
index = self._preload_knowledge_folders(log_item, kn_dirs, index)
for file in index:
if index[file]["state"] in ["changed", "removed"] and index[file].get(
"ids", []
): # for knowledge files that have been changed or removed and have IDs
await self.delete_documents_by_ids(
index[file]["ids"]
) # remove original version
if index[file]["state"] == "changed":
index[file]["ids"] = await self.insert_documents(
index[file]["documents"]
) # insert new version
# remove index where state="removed"
index = {k: v for k, v in index.items() if v["state"] != "removed"}
# strip state and documents from index and save it
for file in index:
if "documents" in index[file]:
del index[file]["documents"] # type: ignore
if "state" in index[file]:
del index[file]["state"] # type: ignore
with open(index_path, "w") as f:
json.dump(index, f)
def _preload_knowledge_folders(
self,
log_item: LogItem | None,
kn_dirs: list[str],
index: dict[str, knowledge_import.KnowledgeImport],
):
# load knowledge folders, subfolders by area
for kn_dir in kn_dirs:
# everything in the root of the knowledge goes to main
index = knowledge_import.load_knowledge(
log_item,
abs_knowledge_dir(kn_dir),
index,
{"area": Memory.Area.MAIN},
filename_pattern="*",
recursive=False,
)
# subdirectories go to their folders
for area in Memory.Area:
index = knowledge_import.load_knowledge(
log_item,
# files.get_abs_path("knowledge", kn_dir, area.value),
abs_knowledge_dir(kn_dir, area.value),
index,
{"area": area.value},
recursive=True,
)
# load instruments descriptions
index = knowledge_import.load_knowledge(
log_item,
files.get_abs_path("instruments"),
index,
{"area": Memory.Area.INSTRUMENTS.value},
filename_pattern="**/*.md",
recursive=True,
)
return index
def get_document_by_id(self, id: str) -> Document | None:
return self.db.get_by_ids(id)[0]
async def search_similarity_threshold(
self, query: str, limit: int, threshold: float, filter: str = ""
):
comparator = Memory._get_comparator(filter) if filter else None
return await self.db.asearch(
query,
search_type="similarity_score_threshold",
k=limit,
score_threshold=threshold,
filter=comparator,
)
async def delete_documents_by_query(
self, query: str, threshold: float, filter: str = ""
):
k = 100
tot = 0
removed = []
while True:
# Perform similarity search with score
docs = await self.search_similarity_threshold(
query, limit=k, threshold=threshold, filter=filter
)
removed += docs
# Extract document IDs and filter based on score
# document_ids = [result[0].metadata["id"] for result in docs if result[1] < score_limit]
document_ids = [result.metadata["id"] for result in docs]
# Delete documents with IDs over the threshold score
if document_ids:
# fnd = self.db.get(where={"id": {"$in": document_ids}})
# if fnd["ids"]: self.db.delete(ids=fnd["ids"])
# tot += len(fnd["ids"])
await self.db.adelete(ids=document_ids)
tot += len(document_ids)
# If fewer than K document IDs, break the loop
if len(document_ids) < k:
break
if tot:
self._save_db() # persist
return removed
async def delete_documents_by_ids(self, ids: list[str]):
# aget_by_ids is not yet implemented in faiss, need to do a workaround
rem_docs = await self.db.aget_by_ids(
ids
) # existing docs to remove (prevents error)
if rem_docs:
rem_ids = [doc.metadata["id"] for doc in rem_docs] # ids to remove
await self.db.adelete(ids=rem_ids)
if rem_docs:
self._save_db() # persist
return rem_docs
async def insert_text(self, text, metadata: dict = {}):
doc = Document(text, metadata=metadata)
ids = await self.insert_documents([doc])
return ids[0]
async def insert_documents(self, docs: list[Document]):
ids = [self._generate_doc_id() for _ in range(len(docs))]
timestamp = self.get_timestamp()
if ids:
for doc, id in zip(docs, ids):
doc.metadata["id"] = id # add ids to documents metadata
doc.metadata["timestamp"] = timestamp # add timestamp
if not doc.metadata.get("area", ""):
doc.metadata["area"] = Memory.Area.MAIN.value
await self.db.aadd_documents(documents=docs, ids=ids)
self._save_db() # persist
return ids
async def update_documents(self, docs: list[Document]):
ids = [doc.metadata["id"] for doc in docs]
await self.db.adelete(ids=ids) # delete originals
ins = await self.db.aadd_documents(documents=docs, ids=ids) # add updated
self._save_db() # persist
return ins
def _save_db(self):
Memory._save_db_file(self.db, self.memory_subdir)
def _generate_doc_id(self):
while True:
doc_id = guids.generate_id(10) # random ID
if not self.db.get_by_ids(doc_id): # check if exists
return doc_id
@staticmethod
def _save_db_file(db: MyFaiss, memory_subdir: str):
abs_dir = abs_db_dir(memory_subdir)
db.save_local(folder_path=abs_dir)
@staticmethod
def _get_comparator(condition: str):
def comparator(data: dict[str, Any]):
try:
result = simple_eval(condition, names=data)
return result
except Exception as e:
PrintStyle.error(f"Error evaluating condition: {e}")
return False
return comparator
@staticmethod
def _score_normalizer(val: float) -> float:
res = 1 - 1 / (1 + np.exp(val))
return res
@staticmethod
def _cosine_normalizer(val: float) -> float:
res = (1 + val) / 2
res = max(
0, min(1, res)
) # float precision can cause values like 1.0000000596046448
return res
@staticmethod
def format_docs_plain(docs: list[Document]) -> list[str]:
result = []
for doc in docs:
text = ""
for k, v in doc.metadata.items():
text += f"{k}: {v}\n"
text += f"Content: {doc.page_content}"
result.append(text)
return result
@staticmethod
def get_timestamp():
return datetime.now().strftime("%Y-%m-%d %H:%M:%S")
def get_custom_knowledge_subdir_abs(agent: Agent) -> str:
for dir in agent.config.knowledge_subdirs:
if dir != "default":
return files.get_abs_path("knowledge", dir)
raise Exception("No custom knowledge subdir set")
def reload():
# clear the memory index, this will force all DBs to reload
Memory.index = {}
def abs_db_dir(memory_subdir: str) -> str:
# patch for projects, this way we don't need to re-work the structure of memory subdirs
if memory_subdir.startswith("projects/"):
from python.helpers.projects import get_project_meta_folder
return files.get_abs_path(get_project_meta_folder(memory_subdir[9:]), "memory")
# standard subdirs
return files.get_abs_path("memory", memory_subdir)
def abs_knowledge_dir(knowledge_subdir: str, *sub_dirs: str) -> str:
# patch for projects, this way we don't need to re-work the structure of knowledge subdirs
if knowledge_subdir.startswith("projects/"):
from python.helpers.projects import get_project_meta_folder
return files.get_abs_path(
get_project_meta_folder(knowledge_subdir[9:]), "knowledge", *sub_dirs
)
# standard subdirs
return files.get_abs_path("knowledge", knowledge_subdir, *sub_dirs)
def get_memory_subdir_abs(agent: Agent) -> str:
subdir = get_agent_memory_subdir(agent)
return abs_db_dir(subdir)
def get_agent_memory_subdir(agent: Agent) -> str:
# if project is active, use project memory subdir
return get_context_memory_subdir(agent.context)
def get_context_memory_subdir(context: AgentContext) -> str:
# if project is active, use project memory subdir
from python.helpers.projects import (
get_context_memory_subdir as get_project_memory_subdir,
)
memory_subdir = get_project_memory_subdir(context)
if memory_subdir:
return memory_subdir
# no project, regular memory subdir
return context.config.memory_subdir or "default"
def get_existing_memory_subdirs() -> list[str]:
try:
from python.helpers.projects import (
get_project_meta_folder,
get_projects_parent_folder,
)
# Get subdirectories from memory folder
subdirs = files.get_subdirectories("memory", exclude="embeddings")
project_subdirs = files.get_subdirectories(get_projects_parent_folder())
for project_subdir in project_subdirs:
if files.exists(
get_project_meta_folder(project_subdir), "memory", "index.faiss"
):
subdirs.append(f"projects/{project_subdir}")
# Ensure 'default' is always available
if "default" not in subdirs:
subdirs.insert(0, "default")
return subdirs
except Exception as e:
PrintStyle.error(f"Failed to get memory subdirectories: {str(e)}")
return ["default"]
def get_knowledge_subdirs_by_memory_subdir(
memory_subdir: str, default: list[str]
) -> list[str]:
if memory_subdir.startswith("projects/"):
from python.helpers.projects import get_project_meta_folder
default.append(get_project_meta_folder(memory_subdir[9:], "knowledge"))
return default
|