Skip to content

Commit

Permalink
fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
RicardoE105 committed Aug 27, 2024
1 parent 712cb97 commit a4f9c96
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,8 @@ export class Agent implements INodeType {
},
},
{
displayName: `Connect an <a data-action='openSelectiveNodeCreator' data-action-parameter-connectiontype='ai_outputParser'>output parser</a> on the canvas to specify the output format you require`,
displayName:
"Connect an <a data-action='openSelectiveNodeCreator' data-action-parameter-connectiontype='ai_outputParser'>output parser</a> on the canvas to specify the output format you require",
name: 'notice',
type: 'notice',
default: '',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,8 @@ export class ChainLlm implements INodeType {
],
},
{
displayName: `Connect an <a data-action='openSelectiveNodeCreator' data-action-parameter-connectiontype='ai_outputParser'>output parser</a> on the canvas to specify the output format you require`,
displayName:
"Connect an <a data-action='openSelectiveNodeCreator' data-action-parameter-connectiontype='ai_outputParser'>output parser</a> on the canvas to specify the output format you require",
name: 'notice',
type: 'notice',
default: '',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,7 @@ export class VectorStoreZepLoad implements INodeType {
apiKey?: string;
apiUrl: string;
}>('zepApi');
const embeddings = (await this.getInputConnectionData(
'ai_embedding',
0,
)) as Embeddings;
const embeddings = (await this.getInputConnectionData('ai_embedding', 0)) as Embeddings;

const zepConfig: IZepConfig = {
apiUrl: credentials.apiUrl,
Expand Down

0 comments on commit a4f9c96

Please sign in to comment.