Files
topoteretes--cognee/examples/custom_pipelines/agentic_reasoning_procurement_example.py
wehub-resource-sync c889a57b6b
Test Suites / Build CI Environment (push) Has been cancelled
Test Suites / Basic Tests (push) Has been cancelled
Test Suites / End-to-End Tests (push) Has been cancelled
Test Suites / CLI Tests (push) Has been cancelled
Test Suites / Slow End-to-End Tests (push) Has been cancelled
Test Suites / Graph Database Tests (push) Has been cancelled
Test Suites / Vector DB Tests (push) Has been cancelled
Test Suites / Temporal Graph Test (push) Has been cancelled
Test Suites / Search Test on Different DBs (push) Has been cancelled
Test Suites / Example Tests (push) Has been cancelled
Test Suites / Notebook Tests (push) Has been cancelled
Test Suites / OS and Python Tests Ubuntu (push) Has been cancelled
Test Suites / OS and Python Tests Extended (push) Has been cancelled
Test Suites / LLM Test Suite (push) Has been cancelled
Test Suites / S3 File Storage Test (push) Has been cancelled
Test Suites / Run Integration Tests (push) Has been cancelled
Test Suites / MCP Tests (push) Has been cancelled
Test Suites / Docker Compose Test (push) Has been cancelled
Test Suites / Docker CI test (push) Has been cancelled
Test Suites / Relational DB Migration Tests (push) Has been cancelled
Test Suites / Distributed Cognee Test (push) Has been cancelled
Test Suites / DB Examples Tests (push) Has been cancelled
Test Suites / Test Completion Status (push) Has been cancelled
Test Suites / Claude Code Review (push) Has been cancelled
Test Suites / basic checks (push) Has been cancelled
build | Build and Push Cognee MCP Docker Image to dockerhub / docker-build-and-push (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
build | Build and Push Docker Image to dockerhub / docker-build-and-push (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges Core Functionality (3.11) (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges Core Functionality (3.12) (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges with Different Graph Databases (kuzu, kuzu) (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges with Different Graph Databases (neo4j, neo4j) (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges Examples (push) Has been cancelled
Weighted Edges Tests / Code Quality for Weighted Edges (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:02:24 +08:00

209 lines
7.9 KiB
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# ruff: noqa: E402
import asyncio
import logging
import os
from dotenv import load_dotenv
load_dotenv()
# Notes: Nodesets cognee feature only works with Ladybug and Neo4j graph databases
# Set os.environ before importing Cognee: Cognee reads env-backed settings at import time, so values
# assigned later may not override defaults or `.env`. See https://docs.cognee.ai/setup-configuration/overview#using-os-environ
os.environ["GRAPH_DATABASE_PROVIDER"] = "ladybug"
import cognee # noqa: E402
from cognee import SearchType # noqa: E402
from cognee.infrastructure.llm.LLMGateway import LLMGateway # noqa: E402
from cognee.shared.logging_utils import setup_logging # noqa: E402
class ProcurementMemorySystem:
"""Procurement system with persistent memory using Cognee"""
async def setup_memory_data(self):
"""Load and store procurement data in memory"""
# Procurement system dummy data
vendor_conversation_text_techsupply = """
Assistant: Hello! This is Sarah from TechSupply Solutions.
Thanks for reaching out for your IT procurement needs.
User: We're looking to procure 50 high-performance enterprise laptops.
Specs: Intel i7, 16GB RAM, 512GB SSD, dedicated graphics card.
Budget: $80,000. What models do you have?
Assistant: TechSupply Solutions can offer Dell Precision 5570 ($1,450) and Lenovo ThinkPad P1 ($1,550).
Both come with a 3-year warranty. Delivery: 23 weeks (Dell), 34 weeks (Lenovo).
User: Do you provide bulk discounts? We're planning another 200 units next quarter.
Assistant: Yes! Orders over $50,000 get 8% off.
So for your current order:
- Dell = $1,334 each ($66,700 total)
- Lenovo = $1,426 each ($71,300 total)
And for 200 units next quarter, we can offer 12% off with flexible delivery.
"""
vendor_conversation_text_office_solutions = """
Assistant: Hi, this is Martin from vendor Office Solutions. How can we assist you?
User: We need 50 laptops for our engineers.
Specs: i7 CPU, 16GB RAM, 512GB SSD, dedicated GPU.
We can spend up to $80,000. Can you meet this?
Assistant: Office Solutions can offer HP ZBook Power G9 for $1,600 each.
Comes with 2-year warranty, delivery time is 45 weeks.
User: That's a bit long — any options to speed it up?
Assistant: We can expedite for $75 per unit, bringing delivery to 34 weeks.
Also, for orders over $60,000 we give 6% off.
So:
- Base price = $1,600 → $1,504 with discount
- Expedited price = $1,579
User: Understood. Any room for better warranty terms?
Assistant: Were working on adding a 3-year warranty option next quarter for enterprise clients.
"""
previous_purchases_text = """
Previous Purchase Records:
1. Vendor: TechSupply Solutions
Item: Desktop computers - 25 units
Amount: $35,000
Date: 2024-01-15
Performance: Excellent delivery, good quality, delivered 2 days early
Rating: 5/5
Notes: Responsive support team, competitive pricing
2. Vendor: Office Solutions
Item: Office furniture
Amount: $12,000
Date: 2024-02-20
Performance: Delayed delivery by 1 week, average quality
Rating: 2/5
Notes: Poor communication, but acceptable product quality
"""
procurement_preferences_text = """
Procurement Policies and Preferences:
1. Preferred vendors must have 3+ year warranty coverage
2. Maximum delivery time: 30 days for non-critical items
3. Bulk discount requirements: minimum 5% for orders over $50,000
4. Prioritize vendors with sustainable/green practices
5. Vendor rating system: require minimum 4/5 rating for new contracts
"""
# Initializing and pruning databases
await cognee.forget(everything=True)
# Store data in different memory categories
await cognee.remember(
data=[vendor_conversation_text_techsupply, vendor_conversation_text_office_solutions],
node_set=["vendor_conversations"],
self_improvement=False,
)
await cognee.remember(
data=previous_purchases_text,
node_set=["purchase_history"],
self_improvement=False,
)
await cognee.remember(
data=procurement_preferences_text,
node_set=["procurement_policies"],
self_improvement=False,
)
async def search_memory(self, query, search_categories=None):
"""Search across different memory layers"""
results = {}
for category in search_categories:
category_results = await cognee.recall(
query_type=SearchType.GRAPH_COMPLETION,
query_text=query,
node_name=[category],
top_k=30,
)
results[category] = category_results
return results
async def run_procurement_example():
"""Main function demonstrating procurement memory system"""
print("Building AI Procurement System with Memory: Cognee Integration...\n")
# Initialize the procurement memory system
procurement_system = ProcurementMemorySystem()
# Setup memory with procurement data
print("Setting up procurement memory data...")
await procurement_system.setup_memory_data()
print("Memory successfully populated and processed.\n")
research_questions = {
"vendor_conversations": [
"What are the laptops that are discussed, together with their vendors?",
"What pricing was offered by each vendor before and after discounts?",
"What were the delivery time estimates for each product?",
],
"purchase_history": [
"Which vendors have we worked with in the past?",
"What were the satisfaction ratings for each vendor?",
"Were there any complaints or red flags associated with specific vendors?",
],
"procurement_policies": [
"What are our companys bulk discount requirements?",
"What is the maximum acceptable delivery time for non-critical items?",
"What is the minimum vendor rating for new contracts?",
],
}
research_notes = {}
print("Running contextual research questions...\n")
for category, questions in research_questions.items():
print(f"Category: {category}")
research_notes[category] = []
for q in questions:
print(f"Question: \n{q}")
results = await procurement_system.search_memory(q, search_categories=[category])
top_answer = results[category][0]
print(f"Answer: \n{top_answer}\n")
research_notes[category].append({"question": q, "answer": top_answer})
print("Contextual research complete.\n")
print("Compiling structured research information for decision-making...\n")
research_information = "\n\n".join(
f"Q: {note['question']}\nA: {note['answer']}"
for section in research_notes.values()
for note in section
)
print("Compiled Research Summary:\n")
print(research_information)
print("\nPassing research to LLM for final procurement recommendation...\n")
final_decision = await LLMGateway.acreate_structured_output(
text_input=research_information,
system_prompt="""You are a procurement decision assistant. Use the provided QA pairs that were collected through a research phase. Recommend the best vendor,
based on pricing, delivery, warranty, policy fit, and past performance. Be concise and justify your choice with evidence.
""",
response_model=str,
)
print("Final Decision:")
print(final_decision.strip())
# Run the example
if __name__ == "__main__":
setup_logging(logging.ERROR)
asyncio.run(run_procurement_example())