[PR #87] [MERGED] feat: graphiti search #150

Closed
opened 2026-06-06 22:09:25 -04:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/vxcontrol/pentagi/pull/87
Author: @zavgorodnii
Created: 11/20/2025
Status: Merged
Merged: 12/2/2025
Merged by: @zavgorodnii

Base: feat/grafitiHead: feat/graphiti-search


📝 Commits (2)

  • 19fe370 feat: graphiti-search
  • 203086a Merge branch 'feat/grafiti' into feat/graphiti-search

📊 Changes

30 files changed (+1364 additions, -78 deletions)

View changed files

📝 .env.example (+9 -8)
📝 README.md (+15 -13)
📝 backend/cmd/ftester/mocks/tools.go (+126 -0)
📝 backend/cmd/ftester/worker/args.go (+1 -0)
📝 backend/cmd/ftester/worker/executor.go (+32 -20)
📝 backend/cmd/ftester/worker/tester.go (+2 -0)
📝 backend/docs/config.md (+1 -1)
📝 backend/go.mod (+1 -1)
📝 backend/go.sum (+2 -0)
📝 backend/pkg/config/config.go (+1 -1)
📝 backend/pkg/controller/assistant.go (+1 -0)
📝 backend/pkg/controller/flow.go (+2 -0)
📝 backend/pkg/graphiti/client.go (+79 -0)
📝 backend/pkg/observability/langfuse/api/internal/caller_test.go (+1 -1)
📝 backend/pkg/observability/langfuse/api/internal/error_decoder_test.go (+1 -1)
📝 backend/pkg/observability/langfuse/api/internal/retrier_test.go (+1 -1)
📝 backend/pkg/providers/handlers.go (+2 -0)
📝 backend/pkg/providers/performer.go (+1 -0)
📝 backend/pkg/providers/provider.go (+1 -0)
📝 backend/pkg/providers/providers.go (+5 -0)

...and 10 more files

📄 Description

Description of the Change

Problem

Solution

Closes #

Type of Change

  • 🐛 Bug fix (non-breaking change which fixes an issue)
  • 🚀 New feature (non-breaking change which adds functionality)
  • 💥 Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • 📚 Documentation update
  • 🔧 Configuration change
  • 🧪 Test update
  • 🛡️ Security update

Areas Affected

  • Core Services (Frontend UI/Backend API)
  • AI Agents (Researcher/Developer/Executor)
  • Security Tools Integration
  • Memory System (Vector Store/Knowledge Base)
  • Monitoring Stack (Grafana/OpenTelemetry)
  • Analytics Platform (Langfuse)
  • External Integrations (LLM/Search APIs)
  • Documentation
  • Infrastructure/DevOps

Testing and Verification

Test Configuration

PentAGI Version:
Docker Version:
Host OS:
LLM Provider:
Enabled Features: [Langfuse/Grafana/etc]

Test Steps

Test Results

Security Considerations

Performance Impact

Documentation Updates

  • README.md updates
  • API documentation updates
  • Configuration documentation updates
  • GraphQL schema updates
  • Other:

Deployment Notes

Checklist

Code Quality

  • My code follows the project's coding standards
  • I have added/updated necessary documentation
  • I have added tests to cover my changes
  • All new and existing tests pass
  • I have run go fmt and go vet (for Go code)
  • I have run npm run lint (for TypeScript/JavaScript code)

Security

  • I have considered security implications
  • Changes maintain or improve the security model
  • Sensitive information has been properly handled

Compatibility

  • Changes are backward compatible
  • Breaking changes are clearly marked and documented
  • Dependencies are properly updated

Documentation

  • Documentation is clear and complete
  • Comments are added for non-obvious code
  • API changes are documented

Additional Notes


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/vxcontrol/pentagi/pull/87 **Author:** [@zavgorodnii](https://github.com/zavgorodnii) **Created:** 11/20/2025 **Status:** ✅ Merged **Merged:** 12/2/2025 **Merged by:** [@zavgorodnii](https://github.com/zavgorodnii) **Base:** `feat/grafiti` ← **Head:** `feat/graphiti-search` --- ### 📝 Commits (2) - [`19fe370`](https://github.com/vxcontrol/pentagi/commit/19fe370d2dc27be2e07dc8d4319c505fb35450b1) feat: graphiti-search - [`203086a`](https://github.com/vxcontrol/pentagi/commit/203086abe12a4944392314ab2b656d426c07a64e) Merge branch 'feat/grafiti' into feat/graphiti-search ### 📊 Changes **30 files changed** (+1364 additions, -78 deletions) <details> <summary>View changed files</summary> 📝 `.env.example` (+9 -8) 📝 `README.md` (+15 -13) 📝 `backend/cmd/ftester/mocks/tools.go` (+126 -0) 📝 `backend/cmd/ftester/worker/args.go` (+1 -0) 📝 `backend/cmd/ftester/worker/executor.go` (+32 -20) 📝 `backend/cmd/ftester/worker/tester.go` (+2 -0) 📝 `backend/docs/config.md` (+1 -1) 📝 `backend/go.mod` (+1 -1) 📝 `backend/go.sum` (+2 -0) 📝 `backend/pkg/config/config.go` (+1 -1) 📝 `backend/pkg/controller/assistant.go` (+1 -0) 📝 `backend/pkg/controller/flow.go` (+2 -0) 📝 `backend/pkg/graphiti/client.go` (+79 -0) 📝 `backend/pkg/observability/langfuse/api/internal/caller_test.go` (+1 -1) 📝 `backend/pkg/observability/langfuse/api/internal/error_decoder_test.go` (+1 -1) 📝 `backend/pkg/observability/langfuse/api/internal/retrier_test.go` (+1 -1) 📝 `backend/pkg/providers/handlers.go` (+2 -0) 📝 `backend/pkg/providers/performer.go` (+1 -0) 📝 `backend/pkg/providers/provider.go` (+1 -0) 📝 `backend/pkg/providers/providers.go` (+5 -0) _...and 10 more files_ </details> ### 📄 Description <!-- Thank you for your contribution to PentAGI! Please fill out this template completely to help us review your changes effectively. Any PR that does not include enough information may be closed at maintainers' discretion. --> ### Description of the Change <!-- We must be able to understand the design of your change from this description. Please provide as much detail as possible. --> #### Problem <!-- Describe the problem this PR addresses --> #### Solution <!-- Describe your solution and its key aspects --> <!-- Enter any applicable Issue number(s) here that will be closed/resolved by this PR. --> Closes # ### Type of Change <!-- Mark with an `x` all options that apply --> - [ ] 🐛 Bug fix (non-breaking change which fixes an issue) - [ ] 🚀 New feature (non-breaking change which adds functionality) - [ ] 💥 Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 📚 Documentation update - [ ] 🔧 Configuration change - [ ] 🧪 Test update - [ ] 🛡️ Security update ### Areas Affected <!-- Mark with an `x` all components that are affected --> - [ ] Core Services (Frontend UI/Backend API) - [ ] AI Agents (Researcher/Developer/Executor) - [ ] Security Tools Integration - [ ] Memory System (Vector Store/Knowledge Base) - [ ] Monitoring Stack (Grafana/OpenTelemetry) - [ ] Analytics Platform (Langfuse) - [ ] External Integrations (LLM/Search APIs) - [ ] Documentation - [ ] Infrastructure/DevOps ### Testing and Verification <!-- Please describe the tests that you ran to verify your changes and provide instructions so we can reproduce. --> #### Test Configuration ```yaml PentAGI Version: Docker Version: Host OS: LLM Provider: Enabled Features: [Langfuse/Grafana/etc] ``` #### Test Steps 1. 2. 3. #### Test Results <!-- Include relevant screenshots, logs, or test outputs --> ### Security Considerations <!-- Describe any security implications of your changes. For security-related changes, please note any new dependencies, changed permissions, etc. --> ### Performance Impact <!-- Describe any performance implications and testing done to verify acceptable performance. Especially important for changes affecting AI agents, memory systems, or data processing. --> ### Documentation Updates <!-- Note any documentation changes required by this PR --> - [ ] README.md updates - [ ] API documentation updates - [ ] Configuration documentation updates - [ ] GraphQL schema updates - [ ] Other: <!-- specify --> ### Deployment Notes <!-- Describe any special considerations for deploying this change. Include any new environment variables, configuration changes, or migration steps. --> ### Checklist <!--- Go over all the following points, and put an `x` in all the boxes that apply. --> #### Code Quality - [ ] My code follows the project's coding standards - [ ] I have added/updated necessary documentation - [ ] I have added tests to cover my changes - [ ] All new and existing tests pass - [ ] I have run `go fmt` and `go vet` (for Go code) - [ ] I have run `npm run lint` (for TypeScript/JavaScript code) #### Security - [ ] I have considered security implications - [ ] Changes maintain or improve the security model - [ ] Sensitive information has been properly handled #### Compatibility - [ ] Changes are backward compatible - [ ] Breaking changes are clearly marked and documented - [ ] Dependencies are properly updated #### Documentation - [ ] Documentation is clear and complete - [ ] Comments are added for non-obvious code - [ ] API changes are documented ### Additional Notes <!-- Any additional information that would be helpful for reviewers --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-06-06 22:09:25 -04:00
yindo closed this issue 2026-06-06 22:09:25 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: vxcontrol/pentagi#150