-
Notifications
You must be signed in to change notification settings - Fork 1k
feat: Add data visualization for Anthropic #432
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
daf2d54
b132ff4
7b0bfe9
cf4737b
55e9d64
047948a
3ba98b2
ad07bae
a0e3686
61118dd
e71f852
933d21a
aef7822
be0b486
662faeb
4a87df9
4ae8eb9
1af24dc
b2355de
5b31638
f19b58a
5aaf420
72b503f
7a4a0f4
0783625
bbd51e8
cb7b2d3
fe47253
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -10,6 +10,8 @@ | |||||||||||||||||||||||||||||||||||||||||||
| from cognee.shared.data_models import KnowledgeGraph | ||||||||||||||||||||||||||||||||||||||||||||
| from mcp.server import NotificationOptions, Server | ||||||||||||||||||||||||||||||||||||||||||||
| from mcp.server.models import InitializationOptions | ||||||||||||||||||||||||||||||||||||||||||||
| from PIL import Image | ||||||||||||||||||||||||||||||||||||||||||||
| from PIL import Image as PILImage | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| server = Server("cognee-mcp") | ||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
|
|
@@ -87,9 +89,36 @@ async def handle_list_tools() -> list[types.Tool]: | |||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||||
| ), | ||||||||||||||||||||||||||||||||||||||||||||
| types.Tool( | ||||||||||||||||||||||||||||||||||||||||||||
| name="visualize", | ||||||||||||||||||||||||||||||||||||||||||||
| description="Visualize the knowledge graph.", | ||||||||||||||||||||||||||||||||||||||||||||
| inputSchema={ | ||||||||||||||||||||||||||||||||||||||||||||
| "type": "object", | ||||||||||||||||||||||||||||||||||||||||||||
| "properties": { | ||||||||||||||||||||||||||||||||||||||||||||
| "query": {"type": "string"}, | ||||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||||
| ), | ||||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+94
to
+103
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Clarify query parameter requirement in visualization tool schema The tool's schema defines a "query" property but doesn't mark it as required. Either:
types.Tool(
name="visualize",
description="Visualize the knowledge graph.",
inputSchema={
"type": "object",
"properties": {
"query": {"type": "string"},
},
+ "required": ["query"], # Add this if query is required
},
),📝 Committable suggestion
Suggested change
🧰 Tools🪛 GitHub Actions: ruff format[warning] File requires formatting. Code does not conform to Ruff's formatting standards.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a good suggestion from coderabbit
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @borisarzentar Thank you for confirming! I'm glad the suggestion was helpful. ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ |
||||||||||||||||||||||||||||||||||||||||||||
| ] | ||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| def get_freshest_png(directory: str) -> Image.Image: | ||||||||||||||||||||||||||||||||||||||||||||
| # List all files in 'directory' that end with .png | ||||||||||||||||||||||||||||||||||||||||||||
| files = [f for f in os.listdir(directory) if f.endswith(".png")] | ||||||||||||||||||||||||||||||||||||||||||||
| if not files: | ||||||||||||||||||||||||||||||||||||||||||||
| raise FileNotFoundError("No PNG files found in the given directory.") | ||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| # Sort by integer value of the filename (minus the '.png') | ||||||||||||||||||||||||||||||||||||||||||||
| # Example filename: 1673185134.png -> integer 1673185134 | ||||||||||||||||||||||||||||||||||||||||||||
| files_sorted = sorted(files, key=lambda x: int(x.replace(".png", ""))) | ||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| # The "freshest" file has the largest timestamp | ||||||||||||||||||||||||||||||||||||||||||||
| freshest_filename = files_sorted[-1] | ||||||||||||||||||||||||||||||||||||||||||||
| freshest_path = os.path.join(directory, freshest_filename) | ||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| # Open the image with PIL and return the PIL Image object | ||||||||||||||||||||||||||||||||||||||||||||
| return Image.open(freshest_path) | ||||||||||||||||||||||||||||||||||||||||||||
Vasilije1990 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| @server.call_tool() | ||||||||||||||||||||||||||||||||||||||||||||
| async def handle_call_tool( | ||||||||||||||||||||||||||||||||||||||||||||
| name: str, arguments: dict | None | ||||||||||||||||||||||||||||||||||||||||||||
|
|
@@ -154,6 +183,14 @@ async def handle_call_tool( | |||||||||||||||||||||||||||||||||||||||||||
| text="Pruned", | ||||||||||||||||||||||||||||||||||||||||||||
| ) | ||||||||||||||||||||||||||||||||||||||||||||
| ] | ||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| elif name == "visualize": | ||||||||||||||||||||||||||||||||||||||||||||
| with open(os.devnull, "w") as fnull: | ||||||||||||||||||||||||||||||||||||||||||||
| with redirect_stdout(fnull), redirect_stderr(fnull): | ||||||||||||||||||||||||||||||||||||||||||||
| """Create a thumbnail from an image""" | ||||||||||||||||||||||||||||||||||||||||||||
| await cognee.visualize | ||||||||||||||||||||||||||||||||||||||||||||
| img = get_freshest_png(".") | ||||||||||||||||||||||||||||||||||||||||||||
| return types.Image(data=img.tobytes(), format="png") | ||||||||||||||||||||||||||||||||||||||||||||
Vasilije1990 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||||||||||||||
| else: | ||||||||||||||||||||||||||||||||||||||||||||
| raise ValueError(f"Unknown tool: {name}") | ||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,7 +13,7 @@ | |
| import tiktoken | ||
| import nltk | ||
|
||
| import base64 | ||
|
|
||
| import time | ||
|
|
||
| import logging | ||
| import sys | ||
|
|
@@ -396,6 +396,7 @@ async def create_cognee_style_network_with_logo( | |
|
|
||
| from bokeh.embed import file_html | ||
| from bokeh.resources import CDN | ||
| from bokeh.io import export_png | ||
|
|
||
| logging.info("Converting graph to serializable format...") | ||
| G = await convert_to_serializable_graph(G) | ||
|
|
@@ -443,6 +444,14 @@ async def create_cognee_style_network_with_logo( | |
| ) | ||
| p.add_tools(hover_tool) | ||
|
|
||
| # Get the latest Unix timestamp as an integer | ||
| timestamp = int(time.time()) | ||
|
|
||
| # Construct your filename | ||
| filename = f"{timestamp}.png" | ||
|
|
||
| export_png(p, filename=filename) | ||
|
|
||
|
||
| logging.info(f"Saving visualization to {output_filename}...") | ||
| html_content = file_html(p, CDN, title) | ||
| with open(output_filename, "w") as f: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Remove duplicate PIL Image import
The Image module from PIL is imported twice with different aliases. This is redundant and could cause confusion.
📝 Committable suggestion
🧰 Tools
🪛 GitHub Actions: ruff format
[warning] File requires formatting. Code does not conform to Ruff formatting standards.