Squashed 'ai-context/trustgraph-templates/' content from commit 42a5fd1b

git-subtree-dir: ai-context/trustgraph-templates
git-subtree-split: 42a5fd1b678f32be378062e30451e2052ccb95dd
This commit is contained in:
elpresidank 2026-04-05 21:09:49 -05:00
commit 74cc8a4685
1216 changed files with 116347 additions and 0 deletions

View file

@ -0,0 +1,3 @@
FalkorDB is licensed under the [Server Side Public License (SSPLv1)](https://github.com/FalkorDB/FalkorDB/blob/master/LICENSE.txt).
> "The Server Side Public License (SSPLv1) is designed to ensure that if you use FalkorDB as part of a service you make available to others (e.g., in the cloud or as an API), you are required to make the source code of your complete service available under the SSPLv1 license. This is similar to GPL but extends to server use."

View file

@ -0,0 +1,5 @@
To use Pinecone, you need an API token which must be provided in an environment variable. The API token can be created in the Pinecone console of your account.
```
PINECONE_API_KEY=TOKEN-GOES-HERE
```

View file

@ -0,0 +1,7 @@
To use Pinecone, you need an API token which must be provided in a Kubernetes secret.
```bash
kubectl -n {{namespace}} create secret \
generic pinecone-api-key \
--from-literal=pinecone-api-key=PINECONE-API-KEY
```