ws-bom-robot-app 0.0.22__py3-none-any.whl → 0.0.23__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,62 @@
1
+ import asyncio
2
+ from ws_bom_robot_app.llm.vector_store.integration.base import IntegrationStrategy, UnstructuredIngest
3
+ from unstructured_ingest.v2.processes.connectors.fsspec.azure import AzureConnectionConfig, AzureAccessConfig, AzureDownloaderConfig, AzureIndexerConfig
4
+ from langchain_core.documents import Document
5
+ from ws_bom_robot_app.llm.vector_store.loader.base import Loader
6
+ from typing import Union, Optional
7
+ from pydantic import BaseModel, Field, AliasChoices
8
+ class AzureParams(BaseModel):
9
+ """
10
+ AzureParams is a model that holds configuration parameters for connecting to Azure services.
11
+
12
+ Attributes:
13
+ remote_url (str): The URL of the remote Azure service, in the form az://<container> or az://<container>/<path> for sub-folders.
14
+ account_name (str): The name of the Azure storage account.
15
+ \nProvide one of the following:
16
+ - account_key (Optional[str]): The key for the Azure storage account. Default is None.
17
+ - connection_string (Optional[str]): The connection string for the Azure storage account. Default is None.
18
+ - sas_token (Optional[str]): The Shared Access Signature token for the Azure storage account. Default is None. Detail: https://learn.microsoft.com/en-us/azure/ai-services/translator/document-translation/how-to-guides/create-sas-tokens?tabs=Containers
19
+ recursive (bool): Indicates whether the operation should be recursive. Default is False.
20
+ extension (list[str]): A list of file extensions to filter the files. Default is None.
21
+ """
22
+ remote_url: str = Field(validation_alias=AliasChoices("remoteUrl","remote_url"))
23
+ account_name: str = Field(validation_alias=AliasChoices("accountName","account_name"))
24
+ account_key: Optional[str] = Field(default=None,validation_alias=AliasChoices("accountKey","account_key"))
25
+ connection_string: Optional[str] = Field(default=None,validation_alias=AliasChoices("connectionString","connection_string"))
26
+ sas_token: Optional[str] = Field(default=None,validation_alias=AliasChoices("sasToken","sas_token"))
27
+ recursive: bool = False
28
+ extension: list[str] = Field(default=None)
29
+ class Azure(IntegrationStrategy):
30
+ def __init__(self, knowledgebase_path: str, data: dict[str, Union[str,int,list]]):
31
+ super().__init__(knowledgebase_path, data)
32
+ self.__data = AzureParams.model_validate(self.data)
33
+ self.__unstructured_ingest = UnstructuredIngest(self.working_directory)
34
+ def working_subdirectory(self) -> str:
35
+ return 'azure'
36
+ def run(self) -> None:
37
+ indexer_config = AzureIndexerConfig(
38
+ remote_url=self.__data.remote_url,
39
+ recursive=self.__data.recursive,
40
+ #sample_n_files=1
41
+ )
42
+ downloader_config = AzureDownloaderConfig(
43
+ download_dir=self.working_directory
44
+ )
45
+ connection_config = AzureConnectionConfig(
46
+ access_config=AzureAccessConfig(
47
+ account_name=self.__data.account_name,
48
+ account_key=self.__data.account_key,
49
+ connection_string=self.__data.connection_string,
50
+ sas_token=self.__data.sas_token
51
+ )
52
+ )
53
+ self.__unstructured_ingest.pipeline(
54
+ indexer_config,
55
+ downloader_config,
56
+ connection_config,
57
+ extension=self.__data.extension).run()
58
+ async def load(self) -> list[Document]:
59
+ await asyncio.to_thread(self.run)
60
+ await asyncio.sleep(1)
61
+ return await Loader(self.working_directory).load()
62
+
@@ -10,7 +10,7 @@ class IntegrationStrategy(ABC):
10
10
  self.knowledgebase_path = knowledgebase_path
11
11
  self.data = data
12
12
  self.working_directory = os.path.join(self.knowledgebase_path,self.working_subdirectory())
13
- os.makedirs(self.working_directory, mode=666, exist_ok=True)
13
+ os.makedirs(self.working_directory, exist_ok=True)
14
14
  @property
15
15
  @abstractmethod
16
16
  def working_subdirectory(self) -> str:
@@ -23,7 +23,7 @@ class IntegrationStrategy(ABC):
23
23
  class UnstructuredIngest():
24
24
  def __init__(self, working_directory: str):
25
25
  self.working_directory = working_directory
