santree

Results 13 comments of santree

The current version of dappeteer supports an older version of the MetaMask extension. In the latest version, the DOM structure of the MetaMask toggle component has changed. Please refer to...

麻烦提供一下复现路径,我这边排查一下。

https://beta.tauri.app/references/config/#proxyurl 在最新的 `tauri@beta` 中已经支持了这个配置,但是有一些小限制(macos 版本),或许我们可以提供一个 `beta` 版的 `pake` 支持一下? @tw93

> https://beta.tauri.app/references/config/#proxyurl > > 在最新的 `tauri@beta` 中已经支持了这个配置,但是有一些小限制(macos 版本),或许我们可以提供一个 `beta` 版的 `pake` 支持一下? @tw93 感觉是个大工程,得慢慢来

[5752996f8925043fb5ac3bcf0cf82b92f47026b6](https://github.com/tw93/Pake/commit/5752996f8925043fb5ac3bcf0cf82b92f47026b6) 在实验性分支上支持了这个 option,可以试着使用一下,目前这个分支已经升级到了 [email protected] 版本,如果有其他的问题可以单独反馈下。 @bitQ2019

#5354 This is a resolved issue, please wait for the new version of `langchainjs`.

https://github.com/langchain-ai/langchainjs/blob/a41216ec4ae613133c98c3148fb16497f1050e6e/libs/langchain-anthropic/src/chat_models.ts#L272-L307 This is because `anthropic` assumes that all `message` objects have a `content` attribute without considering the possibility that `message.content` might be `null`. Perhaps setting the `content` of your `AIMessage`...

To address this issue, we cannot simply adjust `getEnvironmentVariable`. Instead, we need to follow these steps: - Inject external environment variables into the global configuration. - When `getEnvironmentVariable` retrieves environment...

This is because `fewShotPromptTemplate` is not actually a `chatPromptTemplate`. `fewShot` should be a set of question-and-answer pairs used as a knowledge base. You can refer to [few-shot-example](https://python.langchain.com/v0.1/docs/modules/model_io/prompts/few_shot_examples) for more information....

You can configure it through `s3Config.endpoint`, the `ClientInputEndpointParameters` you mentioned is a subset of `S3LoaderParams['S3Config']`. Example: ```typescript new S3Loader({ bucket: "my-document-bucket-123", key: "AccountingOverview.pdf", s3Config: { region: "us-east-1", endpoint: "your endpoint",...