Generate all YAML files (#24)

* All templates generated, added missing file

* Up version
This commit is contained in:
cybermaggedon 2024-08-22 21:20:17 +01:00 committed by GitHub
parent 305dda4463
commit a2ae1d8820
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
23 changed files with 1819 additions and 1263 deletions

15
tests/test-llm2 Executable file
View file

@ -0,0 +1,15 @@
#!/usr/bin/env python3
import pulsar
from trustgraph.clients.llm_client import LlmClient
llm = LlmClient(pulsar_host="pulsar://localhost:6650")
prompt="What is 2 + 12?"
try:
resp = llm.request(prompt)
print(resp)
except Exception as e:
print(f"{e.__class__.__name__}: {e}")