26
- def pipeline(self,indexer,downloader,connection) -> Pipeline:
26
+ def pipeline(self,indexer,downloader,connection,extension: list[str] = None) -> Pipeline:
27
27
  return Pipeline.from_configs(
28
28
  context=ProcessorConfig(
29
29
  reprocess=False,
@@ -38,6 +38,6 @@ class UnstructuredIngest():
38
38
  downloader_config=downloader,
39
39
  source_connection_config=connection,
40
40
  partitioner_config=PartitionerConfig(),
41
- filterer_config=FiltererConfig()
41
+ filterer_config=FiltererConfig(file_glob=[f"**/*{ext}" for ext in extension] if extension else None)
42
42
  )
43
43
 
@@ -7,10 +7,21 @@ from typing import Union
7
7
  from pydantic import BaseModel, Field, AliasChoices
8
8
 
9
9
  class ConfluenceParams(BaseModel):
10
+ """
11
+ ConfluenceParams is a data model for storing Confluence integration parameters.
12
+
13
+ Attributes:
14
+ url (str): The URL of the Confluence instance, e.g., 'https://example.atlassian.net'.
15
+ access_token (str): The access token for authenticating with Confluence, e.g., 'AT....'
16
+ user_email (str): The email address of the Confluence user
17
+ spaces (list[str]): A list of Confluence spaces to interact with, e.g., ['SPACE1', 'SPACE2'].
18
+ extension (list[str], optional): A list of file extensions to filter by. Defaults to None, e.g., ['.pdf', '.docx'].
19
+ """
10
20
  url: str
11
21
  access_token: str = Field(validation_alias=AliasChoices("accessToken","access_token"))
12
22
  user_email: str = Field(validation_alias=AliasChoices("userEmail","user_email"))
13
23
  spaces: list[str] = []
24
+ extension: list[str] = Field(default=None)
14
25
  class Confluence(IntegrationStrategy):
15
26
  def __init__(self, knowledgebase_path: str, data: dict[str, Union[str,int,list]]):
16
27
  super().__init__(knowledgebase_path, data)
@@ -33,7 +44,8 @@ class Confluence(IntegrationStrategy):
33
44
  self.__unstructured_ingest.pipeline(
34
45
  indexer_config,
35
46
  downloader_config,
36
- connection_config).run()
47
+ connection_config,
48
+ extension=self.__data.extension).run()
37
49
  async def load(self) -> list[Document]:
38
50
  await asyncio.to_thread(self.run)
39
51
  await asyncio.sleep(1)
