|
| 1 | +{ |
| 2 | + "providers": { |
| 3 | + "openai": { |
| 4 | + "name": "builtin::openai" |
| 5 | + }, |
| 6 | + "mistral": { |
| 7 | + "name": "builtin::mistral" |
| 8 | + }, |
| 9 | + "anthropic": { |
| 10 | + "name": "builtin::anthropic" |
| 11 | + }, |
| 12 | + "ollama": { |
| 13 | + "name": "builtin::ollama" |
| 14 | + } |
| 15 | + }, |
| 16 | + "embedding_models": { |
| 17 | + "text-embedding-3-small": { |
| 18 | + "model_name": "text-embedding-3-small", |
| 19 | + "provider_label": "openai", |
| 20 | + "max_input_tokens": 8191, |
| 21 | + "max_batch_tokens": 8191, |
| 22 | + "max_output_dimensions": 1536, |
| 23 | + "supports_shortening": true |
| 24 | + }, |
| 25 | + "nomic-embed-text": { |
| 26 | + "model_name": "nomic-embed-text", |
| 27 | + "provider_label": "ollama", |
| 28 | + "max_input_tokens": 8192, |
| 29 | + "max_batch_tokens": 8192, |
| 30 | + "max_output_dimensions": 768, |
| 31 | + "supports_shortening": false |
| 32 | + }, |
| 33 | + "bge-m3": { |
| 34 | + "model_name": "bge-m3", |
| 35 | + "provider_label": "ollama", |
| 36 | + "max_input_tokens": 8192, |
| 37 | + "max_batch_tokens": 8192, |
| 38 | + "max_output_dimensions": 1024, |
| 39 | + "supports_shortening": false |
| 40 | + }, |
| 41 | + "with-builtin-provider": { |
| 42 | + "model_name": "with-builtin-provider", |
| 43 | + "provider_label": "ollama", |
| 44 | + "max_input_tokens": 101, |
| 45 | + "max_batch_tokens": 501, |
| 46 | + "max_output_dimensions": 11, |
| 47 | + "supports_shortening": true |
| 48 | + }, |
| 49 | + "with-custom-provider": { |
| 50 | + "model_name": "with-custom-provider", |
| 51 | + "provider_label": "test", |
| 52 | + "max_input_tokens": 102, |
| 53 | + "max_batch_tokens": 502, |
| 54 | + "max_output_dimensions": 12, |
| 55 | + "supports_shortening": true |
| 56 | + }, |
| 57 | + "my-model-1": { |
| 58 | + "model_name": "my-model-1", |
| 59 | + "provider_label": "ollama", |
| 60 | + "max_input_tokens": 103, |
| 61 | + "max_batch_tokens": 503, |
| 62 | + "max_output_dimensions": 13, |
| 63 | + "supports_shortening": false |
| 64 | + }, |
| 65 | + "my-model-2": { |
| 66 | + "model_name": "my-model-2", |
| 67 | + "provider_label": "ollama", |
| 68 | + "max_input_tokens": 104, |
| 69 | + "max_batch_tokens": 504, |
| 70 | + "max_output_dimensions": 14, |
| 71 | + "supports_shortening": false |
| 72 | + }, |
| 73 | + "extra-model-1": { |
| 74 | + "model_name": "extra-model-1", |
| 75 | + "provider_label": "ollama", |
| 76 | + "max_input_tokens": 111, |
| 77 | + "max_batch_tokens": 511, |
| 78 | + "max_output_dimensions": 21, |
| 79 | + "supports_shortening": false |
| 80 | + } |
| 81 | + }, |
| 82 | + "text_generation_models": { |
| 83 | + "llama3.2": { |
| 84 | + "model_name": "llama3.2", |
| 85 | + "provider_label": "ollama", |
| 86 | + "context_window": 131072 |
| 87 | + }, |
| 88 | + "llama3.3": { |
| 89 | + "model_name": "llama3.3", |
| 90 | + "provider_label": "ollama", |
| 91 | + "context_window": 131072 |
| 92 | + } |
| 93 | + } |
| 94 | +} |
0 commit comments