forked from stackblitz-labs/bolt.diy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added hyperbolic llm models (stackblitz-labs#943)
* Added Hyperbolic Models * Fix: Fixed problem in connecting with hyperbolic models * added dynamic models for hyperbolic * removed logs
- Loading branch information
1 parent
7e9c621
commit e71671c
Showing
5 changed files
with
134 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
import { BaseProvider } from '~/lib/modules/llm/base-provider'; | ||
import type { ModelInfo } from '~/lib/modules/llm/types'; | ||
import type { IProviderSetting } from '~/types/model'; | ||
import type { LanguageModelV1 } from 'ai'; | ||
import { createOpenAI } from '@ai-sdk/openai'; | ||
|
||
export default class HyperbolicProvider extends BaseProvider { | ||
name = 'Hyperbolic'; | ||
getApiKeyLink = 'https://hyperbolic.xyz/settings'; | ||
|
||
config = { | ||
apiTokenKey: 'HYPERBOLIC_API_KEY', | ||
}; | ||
|
||
staticModels: ModelInfo[] = [ | ||
{ | ||
name: 'Qwen/Qwen2.5-Coder-32B-Instruct', | ||
label: 'Qwen 2.5 Coder 32B Instruct', | ||
provider: 'Hyperbolic', | ||
maxTokenAllowed: 8192, | ||
}, | ||
{ | ||
name: 'Qwen/Qwen2.5-72B-Instruct', | ||
label: 'Qwen2.5-72B-Instruct', | ||
provider: 'Hyperbolic', | ||
maxTokenAllowed: 8192, | ||
}, | ||
{ | ||
name: 'deepseek-ai/DeepSeek-V2.5', | ||
label: 'DeepSeek-V2.5', | ||
provider: 'Hyperbolic', | ||
maxTokenAllowed: 8192, | ||
}, | ||
{ | ||
name: 'Qwen/QwQ-32B-Preview', | ||
label: 'QwQ-32B-Preview', | ||
provider: 'Hyperbolic', | ||
maxTokenAllowed: 8192, | ||
}, | ||
{ | ||
name: 'Qwen/Qwen2-VL-72B-Instruct', | ||
label: 'Qwen2-VL-72B-Instruct', | ||
provider: 'Hyperbolic', | ||
maxTokenAllowed: 8192, | ||
}, | ||
]; | ||
|
||
async getDynamicModels( | ||
apiKeys?: Record<string, string>, | ||
settings?: IProviderSetting, | ||
serverEnv: Record<string, string> = {}, | ||
): Promise<ModelInfo[]> { | ||
try { | ||
const { baseUrl: fetchBaseUrl, apiKey } = this.getProviderBaseUrlAndKey({ | ||
apiKeys, | ||
providerSettings: settings, | ||
serverEnv, | ||
defaultBaseUrlKey: '', | ||
defaultApiTokenKey: 'HYPERBOLIC_API_KEY', | ||
}); | ||
const baseUrl = fetchBaseUrl || 'https://api.hyperbolic.xyz/v1'; | ||
|
||
if (!baseUrl || !apiKey) { | ||
return []; | ||
} | ||
|
||
const response = await fetch(`${baseUrl}/models`, { | ||
headers: { | ||
Authorization: `Bearer ${apiKey}`, | ||
}, | ||
}); | ||
|
||
const res = (await response.json()) as any; | ||
|
||
const data = res.data.filter((model: any) => model.object === 'model' && model.supports_chat); | ||
|
||
return data.map((m: any) => ({ | ||
name: m.id, | ||
label: `${m.id} - context ${m.context_length ? Math.floor(m.context_length / 1000) + 'k' : 'N/A'}`, | ||
provider: this.name, | ||
maxTokenAllowed: m.context_length || 8000, | ||
})); | ||
} catch (error: any) { | ||
console.error('Error getting Hyperbolic models:', error.message); | ||
return []; | ||
} | ||
} | ||
|
||
getModelInstance(options: { | ||
model: string; | ||
serverEnv: Env; | ||
apiKeys?: Record<string, string>; | ||
providerSettings?: Record<string, IProviderSetting>; | ||
}): LanguageModelV1 { | ||
const { model, serverEnv, apiKeys, providerSettings } = options; | ||
|
||
const { apiKey } = this.getProviderBaseUrlAndKey({ | ||
apiKeys, | ||
providerSettings: providerSettings?.[this.name], | ||
serverEnv: serverEnv as any, | ||
defaultBaseUrlKey: '', | ||
defaultApiTokenKey: 'HYPERBOLIC_API_KEY', | ||
}); | ||
|
||
if (!apiKey) { | ||
console.log(`Missing configuration for ${this.name} provider`); | ||
throw new Error(`Missing configuration for ${this.name} provider`); | ||
} | ||
|
||
const openai = createOpenAI({ | ||
baseURL: 'https://api.hyperbolic.xyz/v1/', | ||
apiKey, | ||
}); | ||
|
||
return openai(model); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.