You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am currently using the mistral-nemo-instruct-2407 LLM modal locally via LM Studio REST API Server. And, mistral nemo have the capability of calling function but i am not able to find any documentation regarding the function calling in lmstudio.js docs and Rest API Server. This is curl request I am using currently
curl http://localhost:1240/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "mistral-nemo-instruct-2407",
"messages": [
{ "role": "system", "content": "Always answer in rhymes. Today is Thursday" },
{ "role": "user", "content": "What day is it today?" }
],
"temperature": 0.7,
"max_tokens": -1,
"stream": false
}'
The text was updated successfully, but these errors were encountered:
I am currently using the
mistral-nemo-instruct-2407
LLM modal locally via LM Studio REST API Server. And, mistral nemo have the capability of calling function but i am not able to find any documentation regarding the function calling in lmstudio.js docs and Rest API Server. This is curl request I am using currentlyThe text was updated successfully, but these errors were encountered: