Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 4.2.1 on 2025-07-30 09:11
# Generated by Django 4.2.1 on 2025-08-05 10:27

from django.db import migrations, models

Expand All @@ -9,11 +9,20 @@ class Migration(migrations.Migration):
]

operations = [
migrations.AlterField(
model_name="profilemanager",
name="is_summarize_llm",
field=models.BooleanField(
db_comment="DEPRECATED: Default LLM Profile used for summarizing. Use CustomTool.summarize_llm_adapter instead.",
default=False,
),
),
migrations.AlterField(
model_name="profilemanager",
name="retrieval_strategy",
field=models.TextField(
blank=True,
default="simple",
choices=[
("simple", "Simple retrieval"),
("subquestion", "Subquestion retrieval"),
Expand Down

This file was deleted.

3 changes: 3 additions & 0 deletions unstract/prompt-service-helpers/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"""Unstract Prompt Service Helpers - Agentic RAG Implementation"""

__version__ = "0.1.0"
11 changes: 11 additions & 0 deletions unstract/prompt-service-helpers/agentic_extraction/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"""Agentic extraction module for multi-agent data extraction using Autogen GraphFlow.
This module provides RAG-enabled agents for document data extraction.
"""

from .agent_factory import AgentFactory
from .agentic_extraction_task import execute_agentic_extraction

__all__ = [
"execute_agentic_extraction",
"AgentFactory",
]
Loading