Skip to content

Commit

Permalink
fix: claude2 url error
Browse files Browse the repository at this point in the history
  • Loading branch information
ikechan8370 committed Feb 22, 2024
1 parent ec2e123 commit 9ef463f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/claude.ai/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export class ClaudeAIClient {
timezone: 'Asia/Hong_Kong'
}
let host = Config.claudeAIReverseProxy || 'https://claude.ai'
let url = host + `/api/${this.organizationId}/chat_conversations/${conversationId}/completion`
let url = host + `/api/organizations/${this.organizationId}/chat_conversations/${conversationId}/completion`
const cycleTLS = await initCycleTLS()
let streamDataRes = await cycleTLS(url, {
ja3: this.JA3,
Expand Down

0 comments on commit 9ef463f

Please sign in to comment.