@@ -0,0 +1,53 @@
1
+ import asyncio
2
+ from ws_bom_robot_app.llm.vector_store.integration.base import IntegrationStrategy, UnstructuredIngest
3
+ from unstructured_ingest.v2.processes.connectors.fsspec.dropbox import DropboxConnectionConfig, DropboxAccessConfig, DropboxDownloaderConfig, DropboxIndexerConfig
4
+ from langchain_core.documents import Document
5
+ from ws_bom_robot_app.llm.vector_store.loader.base import Loader
6
+ from typing import Union
7
+ from pydantic import BaseModel, Field, AliasChoices
8
+ class DropboxParams(BaseModel):
9
+ """
10
+ DropboxParams is a model for storing parameters required to interact with Dropbox.
11
+
12
+ Attributes:
13
+ remote_url (str): The URL of the remote Dropbox location, e.g. 'dropbox://demo-directory' or 'dropbox://demo-directory/sub-directory'.
14
+ token (str): The authentication token for accessing Dropbox.
15
+ create app: https://www.dropbox.com/developers, with file.content.read permission, and generate token.
16
+ recursive (bool, optional): A flag indicating whether to search directories recursively. Defaults to False.
17
+ extension (list[str], optional): A list of file extensions to filter by. Defaults to None, e.g. ['.pdf', '.docx'].
18
+ """
19
+ remote_url: str = Field(validation_alias=AliasChoices("remoteUrl","remote_url"))
20
+ token: str
21
+ recursive: bool = False
22
+ extension: list[str] = Field(default=None)
23
+ class Dropbox(IntegrationStrategy):
24
+ def __init__(self, knowledgebase_path: str, data: dict[str, Union[str,int,list]]):
25
+ super().__init__(knowledgebase_path, data)
26
+ self.__data = DropboxParams.model_validate(self.data)
27
+ self.__unstructured_ingest = UnstructuredIngest(self.working_directory)
28
+ def working_subdirectory(self) -> str:
29
+ return 'dropbox'
30
+ def run(self) -> None:
31
+ indexer_config = DropboxIndexerConfig(
32
+ remote_url=self.__data.remote_url,
33
+ recursive=self.__data.recursive,
34
+ #sample_n_files=1
35
+ )
36
+ downloader_config = DropboxDownloaderConfig(
37
+ download_dir=self.working_directory
38
+ )
39
+ connection_config = DropboxConnectionConfig(
40
+ access_config=DropboxAccessConfig(
41
+ token=self.__data.token
42
+ )
43
+ )
44
+ self.__unstructured_ingest.pipeline(
45
+ indexer_config,
46
+ downloader_config,
47
+ connection_config,
48
+ extension=self.__data.extension).run()
49
+ async def load(self) -> list[Document]:
50
+ await asyncio.to_thread(self.run)
51
+ await asyncio.sleep(1)
52
+ return await Loader(self.working_directory).load()
53
+
@@ -0,0 +1,62 @@
1
+ import asyncio
2
+ from ws_bom_robot_app.llm.vector_store.integration.base import IntegrationStrategy, UnstructuredIngest
3
+ from unstructured_ingest.v2.processes.connectors.fsspec.gcs import GcsIndexerConfig, GcsConnectionConfig, GcsAccessConfig, GcsDownloaderConfig
4
+ from langchain_core.documents import Document
5
+ from ws_bom_robot_app.llm.vector_store.loader.base import Loader
6
+ from typing import Union, Optional
7
+ from pydantic import BaseModel, Field, AliasChoices
8
+ class GcsParams(BaseModel):
9
+ """
10
+ GcsParams is a model that defines the parameters required for Google Cloud Storage (GCS) integration.
11
+ Documentation:
12
+ - create service account: https://cloud.google.com/iam/docs/service-accounts-create?hl=en#console
13
+ - create key: https://cloud.google.com/iam/docs/keys-create-delete?hl=en#creating
14
+ - export key in a single line\n
15
+ ```pwsh
16
+ (Get-Content -Path "<path-to-downloaded-key-file>" -Raw).Replace("`r`n", "").Replace("`n", "")
17
+ ```
18
+ - create bucket with 'Storage Object Viewer' permission: https://cloud.google.com/storage/docs/creating-buckets?hl=en#console
19
+ - add principal to bucket: https://cloud.google.com/storage/docs/access-control/using-iam-permissions?hl=en#console
20
+ - manage IAM policies: https://cloud.google.com/storage/docs/access-control/using-iam-permissions?hl=en
21
+
22
+ Attributes:
23
+ remote_url (str): The URL of the remote GCS bucket, e.g. 'gcs://demo-bucket' or 'gcs://demo-bucket/sub-directory'.
24
+ service_account_key (str): The service account key for accessing the GCS bucket.
25
+ recursive (bool): A flag indicating whether to recursively access the GCS bucket. Defaults to False.
26
+ extension (list[str]): A list of file extensions to filter the files in the GCS bucket. Defaults to None.
27
+ """
28
+ remote_url: str = Field(validation_alias=AliasChoices("remoteUrl","remote_url"))
29
+ service_account_key: str = Field(validation_alias=AliasChoices("serviceAccountKey","service_account_key"))
30
+ recursive: bool = False
31
+ extension: list[str] = Field(default=None)
32
+ class Gcs(IntegrationStrategy):
33
+ def __init__(self, knowledgebase_path: str, data: dict[str, Union[str,int,list]]):
34
+ super().__init__(knowledgebase_path, data)
35
+ self.__data = GcsParams.model_validate(self.data)
36
+ self.__unstructured_ingest = UnstructuredIngest(self.working_directory)
37
+ def working_subdirectory(self) -> str:
38
+ return 'gcs'
39
+ def run(self) -> None:
40
+ indexer_config = GcsIndexerConfig(
41
+ remote_url=self.__data.remote_url,
42
+ recursive=self.__data.recursive,
43
+ #sample_n_files=1
44
+ )
45
+ downloader_config = GcsDownloaderConfig(
46
+ download_dir=self.working_directory
47
+ )
48
+ connection_config = GcsConnectionConfig(
49
+ access_config=GcsAccessConfig(
50
+ service_account_key=self.__data.service_account_key
51
+ )
52
+ )
53
+ self.__unstructured_ingest.pipeline(
54
+ indexer_config,
55
+ downloader_config,
56
+ connection_config,
57
+ extension=self.__data.extension).run()
58
+ async def load(self) -> list[Document]:
59
+ await asyncio.to_thread(self.run)
60
+ await asyncio.sleep(1)
61
+ return await Loader(self.working_directory).load()
62
+
@@ -10,6 +10,15 @@ from ws_bom_robot_app.llm.vector_store.loader.base import Loader
10
10
  from pydantic import BaseModel, Field, AliasChoices
11
11
 
12
12
  class GithubParams(BaseModel):
13
+ """
14
+ GithubParams is a model for storing parameters required to interact with a GitHub repository.
15
+
16
+ Attributes:
17
+ repo (str): The name of the GitHub repository, e.g., 'companyname/reponame'
18
+ access_token (Optional[str]): The access token for authenticating with GitHub, e.g., 'ghp_1234567890'.
19
+ branch (Optional[str]): The branch of the repository to interact with. Defaults to 'main'.
20
+ file_ext (Optional[list[str]]): A list of file extensions to filter by, e.g. ['.md', '.pdf']. Defaults to an empty list.
21
+ """
13
22
  repo: str
14
23
  access_token: Optional[str] | None = Field(None,validation_alias=AliasChoices("accessToken","access_token"))
15
24
  branch: Optional[str] = 'main'
