Feature/agent manager (#146)

* Agent schema
* Agent working through client
* Add agent-manager-react command line
* test-agent test script
* Add tg-invoke-agent CLI
This commit is contained in:
cybermaggedon 2024-11-10 11:44:01 +00:00 committed by GitHub
parent 5140f8834d
commit 36cdeab588
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
19 changed files with 968 additions and 3 deletions

View file

@ -5,9 +5,10 @@ from trustgraph.clients.llm_client import LlmClient
llm = LlmClient(pulsar_host="pulsar://localhost:6650")
system = "You are a lovely assistant."
prompt="Write a funny limerick about a llama"
resp = llm.request(prompt)
resp = llm.request(system, prompt)
print(resp)