Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 0 additions & 8 deletions packages/server-utils/src/ai/anthropic-ai/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,6 @@ type SuccessfulResponse = {

export type AnthropicAiResponse = SuccessfulResponse | MessageError;

/**
* Anthropic AI Integration interface for type safety
*/
export interface AnthropicAiIntegration {
name: string;
options: AnthropicAiOptions;
}

/**
* Message type for Anthropic AI
*/
Expand Down
8 changes: 0 additions & 8 deletions packages/server-utils/src/ai/langchain/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,6 @@ export interface LangChainLLMResult {
};
}

/**
* Integration interface for type safety
*/
export interface LangChainIntegration {
name: string;
options: LangChainOptions;
}

/**
* LangChain callback handler interface
* Compatible with both BaseCallbackHandlerMethodsClass and BaseCallbackHandler from @langchain/core
Expand Down
8 changes: 0 additions & 8 deletions packages/server-utils/src/ai/langgraph/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,3 @@ export interface CompiledGraph {
};
builder?: StateGraphBuilder;
}

/**
* LangGraph Integration interface for type safety
*/
export interface LangGraphIntegration {
name: string;
options: LangGraphOptions;
}
8 changes: 0 additions & 8 deletions packages/server-utils/src/ai/openai/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -332,11 +332,3 @@ export interface ChatCompletionChunk {
export interface OpenAIStream<T> extends AsyncIterable<T> {
[Symbol.asyncIterator](): AsyncIterator<T>;
}

/**
* OpenAI Integration interface for type safety
*/
export interface OpenAiIntegration {
name: string;
options: OpenAiOptions;
}
Loading