@@ -0,0 +1,69 @@
1
+ import asyncio
2
+ from ws_bom_robot_app.llm.vector_store.integration.base import IntegrationStrategy, UnstructuredIngest
3
+ from unstructured_ingest.v2.processes.connectors.google_drive import GoogleDriveConnectionConfig, GoogleDriveDownloaderConfig, GoogleDriveIndexerConfig, GoogleDriveAccessConfig
4
+ from langchain_core.documents import Document
5
+ from ws_bom_robot_app.llm.vector_store.loader.base import Loader
6
+ from typing import Union
7
+ from pydantic import BaseModel, Field, AliasChoices
8
+ class GoogleDriveParams(BaseModel):
9
+ """
10
+ GoogleDriveParams is a model that holds parameters for Google Drive integration.
11
+
12
+ Attributes:
13
+ service_account_key (dict): The service account key for Google Drive API authentication \n
14
+ - detail: https://developers.google.com/workspace/guides/create-credentials#service-accountc \n
15
+ - create a service account key, download the JSON file, and pass the content of the JSON file as a dictionary \n
16
+ - e.g., {
17
+ "type": "service_account",
18
+ "project_id": "demo-project-123456",
19
+ "private_key_id": "**********",
20
+ "private_key": "-----BEGIN PRIVATE KEY-----...----END PRIVATE KEY-----",
21
+ "client_email": "demo-client@demo-project-123456.iam.gserviceaccount.com",
22
+ "client_id": "123456",
23
+ "auth_uri": "https://accounts.google.com/o/oauth2/auth",
24
+ "token_uri": "https://oauth2.googleapis.com/token",
25
+ "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
26
+ "client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/demo-client%40demo-project-123456.iam.gserviceaccount.com",
27
+ "universe_domain": "googleapis.com"
28
+ }
29
+ - enable Google Drive API: https://console.cloud.google.com/marketplace/product/google/drive.googleapis.com
30
+ - copy email address of the service account and share the Google Drive with the email address: https://www.youtube.com/watch?v=ykJQzEe_2dM&t=2s
31
+
32
+ drive_id (str): The {folder_id} of the Google Drive to interact with, e.g., https://drive.google.com/drive/folders/{folder_id}
33
+ extensions (list[str]): A list of file extensions to filter the files in the Google Drive, e.g., ['.pdf', '.docx'].
34
+ recursive (bool): A flag indicating whether to search files recursively in the Google Drive.
35
+ """
36
+ service_account_key: dict = Field(validation_alias=AliasChoices("serviceAccountKey","service_account_key"))
37
+ drive_id: str = Field(validation_alias=AliasChoices("driveId","drive_id"))
38
+ extensions: list[str] = []
39
+ recursive: bool = False
40
+ class GoogleDrive(IntegrationStrategy):
41
+ def __init__(self, knowledgebase_path: str, data: dict[str, Union[str,int,list]]):
42
+ super().__init__(knowledgebase_path, data)
43
+ self.__data = GoogleDriveParams.model_validate(self.data)
44
+ self.__unstructured_ingest = UnstructuredIngest(self.working_directory)
45
+ def working_subdirectory(self) -> str:
46
+ return 'googledrive'
47
+ def run(self) -> None:
48
+ indexer_config = GoogleDriveIndexerConfig(
49
+ extensions=self.__data.extensions,
50
+ recursive=self.__data.recursive
51
+ )
52
+ downloader_config = GoogleDriveDownloaderConfig(
53
+ download_dir=self.working_directory
54
+ )
55
+ connection_config = GoogleDriveConnectionConfig(
56
+ access_config=GoogleDriveAccessConfig(
57
+ service_account_key=self.__data.service_account_key
58
+ ),
59
+ drive_id=self.__data.drive_id
60
+ )
61
+ self.__unstructured_ingest.pipeline(
62
+ indexer_config,
63
+ downloader_config,
64
+ connection_config).run()
65
+ async def load(self) -> list[Document]:
66
+ await asyncio.to_thread(self.run)
67
+ await asyncio.sleep(1)
68
+ return await Loader(self.working_directory).load()
69
+
@@ -9,6 +9,17 @@ from pydantic import BaseModel, Field, AliasChoices
9
9
  from typing import Optional, Union
10
10
 
11
11
  class JiraParams(BaseModel):
12
+ """
13
+ JiraParams is a Pydantic model that represents the parameters required to interact with a Jira instance.
14
+
15
+ Attributes:
16
+ url (str): The URL of the Jira instance, e.g., 'https://example.atlassian.net'.
17
+ access_token (str): The access token for authenticating with the Jira API.
18
+ user_email (str): The email address of the Jira user.
19
+ projects (list[str]): A list of project keys or IDs to interact with, e.g., ['SCRUM', 'PROJ1'].
20
+ boards (Optional[list[str]]): An optional list of board IDs to interact with. Defaults to None, e.g., ['1', '2'].
21
+ issues (Optional[list[str]]): An optional list of issue keys or IDs to interact with. Defaults to None, e.g., ['SCRUM-1', 'PROJ1-1'].
22
+ """
12
23
  url: str
13
24
  access_token: str = Field(validation_alias=AliasChoices("accessToken","access_token"))
14
25
  user_email: str = Field(validation_alias=AliasChoices("userEmail","user_email"))
@@ -1,16 +1,31 @@
1
1
  from typing import Type
2
+ from ws_bom_robot_app.llm.vector_store.integration.azure import Azure
2
3
  from ws_bom_robot_app.llm.vector_store.integration.base import IntegrationStrategy
3
4
  from ws_bom_robot_app.llm.vector_store.integration.confluence import Confluence
5
+ from ws_bom_robot_app.llm.vector_store.integration.dropbox import Dropbox
6
+ from ws_bom_robot_app.llm.vector_store.integration.gcs import Gcs
4
7
  from ws_bom_robot_app.llm.vector_store.integration.github import Github
8
+ from ws_bom_robot_app.llm.vector_store.integration.googledrive import GoogleDrive
5
9
  from ws_bom_robot_app.llm.vector_store.integration.jira import Jira
