mirror of
https://github.com/SHOGGOTH-SECTOR/sica-fondt.git
synced 2026-08-01 08:30:20 +00:00
Place useful parts of the surrounding repos into sica-fondt by layer, per the
body model (Ada = membrane; brain/endocrine/capabilities/knowledge non-Ada):
- brain/ LLM reasoning + providers (dapr, hermes, MoMoA)
- capabilities/ REPRAG sidecars: hermes tools/skills, dapr tools, parallel
dispatch, A51 channels, and the OSINT cluster
- knowledge/ LORAG corpus: 754 cyber-skills, agency personas, secure-coding,
MITRE ATT&CK data
- reference/ defensive threat-reference (C3, shhbruh doc) + AdaYaml parser
License handling: AGPL sources (worldosint, advanced_evolution, mercury,
Reticulum) and GPL DeTTECT are SPEC-only clean-room/port descriptions — no
copyleft code copied. MIT/Apache/data parts copied as working trees.
Safety: shhbruh escape/persistence material and C3 covert-C2 kept as reference
only, not wired into the running organism. See CONSOLIDATION.md.
https://claude.ai/code/session_01UehUqEXXJJCsHoA4voCU5c
87 lines
3.2 KiB
Python
87 lines
3.2 KiB
Python
#
|
|
# Copyright 2026 The Dapr Authors
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
from typing import List, Dict, Any
|
|
from pydantic import BaseModel, Field, ConfigDict
|
|
from dapr_agents.storage.vectorstores import VectorStoreBase
|
|
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class VectorToolStore(BaseModel):
|
|
"""
|
|
Manages tool information within a vector store, providing methods for adding tools and
|
|
retrieving similar tools based on queries.
|
|
"""
|
|
|
|
vector_store: VectorStoreBase = Field(
|
|
..., description="The vector store instance for tool data storage."
|
|
)
|
|
|
|
model_config = ConfigDict(arbitrary_types_allowed=True)
|
|
|
|
def add_tools(self, tools: List[Dict[str, Any]]):
|
|
"""
|
|
Adds tool information to the vector store.
|
|
|
|
Args:
|
|
tools (List[Dict[str, Any]]): A list of dictionaries representing tools, each containing
|
|
definitions and optional metadata for each tool.
|
|
"""
|
|
logger.info("Adding tools to Vector Tool Store.")
|
|
|
|
documents = []
|
|
metadatas = []
|
|
|
|
for tool in tools:
|
|
func_name = tool["definition"]["function"]["name"]
|
|
description = tool["definition"]["function"]["description"]
|
|
parameters = tool["definition"]["function"]["parameters"]
|
|
|
|
# Prepare the document for each tool
|
|
documents.append(f"{func_name}: {description}. Args schema: {parameters}")
|
|
|
|
# Prepare metadata, ensuring 'name' is always set
|
|
metadata = tool.get("metadata", {}).copy()
|
|
metadata.setdefault("name", func_name) # Ensure name is set in metadata
|
|
metadatas.append(metadata)
|
|
|
|
self.vector_store.add(documents=documents, metadatas=metadatas)
|
|
|
|
def get_similar_tools(self, query_texts: str, k: int = 4) -> List[Dict[str, Any]]:
|
|
"""
|
|
Retrieves tools from the vector store similar to the query text.
|
|
|
|
Args:
|
|
query_texts (str): The query string to find similar tools.
|
|
k (int): The number of similar results to return. Defaults to 4.
|
|
|
|
Returns:
|
|
List[Dict[str, Any]]: List of similar tool entries based on the query.
|
|
"""
|
|
logger.info(f"Searching for tools similar to query: {query_texts}")
|
|
similar_docs = self.vector_store.search_similar(query_texts=query_texts, k=k)
|
|
return similar_docs
|
|
|
|
def get_tool_names(self) -> List[str]:
|
|
"""
|
|
Retrieves the names of all tools stored in the vector store.
|
|
|
|
Returns:
|
|
List[str]: A list of tool names.
|
|
"""
|
|
logger.info("Retrieving all tool names from Vector Tool Store.")
|
|
tools = self.vector_store.get()
|
|
return [tool["metadata"]["name"] for tool in tools]
|