Skip to content

Watsonx-vi #5889

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 27 commits into from
Jun 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
6e2d847
use OpenAI client for Azure in openai-adapters
sestinj May 24, 2025
53f4312
bump
sestinj May 24, 2025
837ee01
bump again
sestinj May 24, 2025
a2df09e
fix watsonx zen-api-key
sestinj May 24, 2025
e63bc98
Merge branch 'main' into nate/azure-openai-adapters
sestinj May 26, 2025
5dfc95b
bump openai-adapters' version of fetch
sestinj May 28, 2025
2623f90
add *.notes.md to .gitignore
sestinj May 29, 2025
a8cfddd
in OpenAI-adapters, use only username, api_key auth
sestinj May 29, 2025
fa8c84d
bump openai-adapters
sestinj May 29, 2025
cd38bfb
Merge branch 'nate/azure-openai-adapters' into watsonx-vi
sestinj May 29, 2025
230853c
don't use zen api key in openai-adapters
sestinj May 29, 2025
ad0c544
bump package-lock
sestinj May 29, 2025
ec0fe62
look for token as well as access_token
sestinj May 29, 2025
67b5165
Merge branch 'main' into watsonx-vi
sestinj May 29, 2025
7e0b928
always use custom fetch in openai-adapters
sestinj May 29, 2025
07ad240
fix edge cases for watsonx
sestinj May 29, 2025
38fd139
pass stream in the body instead of the path
sestinj May 29, 2025
e2cda35
update package.json
sestinj May 30, 2025
93a393a
Revert "pass stream in the body instead of the path"
sestinj May 30, 2025
92324e8
bump oai-adapters
sestinj May 30, 2025
2827114
changes
sestinj May 30, 2025
fae5c5d
Merge branch 'main' into watsonx-vi
sestinj Jun 5, 2025
8e24fcf
feat: use correct deployment for azure
Patrick-Erichsen Jun 6, 2025
f15b379
Update main.test.ts
Patrick-Erichsen Jun 6, 2025
9f92372
update tests to run in CI
sestinj Jun 9, 2025
dc803d8
Merge pull request #6023 from continuedev/pe/watsonx-vi
sestinj Jun 9, 2025
4180e0e
remove dead code bearerTokenRequired
sestinj Jun 9, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/pr_checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -435,6 +435,8 @@ jobs:
MISTRAL_API_KEY: ${{ secrets.MISTRAL_API_KEY }}
AZURE_OPENAI_API_KEY: ${{ secrets.AZURE_OPENAI_API_KEY }}
AZURE_FOUNDRY_API_KEY: ${{ secrets.AZURE_FOUNDRY_API_KEY }}
AZURE_FOUNDRY_MISTRAL_SMALL_API_KEY: ${{ secrets.AZURE_FOUNDRY_MISTRAL_SMALL_API_KEY }}
AZURE_OPENAI_GPT41_API_KEY: ${{ secrets.AZURE_OPENAI_GPT41_API_KEY }}

package-tests:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ Icon?

*.notes.md
notes.md
*.notes.md

manual-testing-sandbox/.idea/**
manual-testing-sandbox/.continue/**
Expand Down
57 changes: 5 additions & 52 deletions core/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"@continuedev/config-yaml": "file:../packages/config-yaml",
"@continuedev/fetch": "^1.0.13",
"@continuedev/llm-info": "^1.0.8",
"@continuedev/openai-adapters": "^1.0.25",
"@continuedev/openai-adapters": "^1.0.32",
"@modelcontextprotocol/sdk": "^1.12.0",
"@mozilla/readability": "^0.5.0",
"@octokit/rest": "^20.1.1",
Expand Down
2 changes: 1 addition & 1 deletion extensions/vscode/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

138 changes: 6 additions & 132 deletions packages/openai-adapters/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions packages/openai-adapters/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@continuedev/openai-adapters",
"version": "1.0.26",
"version": "1.0.36",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -12,10 +12,9 @@
"author": "Nate Sesti and Ty Dunn",
"license": "Apache-2.0",
"dependencies": {
"@azure/openai": "^1.0.0-beta.12",
"@continuedev/config-types": "^1.0.5",
"@continuedev/config-yaml": "^1.0.51",
"@continuedev/fetch": "^1.0.10",
"@continuedev/fetch": "^1.0.11",
"dotenv": "^16.5.0",
"json-schema": "^0.4.0",
"node-fetch": "^3.3.2",
Expand Down
Loading
Loading