10
+ from ws_bom_robot_app.llm.vector_store.integration.s3 import S3
11
+ from ws_bom_robot_app.llm.vector_store.integration.sftp import Sftp
6
12
  from ws_bom_robot_app.llm.vector_store.integration.sitemap import Sitemap
13
+ from ws_bom_robot_app.llm.vector_store.integration.slack import Slack
7
14
 
8
15
  class IntegrationManager:
9
16
  _list: dict[str, Type[IntegrationStrategy]] = {
10
- "llmkbsitemap": Sitemap,
17
+ "llmkbazure": Azure,
18
+ "llmkbconfluence": Confluence,
19
+ "llmkbdropbox": Dropbox,
11
20
  "llmkbgithub": Github,
21
+ "llmkbgcs": Gcs,
22
+ "llmkbgoogledrive": GoogleDrive,
12
23
  "llmkbjira": Jira,
13
- "llmkbconfluence": Confluence,
24
+ "llmkbs3": S3,
25
+ "llmkbsftp": Sftp,
26
+ "llmkbsitemap": Sitemap,
27
+ "llmkbslack": Slack,
28
+
14
29
  }
15
30
  @classmethod
16
31
  def get_strategy(cls, name: str, knowledgebase_path: str, data: dict[str, str]) -> IntegrationStrategy:
