5 ms·
My favorite example is the asana loader[0] for llama-index. It's literally just the most basic wrapper around the Asana SDK to concatenate some strings. [0] -
by haxton 3y ago
My favorite example is the asana loader[0] for llama-index. It's literally just the most basic wrapper around the Asana SDK to concatenate some strings.
[0] - https://github.com/emptycrown/llama-hub/blob/main/llama_hub/asana/base.py https://github.com/emptycrown/llama-hub/blob/main/llama_hub/...
- themanmaran 3y agoYea that's langchain in a nutshell. Their postgres wrapper was the same last time I used it was pretty much ``` def queryPostgres(client, string) return client.query(string) ```