Updated doc strings

This commit is contained in:
Cyber MacGeddon 2024-07-12 15:12:40 +01:00
parent da94865fb5
commit 3565e5c5a9
8 changed files with 15 additions and 16 deletions

View file

@ -1,7 +1,7 @@
"""
Simple LLM service, performs text prompt completion using an Ollama service.
Input is prompt, output is response.
Embeddings service, applies an embeddings model selected from HuggingFace.
Input is text, output is embeddings vector.
"""
import pulsar

View file

@ -1,7 +1,7 @@
"""
Vectorizer, applies an embedding algorithm to a chunk. Input is a chunk,
output is chunk and vectors.
Vectorizer, calls the embeddings service to get embeddings for a chunk.
Input is text chunk, output is chunk and vectors.
"""
import pulsar

View file

@ -1,7 +1,6 @@
"""
Simple decoder, accepts PDF documents on input, outputs pages from the
PDF document as text as separate output objects.
Graph writer. Input is graph edge. Writes edges to Cassandra graph.
"""
import pulsar

View file

@ -1,7 +1,7 @@
"""
Simple decoder, accepts PDF documents on input, outputs pages from the
PDF document as text as separate output objects.
Simple decoder, accepts vector+text chunks input, applies entity analysis to
get entity definitions which are output as graph edges.
"""
import pulsar

View file

@ -1,7 +1,8 @@
"""
Simple decoder, accepts PDF documents on input, outputs pages from the
PDF document as text as separate output objects.
Simple decoder, accepts vector+text chunks input, applies entity
relationship analysis to get entity relationship edges which are output as
graph edges.
"""
import pulsar

View file

@ -1,7 +1,7 @@
"""
Simple LLM service, performs text prompt completion using an Ollama service.
Input is prompt, output is response.
Simple LLM service, performs text prompt completion using the Azure
serverless endpoint service. Input is prompt, output is response.
"""
import pulsar

View file

@ -1,7 +1,7 @@
"""
Simple LLM service, performs text prompt completion using an Ollama service.
Input is prompt, output is response.
Simple LLM service, performs text prompt completion using VertexAI on
Google Cloud. Input is prompt, output is response.
"""
import pulsar

View file

@ -1,7 +1,6 @@
"""
Simple decoder, accepts PDF documents on input, outputs pages from the
PDF document as text as separate output objects.
Accepts entity/vector pairs and writes them to a Milvus store.
"""
import pulsar