Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pinecone[patch]: Release 0.0.7 #5547

Merged
merged 1 commit into from
May 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
pinecone[patch]: Release 0.0.7
jacoblee93 committed May 26, 2024
commit c3ef45c348aa5a4c009341722732b2770064a12b
2 changes: 1 addition & 1 deletion libs/langchain-pinecone/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@langchain/pinecone",
"version": "0.0.6",
"version": "0.0.7",
"description": "LangChain integration for Pinecone's vector database",
"type": "module",
"engines": {

Unchanged files with check annotations Beta

const docs = await unstructuredLoader.load();
return docs;
} catch (e: any) {

Check warning on line 172 in langchain/src/document_loaders/web/s3.ts

GitHub Actions / Check linting

Unexpected any. Specify a different type
throw new Error(
`Failed to load file ${filePath} using unstructured loader: ${e.message}`
);
}) => EvaluatorInputs;
export type DynamicRunEvaluatorParams<
Input extends Record<string, any> = Record<string, unknown>,

Check warning on line 34 in langchain/src/smith/config.ts

GitHub Actions / Check linting

Unexpected any. Specify a different type
Prediction extends Record<string, any> = Record<string, unknown>,

Check warning on line 35 in langchain/src/smith/config.ts

GitHub Actions / Check linting

Unexpected any. Specify a different type
Reference extends Record<string, any> = Record<string, unknown>

Check warning on line 36 in langchain/src/smith/config.ts

GitHub Actions / Check linting

Unexpected any. Specify a different type
> = {
input: Input;
prediction?: Prediction;
}
function parseMessageCohere(
responseBody: any,

Check warning on line 487 in libs/langchain-community/src/utils/bedrock.ts

GitHub Actions / Check linting

Unexpected any. Specify a different type
asChunk?: boolean
): ChatGeneration {
const { text, ...generationInfo } = responseBody;
content,
additionalKwargs
);
const { role: _role, type: _type, ...rest } = additionalKwargs;

Check warning on line 757 in libs/langchain-anthropic/src/chat_models.ts

GitHub Actions / Check linting

'_role' is assigned a value but never used

Check warning on line 757 in libs/langchain-anthropic/src/chat_models.ts

GitHub Actions / Check linting

'_type' is assigned a value but never used
return { generations, llmOutput: rest };
}