Skip to content

Commit

Permalink
formatting and lint clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
Xm0onh committed Feb 6, 2025
1 parent ffa0527 commit 91764a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ import { createTwitterAgentTool } from './agents/workflows/twitter/twitterAgentT
import { config } from './config/index.js';
import { createTwitterApi } from './services/twitter/client.js';
import { createPrompts } from './agents/workflows/orchestrator/prompts.js';
import { LLMNodeConfiguration, LLMProvider } from './services/llm/types.js';
import { LLMProvider } from './services/llm/types.js';
import { PruningParameters } from './agents/workflows/orchestrator/types.js';
import { VectorDB } from './services/vectorDb/VectorDB.js';
import { LLMFactory } from './services/llm/factory.js';

const orchestatorConfig = async () => {
Expand Down
3 changes: 1 addition & 2 deletions src/agents/workflows/orchestrator/orchestratorWorkflow.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { END, MemorySaver, START, StateGraph } from '@langchain/langgraph';
import { createLogger } from '../../../utils/logger.js';
import { LLMFactory, LLMModelType } from '../../../services/llm/factory.js';
import { LLMModelType } from '../../../services/llm/factory.js';
import { ToolNode } from '@langchain/langgraph/prebuilt';
import { createNodes } from './nodes.js';
import {
Expand All @@ -14,7 +14,6 @@ import { OrchestratorState } from './state.js';
import { StructuredToolInterface } from '@langchain/core/tools';
import { RunnableToolLike } from '@langchain/core/runnables';
import { VectorDB } from '../../../services/vectorDb/VectorDB.js';
import { LLMNodeConfiguration } from '../../../services/llm/types.js';
import { config } from '../../../config/index.js';

const logger = createLogger('orchestrator-workflow');
Expand Down

0 comments on commit 91764a8

Please sign in to comment.