mirror of
https://github.com/KeygraphHQ/shannon.git
synced 2026-04-25 01:25:52 +03:00
[PR #118] Add Native OpenAI-compatible API Support #127
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/shannon-KeygraphHQ#127
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/KeygraphHQ/shannon/pull/118
Author: @jchristman
Created: 2/11/2026
Status: 🔄 Open
Base:
main← Head:main📝 Commits (3)
df72882feat: Add native OpenAI-compatible provider for non-Claude AI backends2aee6fc- Added legacy peer deps to avoid conflicts between anthropic-ai and openai library zod versionsc645674- Added a semaphore for maximum concurrent requests so that local AI doesn't end up exhausting resources on the graphics card. Also added more logging to make it so that the values are output in the workflow.log for easy viewing📊 Changes
20 files changed (+2541 additions, -88 deletions)
View changed files
📝
.dockerignore(+8 -0)📝
.env.example(+14 -0)📝
CLAUDE.md(+19 -0)📝
Dockerfile(+3 -0)📝
docker-compose.yml(+7 -0)📝
mcp-server/src/index.ts(+2 -2)📝
mcp-server/src/tools/generate-totp.ts(+1 -1)📝
mcp-server/src/tools/save-deliverable.ts(+4 -2)📝
mcp-server/src/types/tool-responses.ts(+1 -1)📝
package-lock.json(+1460 -68)📝
package.json(+2 -0)📝
prompts/pipeline-testing/pre-recon-code.txt(+1 -1)📝
prompts/pre-recon-code.txt(+2 -0)📝
shannon(+34 -5)📝
src/ai/claude-executor.ts(+22 -3)➕
src/ai/mcp-client.ts(+162 -0)➕
src/ai/openai-executor.ts(+327 -0)➕
src/ai/openai-tools.ts(+394 -0)➕
src/ai/provider-config.ts(+54 -0)📝
src/audit/workflow-logger.ts(+24 -5)📄 Description
Fully separate execution pathway parallel to the Anthropic Claude path, enables OpenAI-compatible models without the clumsy CCR translation layer.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.