YAMON.IO
YAMON.IO
It seems similar to the contents of this proposal: https://github.com/langflow-ai/langflow/issues/1731 It would be better to implement the function for an LLM to judge and select prompts directly using Langchain's prompt...
 In my opinion, such a division could be adequately replaced by using Langflow's Flow as Tool component.
> Hello @jaschahuisman @mountain15, > > First of all, thank you for your report. > > Sorry for the delayed response; last week, we were working on new features, so...
Langflow does not yet support streaming through their API, but after reviewing the recent configuration of API v1, I noticed that a stream flag has been added to the API...
https://github.com/langflow-ai/langflow/issues/1719
Although it's different from the initial setup, the method implemented now seems likely to become compatible with tools written in Langchain, so I have only made improvements to the definition...
Code exam ``` class CalculatorInput(BaseModel): a: int = Field(description="first number") b: int = Field(description="second number") def multiply(a: int, b: int) -> int: """Multiply two numbers.""" return a * b calculator...
This component uses the Code field and employs exec, so providing Code through Tweaks at the API endpoint could lead to dangerous behaviors. Consequently, the Langflow code must be modified...
> 그렇다면 코드가 수정을 통해 전달되도록 허용해야 한다고 생각하시나요, 아니면 허용해서는 안 된다고 생각하시나요? I believe Langflow has created a very revolutionary type called "Code," so it should not be...
In a similar case, the AutoGPT project uses an env file to manage the following settings: ``` ## RESTRICT_TO_WORKSPACE - Restrict file operations to the workspace in the directory ./data/agents//workspace...