ide-assi 0.269.0 → 0.271.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -194150,6 +194150,7 @@ class ideAssiSettings extends HTMLElement
194150
194150
  </div>
194151
194151
  <div class="line contents ollama">
194152
194152
  <select id="ollamaModel">
194153
+ <option value="codellama:13b">codellama:13b</option>
194153
194154
  <option value="deepseek-coder:6.7b">deepseek-coder:6.7b</option>
194154
194155
  <option value="phi4:14b">phi4:14b</option>
194155
194156
  <option value="llama3.1:8b">llama3.1:8b</option>
@@ -194211,7 +194212,7 @@ class ideAssiSettings extends HTMLElement
194211
194212
  radio.addEventListener("change", () => {
194212
194213
  const server = this.shadowRoot.querySelector('input[name="server"]:checked').value;
194213
194214
 
194214
- ["gemini","openai","ollama"].forEach(v => {
194215
+ ["gemini","openai","ollama","chatopenai"].forEach(v => {
194215
194216
  this.shadowRoot.querySelectorAll('.' + v).forEach((elem) => {
194216
194217
  elem.style.display = (server === v) ? "flex" : "none";
194217
194218
  });
@@ -194146,6 +194146,7 @@ class ideAssiSettings extends HTMLElement
194146
194146
  </div>
194147
194147
  <div class="line contents ollama">
194148
194148
  <select id="ollamaModel">
194149
+ <option value="codellama:13b">codellama:13b</option>
194149
194150
  <option value="deepseek-coder:6.7b">deepseek-coder:6.7b</option>
194150
194151
  <option value="phi4:14b">phi4:14b</option>
194151
194152
  <option value="llama3.1:8b">llama3.1:8b</option>
@@ -194207,7 +194208,7 @@ class ideAssiSettings extends HTMLElement
194207
194208
  radio.addEventListener("change", () => {
194208
194209
  const server = this.shadowRoot.querySelector('input[name="server"]:checked').value;
194209
194210
 
194210
- ["gemini","openai","ollama"].forEach(v => {
194211
+ ["gemini","openai","ollama","chatopenai"].forEach(v => {
194211
194212
  this.shadowRoot.querySelectorAll('.' + v).forEach((elem) => {
194212
194213
  elem.style.display = (server === v) ? "flex" : "none";
194213
194214
  });
@@ -81,6 +81,7 @@ class ideAssiSettings extends HTMLElement
81
81
  </div>
82
82
  <div class="line contents ollama">
83
83
  <select id="ollamaModel">
84
+ <option value="codellama:13b">codellama:13b</option>
84
85
  <option value="deepseek-coder:6.7b">deepseek-coder:6.7b</option>
85
86
  <option value="phi4:14b">phi4:14b</option>
86
87
  <option value="llama3.1:8b">llama3.1:8b</option>
@@ -142,7 +143,7 @@ class ideAssiSettings extends HTMLElement
142
143
  radio.addEventListener("change", () => {
143
144
  const server = this.shadowRoot.querySelector('input[name="server"]:checked').value;
144
145
 
145
- ["gemini","openai","ollama"].forEach(v => {
146
+ ["gemini","openai","ollama","chatopenai"].forEach(v => {
146
147
  this.shadowRoot.querySelectorAll('.' + v).forEach((elem) => {
147
148
  elem.style.display = (server === v) ? "flex" : "none";
148
149
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.269.0",
4
+ "version": "0.271.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -81,6 +81,7 @@ class ideAssiSettings extends HTMLElement
81
81
  </div>
82
82
  <div class="line contents ollama">
83
83
  <select id="ollamaModel">
84
+ <option value="codellama:13b">codellama:13b</option>
84
85
  <option value="deepseek-coder:6.7b">deepseek-coder:6.7b</option>
85
86
  <option value="phi4:14b">phi4:14b</option>
86
87
  <option value="llama3.1:8b">llama3.1:8b</option>
@@ -142,7 +143,7 @@ class ideAssiSettings extends HTMLElement
142
143
  radio.addEventListener("change", () => {
143
144
  const server = this.shadowRoot.querySelector('input[name="server"]:checked').value;
144
145
 
145
- ["gemini","openai","ollama"].forEach(v => {
146
+ ["gemini","openai","ollama","chatopenai"].forEach(v => {
146
147
  this.shadowRoot.querySelectorAll('.' + v).forEach((elem) => {
147
148
  elem.style.display = (server === v) ? "flex" : "none";
148
149
  });