@backtest-kit/ollama 0.0.2 → 0.0.3

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.
Files changed (2) hide show
  1. package/README.md +11 -11
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -28,17 +28,17 @@ Transform technical analysis into trading decisions with multi-provider LLM supp
28
28
 
29
29
  | Provider | Function | Base URL |
30
30
  |----------|----------|----------|
31
- | **OpenAI** | `gpt5()` | api.openai.com |
32
- | **Claude** | `claude()` | api.anthropic.com |
33
- | **DeepSeek** | `deepseek()` | api.deepseek.com |
34
- | **Grok** | `grok()` | api.x.ai |
35
- | **Mistral** | `mistral()` | api.mistral.ai |
36
- | **Perplexity** | `perplexity()` | api.perplexity.ai |
37
- | **Cohere** | `cohere()` | api.cohere.ai |
38
- | **Alibaba** | `alibaba()` | dashscope-intl.aliyuncs.com/compatible-mode/v1 |
39
- | **Hugging Face** | `hf()` | router.huggingface.co/v1 |
40
- | **Ollama** | `ollama()` | cloud.ollama.com |
41
- | **Z.ai** | `glm4()` | api.z.ai/api/paas/v4 |
31
+ | **OpenAI** | `gpt5()` | `https://api.openai.com/v1/` |
32
+ | **Claude** | `claude()` | `https://api.anthropic.com/v1/` |
33
+ | **DeepSeek** | `deepseek()` | `https://api.deepseek.com/` |
34
+ | **Grok** | `grok()` | `https://api.x.ai/v1/` |
35
+ | **Mistral** | `mistral()` | `https://api.mistral.ai/v1/` |
36
+ | **Perplexity** | `perplexity()` | `https://api.perplexity.ai/` |
37
+ | **Cohere** | `cohere()` | `https://api.cohere.ai/compatibility/v1/` |
38
+ | **Alibaba** | `alibaba()` | `https://dashscope-intl.aliyuncs.com/compatible-mode/v1/` |
39
+ | **Hugging Face** | `hf()` | `https://router.huggingface.co/v1/` |
40
+ | **Ollama** | `ollama()` | `https://ollama.com/` |
41
+ | **Zhipu AI** | `glm4()` | `https://api.z.ai/api/paas/v4/` |
42
42
 
43
43
  **Output Schema:**
44
44
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backtest-kit/ollama",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Multi-provider LLM inference library for AI-powered trading strategies. Supports 10+ providers including OpenAI, Claude, DeepSeek, Grok, Mistral with unified API and automatic token rotation.",
5
5
  "author": {
6
6
  "name": "Petr Tripolsky",