fix lint issues

This commit is contained in:
dal 2025-08-11 16:57:49 -06:00
parent 9d023db3f8
commit 70193aad4f
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
4 changed files with 4 additions and 4 deletions

View File

@ -287,7 +287,7 @@ Today's date is ${new Date().toISOString().split('T')[0]}.
export const getAnalystInstructions = async ({
runtimeContext,
}: { runtimeContext: RuntimeContext<AnalystRuntimeContext> }): Promise<string> => {
const userId = runtimeContext.get('userId');
const _userId = runtimeContext.get('userId');
const dataSourceSyntax = runtimeContext.get('dataSourceSyntax');
// Get dialect-specific guidance

View File

@ -497,7 +497,7 @@ Today's date is ${new Date().toLocaleDateString()}.
export const getThinkAndPrepInstructions = async ({
runtimeContext,
}: { runtimeContext: RuntimeContext<AnalystRuntimeContext> }): Promise<string> => {
const userId = runtimeContext.get('userId');
const _userId = runtimeContext.get('userId');
const dataSourceSyntax = runtimeContext.get('dataSourceSyntax');
// Get dialect-specific guidance

View File

@ -271,7 +271,7 @@ const analystExecution = async ({
.join('\n---\n');
// Get dialect-specific guidance
const sqlDialectGuidance = getSqlDialectGuidance(dataSourceSyntax);
const _sqlDialectGuidance = getSqlDialectGuidance(dataSourceSyntax);
// Create dataset system message
const createDatasetSystemMessage = (databaseContext: string): string => {

View File

@ -186,7 +186,7 @@ const thinkAndPrepExecution = async ({
.join('\n---\n');
// Get dialect-specific guidance
const sqlDialectGuidance = getSqlDialectGuidance(dataSourceSyntax);
const _sqlDialectGuidance = getSqlDialectGuidance(dataSourceSyntax);
// Create dataset system message
const createDatasetSystemMessage = (databaseContext: string): string => {