claude-flow-novice
Version:
Claude Flow Novice - Advanced orchestration platform for multi-agent AI workflows with CFN Loop architecture Includes CodeSearch (hybrid SQLite + pgvector), mem0/memgraph specialists, and all CFN skills.
30 lines (27 loc) • 645 B
TypeScript
declare module '@cerebras/cerebras_cloud_sdk' {
export interface ChatCompletion {
choices: Array<{
message: {
content: string;
};
}>;
}
export interface ChatCompletionCreateParams {
model: string;
messages: Array<{
role: string;
content: string;
}>;
max_tokens?: number;
temperature?: number;
}
export class CerebrasCloudSDK {
chat: {
completions: {
create: (params: ChatCompletionCreateParams) => Promise<ChatCompletion>;
};
};
constructor(options: { apiKey: string });
}
export default CerebrasCloudSDK;
}