-
Notifications
You must be signed in to change notification settings - Fork 0
LLM | Allow HTTP base URLs #12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,48 +1,56 @@ | ||
| import { describe, it, expect } from 'vitest'; | ||
| import { optionalHttpsBaseUrl } from '../lib/llm/base-url.js'; | ||
| import { optionalBaseUrl } from '../lib/llm/base-url.js'; | ||
| import { createOpenAiProvider } from '../lib/llm/openai.js'; | ||
| import { createAnthropicProvider } from '../lib/llm/anthropic.js'; | ||
| import { createGeminiProvider } from '../lib/llm/gemini.js'; | ||
|
|
||
| describe('optionalHttpsBaseUrl', () => { | ||
| describe('optionalBaseUrl', () => { | ||
| it('returns undefined for absent or blank values', () => { | ||
| expect(optionalHttpsBaseUrl(undefined, 'OPENAI_BASE_URL')).toBeUndefined(); | ||
| expect(optionalHttpsBaseUrl('', 'OPENAI_BASE_URL')).toBeUndefined(); | ||
| expect(optionalHttpsBaseUrl(' ', 'OPENAI_BASE_URL')).toBeUndefined(); | ||
| expect(optionalBaseUrl(undefined, 'OPENAI_BASE_URL')).toBeUndefined(); | ||
| expect(optionalBaseUrl('', 'OPENAI_BASE_URL')).toBeUndefined(); | ||
| expect(optionalBaseUrl(' ', 'OPENAI_BASE_URL')).toBeUndefined(); | ||
| }); | ||
|
|
||
| it('trims a valid https URL', () => { | ||
| expect(optionalHttpsBaseUrl(' https://api.example.test/v1 ', 'OPENAI_BASE_URL')) | ||
| expect(optionalBaseUrl(' https://api.example.test/v1 ', 'OPENAI_BASE_URL')) | ||
| .toBe('https://api.example.test/v1'); | ||
| }); | ||
|
|
||
| it('rejects http and non-URL values', () => { | ||
| expect(() => optionalHttpsBaseUrl('http://api.example.test', 'OPENAI_BASE_URL')) | ||
| .toThrow(/OPENAI_BASE_URL must use HTTPS/); | ||
| expect(() => optionalHttpsBaseUrl('not-a-url', 'ANTHROPIC_BASE_URL')) | ||
| .toThrow(/ANTHROPIC_BASE_URL must be an https URL/); | ||
| it('accepts an http URL', () => { | ||
| expect(optionalBaseUrl('http://llm-proxy.internal/v1', 'OPENAI_BASE_URL')) | ||
| .toBe('http://llm-proxy.internal/v1'); | ||
| }); | ||
|
|
||
| it('rejects non-URL and non-http(s) values', () => { | ||
| expect(() => optionalBaseUrl('not-a-url', 'ANTHROPIC_BASE_URL')) | ||
| .toThrow(/ANTHROPIC_BASE_URL must be an http or https URL/); | ||
| expect(() => optionalBaseUrl('ftp://api.example.test', 'OPENAI_BASE_URL')) | ||
| .toThrow(/OPENAI_BASE_URL must be an http or https URL/); | ||
| }); | ||
| }); | ||
|
|
||
| describe('provider base URL guards', () => { | ||
| it('rejects a non-HTTPS OPENAI_BASE_URL before constructing the client', () => { | ||
| expect(() => createOpenAiProvider({ | ||
| describe('provider base URL', () => { | ||
| it('accepts an http OPENAI_BASE_URL', () => { | ||
| const llm = createOpenAiProvider({ | ||
| OPENAI_API_KEY: 'sk-test', | ||
| OPENAI_BASE_URL: 'http://localhost:8080', | ||
| })).toThrow(/OPENAI_BASE_URL must use HTTPS/); | ||
| }); | ||
| expect(llm.name).toBe('openai'); | ||
| }); | ||
|
|
||
| it('rejects a non-HTTPS ANTHROPIC_BASE_URL before constructing the client', () => { | ||
| expect(() => createAnthropicProvider({ | ||
| it('accepts an http ANTHROPIC_BASE_URL', () => { | ||
| const llm = createAnthropicProvider({ | ||
| ANTHROPIC_API_KEY: 'sk-test', | ||
| ANTHROPIC_BASE_URL: 'http://localhost:8080', | ||
| })).toThrow(/ANTHROPIC_BASE_URL must use HTTPS/); | ||
| }); | ||
| expect(llm.name).toBe('anthropic'); | ||
| }); | ||
|
|
||
| it('rejects a non-HTTPS GOOGLE_BASE_URL before constructing the client', () => { | ||
| expect(() => createGeminiProvider({ | ||
| it('accepts an http GOOGLE_BASE_URL', () => { | ||
| const llm = createGeminiProvider({ | ||
| GOOGLE_API_KEY: 'sk-test', | ||
| GOOGLE_BASE_URL: 'http://localhost:8080', | ||
| })).toThrow(/GOOGLE_BASE_URL must use HTTPS/); | ||
| }); | ||
| expect(llm.name).toBe('gemini'); | ||
| }); | ||
| }); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔒 Security & Privacy | 🔴 Critical | 🏗️ Heavy lift
Restore HTTPS-only base URL validation.
HTTP provides no TLS. The provider clients use this URL for authenticated LLM requests. API keys, prompts, and responses can traverse the network without confidentiality or integrity protection.
Require
https:URLs. If an internal proxy is required, terminate TLS with a FIPS-validated module before the proxy boundary. Complete a FedRAMP compliance review before merge.🤖 Prompt for AI Agents
Source: Path instructions