Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/cli docs #143

Merged
merged 2 commits into from
Nov 7, 2024
Merged
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
63 changes: 63 additions & 0 deletions trustgraph-cli/scripts/tg-invoke-llm
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
#!/usr/bin/env python3

"""
Invokes the text completion service by specifying an LLM system prompt
and user prompt. Both arguments are required.
"""

import argparse
import os
import json
from trustgraph.clients.llm_client import LlmClient

default_pulsar_host = os.getenv("PULSAR_HOST", 'pulsar://localhost:6650')

def query(pulsar_host, system, prompt):

cli = LlmClient(pulsar_host=pulsar_host)

resp = cli.request(system=system, prompt=prompt)

print(resp)

def main():

parser = argparse.ArgumentParser(
prog='tg-invoke-llm',
description=__doc__,
)

parser.add_argument(
'-p', '--pulsar-host',
default=default_pulsar_host,
help=f'Pulsar host (default: {default_pulsar_host})',
)

parser.add_argument(
'system',
nargs=1,
help='LLM system prompt e.g. You are a helpful assistant',
)

parser.add_argument(
'prompt',
nargs=1,
help='LLM prompt e.g. What is 2 + 2?',
)

args = parser.parse_args()

try:

query(
pulsar_host=args.pulsar_host,
system=args.system[0],
prompt=args.prompt[0],
)

except Exception as e:

print("Exception:", e, flush=True)

main()

13 changes: 9 additions & 4 deletions trustgraph-cli/scripts/tg-invoke-prompt
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
#!/usr/bin/env python3

"""
Uses the GraphRAG service to answer a query
Invokes the LLM prompt service by specifying a prompt identifier and template
terms. The prompt identifier identifies which prompt template to use.
Standard template identifiers are: question, extract-relationship.
The prompt terms specify keyword terms in the template to be replaced, and
provide the values to replace them with.
"""

import argparse
Expand All @@ -25,7 +29,7 @@ def query(pulsar_host, id, terms):
def main():

parser = argparse.ArgumentParser(
prog='tg-graph-query-rag',
prog='tg-invoke-prompt',
description=__doc__,
)

Expand All @@ -38,13 +42,14 @@ def main():
parser.add_argument(
'id',
nargs=1,
help=f'Prompt identifier',
help=f'Prompt identifier e.g. question',
)

parser.add_argument(
'term',
nargs='*',
help=f'Prompt terms',
help='''Prompt template terms of the form key=value, can be specified
multiple times''',
)

args = parser.parse_args()
Expand Down
1 change: 1 addition & 0 deletions trustgraph-cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,6 @@
"scripts/tg-init-pulsar",
"scripts/tg-processor-state",
"scripts/tg-invoke-prompt",
"scripts/tg-invoke-llm",
]
)
Loading