mirror of
https://github.com/msoedov/agentic_security.git
synced 2026-06-24 06:09:55 +02:00
fix(add spec OpenRouter.ai to base.js)
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
|
||||
let SELF_URL = window.location.href;
|
||||
if (SELF_URL.endsWith('/')) {
|
||||
SELF_URL = SELF_URL.slice(0, -1);
|
||||
@@ -171,6 +170,21 @@ Content-Type: application/json
|
||||
{
|
||||
"audio_url": "<<AUDIO_FILE_URL>>"
|
||||
}
|
||||
`,
|
||||
|
||||
`POST https://api.openrouter.ai/v1/chat/completions
|
||||
Authorization: Bearer $OPENROUTER_API_KEY
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"model": "openrouter-latest",
|
||||
"prompt": "<<PROMPT>>",
|
||||
"temperature": 0.7,
|
||||
"max_tokens": 150,
|
||||
"top_p": 0.9,
|
||||
"frequency_penalty": 0,
|
||||
"presence_penalty": 0
|
||||
}
|
||||
`,
|
||||
|
||||
]
|
||||
@@ -190,6 +204,7 @@ let LLM_CONFIGS = [
|
||||
{ name: 'Claude', prompts: 40000, logo: '/icons/claude.png' },
|
||||
{ name: 'Cohere', prompts: 40000, logo: '/icons/cohere.png' },
|
||||
{ name: 'Azure OpenAI', prompts: 40000, logo: '/icons/azureai.png' },
|
||||
{ name: 'OpenRouter.ai', prompts: 40000, logo: '/icons/openrouter.png' },
|
||||
{ name: 'assemblyai', prompts: 40000, logo: fallbackIcon },
|
||||
];
|
||||
function has_image(spec) {
|
||||
|
||||
Reference in New Issue
Block a user