FergusFettes
FergusFettes
Steps to reproduce: test_tmux.py ``` import libtmux import pytest @pytest.fixture def server(): server = libtmux.Server() return server def test_can_start_tmux_session(server): server.new_session("test") assert server.has_session("test") server.kill_session("test") ``` Dockerfile: ``` FROM ubuntu:18.04 RUN apt-get...
Hi all! This is probably not the most urgent thing, but I wanted to try running the miner on an NVIDIA Jetson Nano and the build failed. Worth noting that...
Duplicate of https://github.com/holistics/dbml/issues/142 but for Postgres. Example Postgres Import: ``` create table table1 ( field text not null, field2 text not null, primary key(field, field2) ); create table if not...
Not a serious PR, just a demo. Using the normal completions endpoint with Chat models. With this patch, you can use the summarizing chains and agents with gpt-3.5-turbo and gpt-4.
Some of my agents were trying to use the bash terminal again in a different iteration of the loop, but the existing bash terminal is once-only. This PR adds an...
I found the refine method when you add the filenames as part of the context. Often the filenames provide very useful information about the file in question, and help the...
Maybe I'm reading this wrong, but [the ArXive paper](https://arxiv.org/pdf/2006.03879.pdf) talks about full stack profiling a lot and references [pyinstrument](https://github.com/joerick/pyinstrument). It seems like that functionality should be possible? This issue has...
Am I right in thinking that the README is the only documentation for this project? It seems like there are a lot of cool features that are undocumented, for example:...
I'm trying to implement various methods from the [patchscopes](https://arxiv.org/abs/2401.06102) paper, and some of them utilize token generation to eg. explain the meaning of a patched representation. I tried this and...
Hey, I just used pyminder in a small project I made: https://github.com/fergusFettes/beetimer Here is one of the things that I thought of when trying it. But maybe there is a...