modified: csharp-examples.html

modified:   elixir-examples.html
	modified:   go-examples.html
	modified:   java-examples.html
	modified:   nodejs-examples.html
	modified:   python-examples.html
	modified:   ruby-examples.html
This commit is contained in:
Russell Ballestrini 2025-10-15 20:06:05 -04:00
parent 7fc375a598
commit b5bead65cb
7 changed files with 34 additions and 8 deletions

View file

@ -100,7 +100,7 @@
<p>To install the OpenAI package for Node.js, you can use <code>npm</code> in your <code>package.json</code>:</p>
<pre><code class="json">{
"dependencies": {
"openai": "^v4.67.3" // Use the latest version
"openai": "6.3.0"
}
}
</code></pre>
@ -310,6 +310,32 @@ getSpeech();
});
</script>
</main>
<!-- Right sidebar - Page TOC -->
<aside class="sidebar-right">
<div class="table-of-contents">
<nav>
<ul>
<li><a href="#nodejs-intro" class="active">Overview</a></li>
<li><a href="#nodejs-client">Installation</a></li>
<li><a href="#nodejs-non-streaming">Non-Streaming</a>
<ul>
<li><a href="#nodejs-hermes-non-stream">Hermes</a></li>
<li><a href="#nodejs-qwen-non-stream">Qwen Coder</a></li>
</ul>
</li>
<li><a href="#nodejs-streaming">Streaming</a>
<ul>
<li><a href="#nodejs-hermes-stream">Hermes</a></li>
<li><a href="#nodejs-qwen-stream">Qwen Coder</a></li>
</ul>
</li>
<li><a href="#nodejs-tts">Text-to-Speech</a></li>
</ul>
</nav>
</div>
</aside>
</body>
</html>