@@ -0,0 +1,64 @@
1
+ import asyncio
2
+ from ws_bom_robot_app.llm.vector_store.integration.base import IntegrationStrategy, UnstructuredIngest
3
+ from unstructured_ingest.v2.processes.connectors.fsspec.s3 import S3ConnectionConfig, S3AccessConfig, S3DownloaderConfig, S3IndexerConfig
4
+ from langchain_core.documents import Document
5
+ from ws_bom_robot_app.llm.vector_store.loader.base import Loader
6
+ from typing import Union, Optional
7
+ from pydantic import BaseModel, Field, AliasChoices
8
+ class S3Params(BaseModel):
9
+ """
10
+ S3Params is a data model for storing parameters required to interact with an S3 bucket.
11
+ Documentation:
12
+ - ceate S3 bucket: https://docs.aws.amazon.com/AmazonS3/latest/userguide/GetStartedWithS3.html#creating-bucket
13
+ - enable authenticated bucket access: https://docs.aws.amazon.com/AmazonS3/latest/userguide/walkthrough1.html
14
+ - set policies s3:ListBucket and s3:GetObject: https://docs.aws.amazon.com/AmazonS3/latest/userguide/example-policies-s3.html
15
+ - generate key/secret: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html#Using_CreateAccessKey
16
+ - optionally create STS token: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#api_getsessiontoken
17
+
18
+ Attributes:
19
+ remote_url (str): The URL of the remote S3 bucket, e.g., 's3://demo-bucket' or 's3://demo-bucket/sub-directory'.
20
+ key (Optional[str]): The AWS access key ID for the authenticated AWS IAM user, e.g., 'AKIAIOSFODNN7EXAMPLE'.
21
+ secret (Optional[str]): The corresponding AWS secret access key, e.g., 'wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY'.
22
+ token (Optional[str]): If required, the AWS STS session token for temporary access. Default is None.
23
+ recursive (bool): A flag indicating whether to perform operations recursively. Default is False.
24
+ extension (list[str]): A list of file extensions to filter the files. Default is None. e.g., ['.pdf', '.docx'].
25
+ """
26
+ remote_url: str = Field(validation_alias=AliasChoices("remoteUrl","remote_url"))
27
+ key: str
28
+ secret: str
29
+ token: Optional[str] = None
30
+ recursive: bool = False
31
+ extension: list[str] = Field(default=None)
32
+ class S3(IntegrationStrategy):
33
+ def __init__(self, knowledgebase_path: str, data: dict[str, Union[str,int,list]]):
34
+ super().__init__(knowledgebase_path, data)
35
+ self.__data = S3Params.model_validate(self.data)
36
+ self.__unstructured_ingest = UnstructuredIngest(self.working_directory)
37
+ def working_subdirectory(self) -> str:
38
+ return 's3'
39
+ def run(self) -> None:
40
+ indexer_config = S3IndexerConfig(
41
+ remote_url=self.__data.remote_url,
42
+ recursive=self.__data.recursive,
43
+ #sample_n_files=1
44
+ )
45
+ downloader_config = S3DownloaderConfig(
46
+ download_dir=self.working_directory
47
+ )
48
+ connection_config = S3ConnectionConfig(
49
+ access_config=S3AccessConfig(
50
+ key=self.__data.key,
51
+ secret=self.__data.secret,
52
+ token=self.__data.token
53
+ )
54
+ )
55
+ self.__unstructured_ingest.pipeline(
56
+ indexer_config,
57
+ downloader_config,
58
+ connection_config,
59
+ extension=self.__data.extension).run()
60
+ async def load(self) -> list[Document]:
61
+ await asyncio.to_thread(self.run)
62
+ await asyncio.sleep(1)
63
+ return await Loader(self.working_directory).load()
64
+
@@ -0,0 +1,64 @@
1
+ import asyncio
2
+ from ws_bom_robot_app.llm.vector_store.integration.base import IntegrationStrategy, UnstructuredIngest
3
+ from unstructured_ingest.v2.processes.connectors.fsspec.sftp import SftpConnectionConfig, SftpAccessConfig, SftpDownloaderConfig, SftpIndexerConfig
4
+ from langchain_core.documents import Document
5
+ from ws_bom_robot_app.llm.vector_store.loader.base import Loader
6
+ from typing import Union, Optional
7
+ from pydantic import BaseModel, Field, AliasChoices
8
+ class SftpParams(BaseModel):
9
+ """
10
+ SftpParams is a model that defines the parameters required for SFTP integration.
11
+
12
+ Attributes:
13
+ remote_url (str): The URL of the remote SFTP server, e.g. 'sftp://example.com' or 'sftp://example.com/directory'.
14
+ host (Optional[str]): The hostname or IP address of the SFTP server. Defaults to None and inferred from remote_url
15
+ port (Optional[int]): The port number to connect to on the SFTP server. Defaults to 22.
16
+ username (str): The username to authenticate with the SFTP server.
17
+ password (str): The password to authenticate with the SFTP server.
18
+ recursive (bool): Whether to perform recursive operations. Defaults to False.
19
+ extension (list[str]): A list of file extensions to filter by. Defaults to None, e.g. ['.pdf', '.docx'].
20
+ """
21
+ remote_url: str = Field(validation_alias=AliasChoices("remoteUrl","remote_url"))
22
+ host: Optional[str] = None
23
+ port: Optional[int] = 22
24
+ username: str
25
+ password: str
26
+ recursive: bool = False
27
+ extension: list[str] = Field(default=None)
28
+ class Sftp(IntegrationStrategy):
29
+ def __init__(self, knowledgebase_path: str, data: dict[str, Union[str,int,list]]):
30
+ super().__init__(knowledgebase_path, data)
31
+ self.__data = SftpParams.model_validate(self.data)
32
+ self.__unstructured_ingest = UnstructuredIngest(self.working_directory)
33
+ def working_subdirectory(self) -> str:
34
+ return 'sftp'
35
+ def run(self) -> None:
36
+ indexer_config = SftpIndexerConfig(
37
+ remote_url=self.__data.remote_url,
38
+ recursive=self.__data.recursive,
39
+ #sample_n_files=1
40
+ )
41
+ downloader_config = SftpDownloaderConfig(
42
+ download_dir=self.working_directory,
43
+ remote_url=self.__data.remote_url
44
+ )
45
+ connection_config = SftpConnectionConfig(
46
+ access_config=SftpAccessConfig(
47
+ password=self.__data.password
48
+ ),
49
+ username=self.__data.username,
50
+ host=self.__data.host,
51
+ port=self.__data.port,
52
+ look_for_keys=False,
53
+ allow_agent=False
54
+ )
55
+ self.__unstructured_ingest.pipeline(
56
+ indexer_config,
57
+ downloader_config,
58
+ connection_config,
59
+ extension=self.__data.extension).run()
60
+ async def load(self) -> list[Document]:
61
+ await asyncio.to_thread(self.run)
62
+ await asyncio.sleep(1)
63
+ return await Loader(self.working_directory).load()
64
+
@@ -0,0 +1,57 @@
1
+ import asyncio
2
+ from ws_bom_robot_app.llm.vector_store.integration.base import IntegrationStrategy, UnstructuredIngest
3
+ from unstructured_ingest.v2.processes.connectors.slack import SlackIndexerConfig, SlackDownloaderConfig, SlackConnectionConfig, SlackAccessConfig
4
+ from langchain_core.documents import Document
5
+ from ws_bom_robot_app.llm.vector_store.loader.base import Loader
6
+ from typing import Union
7
+ from pydantic import BaseModel, Field, AliasChoices
8
+ from datetime import datetime, timedelta
9
+
10
+ class SlackParams(BaseModel):
11
+ """
12
+ SlackParams is a data model for storing Slack integration parameters.
13
+ Documentation:
14
+ - create slack app: https://api.slack.com/quickstart#creating
15
+ - set channels:history scope: https://api.slack.com/quickstart#scopes
16
+ - installing app/get token: https://api.slack.com/quickstart#installing
17
+ - add app to channel/s
18
+
19
+ Attributes:
20
+ token (str): The authentication token for accessing the Slack API.
21
+ channels (list[str]): A list of Slack channel IDs, e.g. ['C01B2PZQX1V'].
22
+ num_days (int, optional): The number of days to retrieve messages from. Defaults to 7.
23
+ extension (list[str], optional): A list of file extensions to filter messages by, e.g. [".xml"]. Defaults to None.
24
+ """
25
+ token: str
26
+ channels: list[str]
27
+ num_days: int = Field(default=7,validation_alias=AliasChoices("numDays","num_days"))
28
+ extension: list[str] = Field(default=None)
29
+ class Slack(IntegrationStrategy):
30
+ def __init__(self, knowledgebase_path: str, data: dict[str, Union[str,int,list]]):
31
+ super().__init__(knowledgebase_path, data)
32
+ self.__data = SlackParams.model_validate(self.data)
33
+ self.__unstructured_ingest = UnstructuredIngest(self.working_directory)
34
+ def working_subdirectory(self) -> str:
35
+ return 'slack'
36
+ def run(self) -> None:
37
+ indexer_config = SlackIndexerConfig(
38
+ channels=self.__data.channels,
39
+ start_date=datetime.now() - timedelta(days=self.__data.num_days),
40
+ end_date=datetime.now()
41
+ )
42
+ downloader_config = SlackDownloaderConfig(
43
+ download_dir=self.working_directory
44
+ )
45
+ connection_config = SlackConnectionConfig(
46
+ access_config=SlackAccessConfig(token=self.__data.token)
47
+ )
48
+ self.__unstructured_ingest.pipeline(
49
+ indexer_config,
50
+ downloader_config,
51
+ connection_config,
52
+ extension=self.__data.extension).run()
53
+ async def load(self) -> list[Document]:
54
+ await asyncio.to_thread(self.run)
55
+ await asyncio.sleep(1)
56
+ return await Loader(self.working_directory).load()
57
+
@@ -170,7 +170,7 @@ class TaskManagerStrategy(ABC):
170
170
  pass
