mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-05-02 11:52:37 +02:00
Feature/pkgsplit (#83)
* Starting to spawn base package * More package hacking * Bedrock and VertexAI * Parquet split * Updated templates * Utils
This commit is contained in:
parent
3fb75c617b
commit
9b91d5eee3
262 changed files with 630 additions and 420 deletions
6
trustgraph-flow/scripts/chunker-recursive
Executable file
6
trustgraph-flow/scripts/chunker-recursive
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.chunking.recursive import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/chunker-token
Executable file
6
trustgraph-flow/scripts/chunker-token
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.chunking.token import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/de-query-milvus
Executable file
6
trustgraph-flow/scripts/de-query-milvus
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.query.doc_embeddings.milvus import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/de-query-qdrant
Executable file
6
trustgraph-flow/scripts/de-query-qdrant
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.query.doc_embeddings.qdrant import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/de-write-milvus
Executable file
6
trustgraph-flow/scripts/de-write-milvus
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.storage.doc_embeddings.milvus import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/de-write-qdrant
Executable file
6
trustgraph-flow/scripts/de-write-qdrant
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.storage.doc_embeddings.qdrant import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/document-rag
Executable file
6
trustgraph-flow/scripts/document-rag
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.retrieval.document_rag import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/embeddings-ollama
Executable file
6
trustgraph-flow/scripts/embeddings-ollama
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.embeddings.ollama import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/embeddings-vectorize
Executable file
6
trustgraph-flow/scripts/embeddings-vectorize
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.embeddings.vectorize import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/ge-query-milvus
Executable file
6
trustgraph-flow/scripts/ge-query-milvus
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.query.graph_embeddings.milvus import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/ge-query-qdrant
Executable file
6
trustgraph-flow/scripts/ge-query-qdrant
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.query.graph_embeddings.qdrant import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/ge-write-milvus
Executable file
6
trustgraph-flow/scripts/ge-write-milvus
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.storage.graph_embeddings.milvus import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/ge-write-qdrant
Executable file
6
trustgraph-flow/scripts/ge-write-qdrant
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.storage.graph_embeddings.qdrant import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/graph-rag
Executable file
6
trustgraph-flow/scripts/graph-rag
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.retrieval.graph_rag import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/kg-extract-definitions
Executable file
6
trustgraph-flow/scripts/kg-extract-definitions
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.extract.kg.definitions import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/kg-extract-relationships
Executable file
6
trustgraph-flow/scripts/kg-extract-relationships
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.extract.kg.relationships import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/kg-extract-topics
Executable file
6
trustgraph-flow/scripts/kg-extract-topics
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.extract.kg.topics import run
|
||||
|
||||
run()
|
||||
|
||||
5
trustgraph-flow/scripts/metering
Executable file
5
trustgraph-flow/scripts/metering
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.metering import run
|
||||
|
||||
run()
|
||||
6
trustgraph-flow/scripts/object-extract-row
Executable file
6
trustgraph-flow/scripts/object-extract-row
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.extract.object.row import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/oe-write-milvus
Executable file
6
trustgraph-flow/scripts/oe-write-milvus
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.storage.object_embeddings.milvus import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/pdf-decoder
Executable file
6
trustgraph-flow/scripts/pdf-decoder
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.decoding.pdf import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/prompt-generic
Executable file
6
trustgraph-flow/scripts/prompt-generic
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.model.prompt.generic import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/prompt-template
Executable file
6
trustgraph-flow/scripts/prompt-template
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.model.prompt.template import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/rows-write-cassandra
Executable file
6
trustgraph-flow/scripts/rows-write-cassandra
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.storage.rows.cassandra import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/run-processing
Executable file
6
trustgraph-flow/scripts/run-processing
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.processing import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/text-completion-azure
Executable file
6
trustgraph-flow/scripts/text-completion-azure
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.model.text_completion.azure import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/text-completion-claude
Executable file
6
trustgraph-flow/scripts/text-completion-claude
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.model.text_completion.claude import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/text-completion-cohere
Executable file
6
trustgraph-flow/scripts/text-completion-cohere
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.model.text_completion.cohere import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/text-completion-llamafile
Executable file
6
trustgraph-flow/scripts/text-completion-llamafile
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.model.text_completion.llamafile import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/text-completion-ollama
Executable file
6
trustgraph-flow/scripts/text-completion-ollama
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.model.text_completion.ollama import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/text-completion-openai
Executable file
6
trustgraph-flow/scripts/text-completion-openai
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.model.text_completion.openai import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/triples-query-cassandra
Executable file
6
trustgraph-flow/scripts/triples-query-cassandra
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.query.triples.cassandra import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/triples-query-neo4j
Executable file
6
trustgraph-flow/scripts/triples-query-neo4j
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.query.triples.neo4j import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/triples-write-cassandra
Executable file
6
trustgraph-flow/scripts/triples-write-cassandra
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.storage.triples.cassandra import run
|
||||
|
||||
run()
|
||||
|
||||
6
trustgraph-flow/scripts/triples-write-neo4j
Executable file
6
trustgraph-flow/scripts/triples-write-neo4j
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from trustgraph.storage.triples.neo4j import run
|
||||
|
||||
run()
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue