File size: 223 Bytes
6fc7119
 
 
 
 
1
2
3
4
5
6
import dspy 

lm = dspy.LM("ollama/alibayram/smollm3", api_base="http://127.0.0.1:11434", api_key="")
dspy.configure(lm=lm)
print(lm(messages=[{"role": "user", "content": "Say this is a test!"}]))  # => ['This is a test!']