Amos Ng

Results 15 issues of Amos Ng

Like probably many others, I didn't bother reading the documentation before running `lein zprint` :) The NPE made me think the tool was broken at first. I think printing the...

Path to the Racer executable is `/home/amos/custom/racer/target/release/racer`. It looks right to me: ``` ➜ rust git:(master) which racer /home/amos/custom/racer/target/release/racer ``` Path to the Rust source code directory is `/home/amos/custom/rust`. Also...

I couldn't find the repo for the documentation, so opening this as an issue here. *** On the [Getting Started page](https://langchain.readthedocs.io/en/latest/modules/prompts/getting_started.html) for prompt templates, I believe the very last example...

On the [Getting Started page](https://langchain.readthedocs.io/en/latest/modules/prompts/getting_started.html) for prompt templates, I believe the very last example ```python print(dynamic_prompt.format(adjective=long_string)) ``` should actually be ```python print(dynamic_prompt.format(input=long_string)) ``` The existing example produces `KeyError: 'input'` as...

The base agent class seems a bit opinionated right now. It took a bit of effort to experiment with the effects of swapping out default ZeroShotAgent logic with #764. These...

Please feel free to disregard any changes you disagree with

Right now, it seems that if you want to get multiple inputs from the LLM, you have to write a custom regex parser like ZeroShotAgent does with its get_action_and_input. I...

This allows the LLM to correct its previous command by looking at the error message output to the shell. Additionally, this uses subprocess.run because that is now recommended over subprocess.check_output:...

In my experiments with multi-input Tool usage (the original impetus for #764) and now multi-output Tool usage, I continue to find the current Agent/AgentExecutor logic to be rather opinionated. As...

### System Info langchain v0.0.216, Python 3.11.3 on WSL2 ### Who can help? @hwchase17 ### Information - [X] The official example notebooks/scripts - [ ] My own modified scripts ###...

bug
needs work