171
171
 
172
172
  def task_cleanup_rule(self, task: TaskEntry) -> bool:
173
- return task.status.status in {"completed", "failure"} and datetime.fromisoformat(task.status.metadata.end_at) < datetime.now() - timedelta(days=config.robot_task_retention_days)
173
+ return task.status.metadata.start_at and datetime.fromisoformat(task.status.metadata.start_at) < datetime.now() - timedelta(days=config.robot_task_retention_days)
174
174
 
175
175
  def task_done_callback(self, task_entry: TaskEntry, headers: TaskHeader | None = None) -> Callable:
176
176
  def callback(task: asyncio.Task):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ws_bom_robot_app
3
- Version: 0.0.22
3
+ Version: 0.0.23
4
4
  Summary: A FastAPI application serving ws bom/robot/llm platform ai.
5
5
  Home-page: https://github.com/websolutespa/bom
6
6
  Author: Websolute Spa
@@ -26,9 +26,16 @@ Requires-Dist: opencv-python-headless==4.10.0.84
26
26
  Requires-Dist: unstructured[all-docs]==0.16.11
27
27
  Requires-Dist: langchain_unstructured==0.1.5
28
28
  Requires-Dist: unstructured-ingest==0.3.8
29
+ Requires-Dist: unstructured-ingest[azure]
29
30
  Requires-Dist: unstructured-ingest[confluence]
31
+ Requires-Dist: unstructured-ingest[dropbox]
32
+ Requires-Dist: unstructured-ingest[gcs]
33
+ Requires-Dist: unstructured-ingest[google_drive]
30
34
  Requires-Dist: unstructured-ingest[github]
31
35
  Requires-Dist: unstructured-ingest[jira]
36
+ Requires-Dist: unstructured-ingest[s3]
37
+ Requires-Dist: unstructured-ingest[slack]
38
+ Requires-Dist: unstructured-ingest[sftp]
32
39
  Requires-Dist: html5lib==1.1
33
40
  Requires-Dist: markdownify==0.14.1
34
41
  Requires-Dist: nebuly==0.3.33
@@ -3,7 +3,7 @@ ws_bom_robot_app/auth.py,sha256=84nIbmJsMrNs0sxIQGEHbjsjc2P6ZrZZGSn8dkiL6is,895
3
3
  ws_bom_robot_app/config.py,sha256=V5ZrX_JnzpsN32hTTezTfOvEZYkIQBy0lxIQ9JFHdFE,3170
4
4
  ws_bom_robot_app/cron_manager.py,sha256=0Yt5AMTPGlXZ_M5ck0SKMX8wvzoPsseEezg_s0Q3HKY,9224
5
5
  ws_bom_robot_app/main.py,sha256=vChP8vfmOCbs51TPUsaaxX8FvoFXuURMkOgmgx0Xi_4,6121
6
- ws_bom_robot_app/task_manager.py,sha256=tuqyVJ52KFE9kVjVbrFrjuUKXIxtEBCOV-BLmYCzaMo,15973
6
+ ws_bom_robot_app/task_manager.py,sha256=Zedzs2R3O-wNSQOqs4jorgFwPRi-ji_0TN4mGfk-VvE,15958
7
7
  ws_bom_robot_app/util.py,sha256=b49ItlZgh2Wzw-6K8k5Wa44eVgjQ0JmWQwJnEaQBVGw,3502
8
8
  ws_bom_robot_app/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  ws_bom_robot_app/llm/agent_description.py,sha256=SDJYMmwfdMxEK3a_HDEQ19bfNKmwMSFf5hqU0VSCCIE,4705
@@ -33,16 +33,23 @@ ws_bom_robot_app/llm/utils/webhooks.py,sha256=LAAZqyN6VhV13wu4X-X85TwdDgAV2rNvIw
33
33
  ws_bom_robot_app/llm/vector_store/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
34
  ws_bom_robot_app/llm/vector_store/generator.py,sha256=aVUG08rcsDvtVxfYfUalO1CbKGkLazNyP555IsQQZso,5975
35
35
  ws_bom_robot_app/llm/vector_store/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
