穹苍233

Results 36 comments of 穹苍233

only happened when I did `go install github.com/yusufcanb/tlm@latest`. It is ok if I download from the github release.

I confirmed the response was out of the shell context. ``` "model": "tlm:1.1-s", "prompt_eval_count": 109, "prompt_eval_duration": 34800000, "response": "The `ls` command is used to list the files in the current...

Sadly, This made me impossible to use this version. As The latest go version is 1.23,it is reasonable to support last two major version, >= go1.21. This project is not...

I can reproduce without pydantic

FYI: if anyone ends up here, the workaround is to use `TypeVar`. ```python from typing import TypeVar, Generic T = TypeVar("BaseModel") class Resp(BaseModel, Generic[T]): ```