Banbury

Results 27 comments of Banbury

I have the same problem. It seems, that the code in the imported query isn't executed at all. If I recreate my query in the project the code works, but...

I have two problems with this: * There is absolute no indication, that the LLM is doing something, not even a wait cursor * If the text generation runs longer...

I have been trying to run Vicuna locally with langchain. It does work more or less, but only for short texts.

This is the code I have been working on. It's simple enough. ``` import chainlit as cl from llama_cpp import Llama from langchain.llms import LlamaCpp from langchain.embeddings import LlamaCppEmbeddings from...

You need to bake the vertex colours into a texture.

I have run into the same problem. I wanted to write a playground for testing guidance. But the use of f-strings means, that the template has to be hardcoded. There...

A template engine is basically a safe `eval()`. So yes, something like that would be needed. Currently I'm using `eval('f' + repr(template))`, which works, but is not safe.