- ws_bom_robot_app/llm/vector_store/integration/base.py,sha256=dUXvibkKjnCdpNO-KrWD1Gvfw4SNdh-ujwkWRVer-dA,1464
37
- ws_bom_robot_app/llm/vector_store/integration/confluence.py,sha256=EI_ZwBvSP0eWUPeimxMxnZRIISnbWkKpIDITBXn2bsI,1837
38
- ws_bom_robot_app/llm/vector_store/integration/github.py,sha256=g_uSG5YNgiXdvLutCA8GAPuX3Y41JZGH8Fj5Jm5gCg0,2124
39
- ws_bom_robot_app/llm/vector_store/integration/jira.py,sha256=FNhl_TRCltyFpD9EA9my5g-aUt6m2_ylqy34i6fGvZA,2049
40
- ws_bom_robot_app/llm/vector_store/integration/manager.py,sha256=YDQOgwMQxdRrVXIG3b0D6fHd1vGwQmgbAwigtWeeHW0,894
36
+ ws_bom_robot_app/llm/vector_store/integration/azure.py,sha256=R37TaPQP-HJJJiaKE9rmMc9kpeXeRvdebbTY_982om0,3392
37
+ ws_bom_robot_app/llm/vector_store/integration/base.py,sha256=IvIu8RkISuurrVKr2YPG96fsOI2kqhaEGyTGzjB-jCI,1550
38
+ ws_bom_robot_app/llm/vector_store/integration/confluence.py,sha256=4fiRHB3J-SHZZxNGHwVkCrT-xSPbc91z4WrDE9fy6xU,2505
39
+ ws_bom_robot_app/llm/vector_store/integration/dropbox.py,sha256=Am0jfh54OFUTQihqmkwgKIkcEmjehDh_0NQzBuxTdGY,2481
40
+ ws_bom_robot_app/llm/vector_store/integration/gcs.py,sha256=fFDVDUR6eNB7FVTzDSEpMHFEWMgG16GLnpSf_mqGDdE,3184
41
+ ws_bom_robot_app/llm/vector_store/integration/github.py,sha256=18PO30AZcgTn6PHhid3MwImVAdmKBNkr0kmAPgOetGw,2663
42
+ ws_bom_robot_app/llm/vector_store/integration/googledrive.py,sha256=R6hr8iEgrR3QMOzIj5jY6w1x8pZ1LGdh4xM_q7g_ttc,3738
43
+ ws_bom_robot_app/llm/vector_store/integration/jira.py,sha256=o5iINIblp_yNszp54nf7fW97aqjs0A5G89N8sYrd1ds,2771
44
+ ws_bom_robot_app/llm/vector_store/integration/manager.py,sha256=_aNiy3w_fnWOwaGkp_X_hDNstnPbxtCuojikBzRSArE,1583
45
+ ws_bom_robot_app/llm/vector_store/integration/s3.py,sha256=3kh-VmH84IW7DdSLvOk6td1VBJ9aohlVJsk5F3cYj0U,3320
46
+ ws_bom_robot_app/llm/vector_store/integration/sftp.py,sha256=WNzjjS1EUykgFB-8e7QkecSa1r1jTJqKyGzR25uJCtM,2848
41
47
  ws_bom_robot_app/llm/vector_store/integration/sitemap.py,sha256=nPbIywp-ZwWbWStvjvYVgHqqejyYFr8eZhBc8ycTuaU,4206
48
+ ws_bom_robot_app/llm/vector_store/integration/slack.py,sha256=FMjESXm2QetFXI6i8epze7Kbbu22fV8CVaxb71AHnJ8,2572
42
49
  ws_bom_robot_app/llm/vector_store/loader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
50
  ws_bom_robot_app/llm/vector_store/loader/base.py,sha256=ZvcyUPOoQ44gyfl80Jf0y9vbcj8uTUb-lYkb_m2pt1I,5137
44
51
  ws_bom_robot_app/llm/vector_store/loader/json_loader.py,sha256=qo9ejRZyKv_k6jnGgXnu1W5uqsMMtgqK_uvPpZQ0p74,833
45
- ws_bom_robot_app-0.0.22.dist-info/METADATA,sha256=q-ObaxLd_n38aXwFmB6I1sxqzK76AP9vT0v_q6FOChc,6848
46
- ws_bom_robot_app-0.0.22.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
47
- ws_bom_robot_app-0.0.22.dist-info/top_level.txt,sha256=Yl0akyHVbynsBX_N7wx3H3ZTkcMLjYyLJs5zBMDAKcM,17
48
- ws_bom_robot_app-0.0.22.dist-info/RECORD,,
52
+ ws_bom_robot_app-0.0.23.dist-info/METADATA,sha256=tWzTgX6aPIvqV-chg-GyxPQCogt14pzEPKM3DJLR0yw,7152
53
+ ws_bom_robot_app-0.0.23.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
54
+ ws_bom_robot_app-0.0.23.dist-info/top_level.txt,sha256=Yl0akyHVbynsBX_N7wx3H3ZTkcMLjYyLJs5zBMDAKcM,17
55
+ ws_bom_robot_app-0.0.23.dist-info/RECORD,,