Language Models API
LanguageModel
Bases: SynalinksSaveable
A language model API wrapper.
A language model is a type of AI model designed to generate, and interpret human language. It is trained on large amounts of text data to learn patterns and structures in language. Language models can perform various tasks such as text generation, translation, summarization, and answering questions.
We support providers that implement constrained structured output like OpenAI, Ollama or Mistral. In addition we support providers that otherwise allow to constrain the use of a specific tool like Groq or Anthropic.
For the complete list of models, please refer to the providers documentation.
Using OpenAI models
import synalinks
import os
os.environ["OPENAI_API_KEY"] = "your-api-key"
language_model = synalinks.LanguageModel(
model="openai/gpt-4o-mini",
)
Using Groq models
import synalinks
import os
os.environ["GROQ_API_KEY"] = "your-api-key"
language_model = synalinks.LanguageModel(
model="groq/llama3-8b-8192",
)
Using Anthropic models
import synalinks
import os
os.environ["ANTHROPIC_API_KEY"] = "your-api-key"
language_model = synalinks.LanguageModel(
model="anthropic/claude-3-sonnet-20240229",
)
Using Mistral models
import synalinks
import os
os.environ["MISTRAL_API_KEY"] = "your-api-key"
language_model = synalinks.LanguageModel(
model="mistral/codestral-latest",
)
Using Ollama models
import synalinks
import os
language_model = synalinks.LanguageModel(
model="ollama_chat/deepseek-r1",
)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model
|
str
|
The model to use. |
None
|
api_base
|
str
|
Optional. The endpoint to use. |
None
|
retry
|
int
|
Optional. The number of retry. |
5
|
Source code in synalinks/src/language_models/language_model.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 |
|
__call__(messages, schema=None, streaming=False, **kwargs)
async
Call method to generate a response using the language model.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
messages
|
dict
|
A formatted dict of chat messages. |
required |
schema
|
dict
|
The target JSON schema for structed output (optional). If None, output a ChatMessage-like answer. |
None
|
streaming
|
bool
|
Enable streaming (optional). Default to False. Can be enabled only if schema is None. |
False
|
**kwargs
|
keyword arguments
|
The additional keywords arguments forwarded to the LLM call. |
{}
|
Returns:
Type | Description |
---|---|
dict
|
The generated structured response. |
Source code in synalinks/src/language_models/language_model.py
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 |
|