-
When using Anthropic as well as Ollama, Witsy often tries to answer questions first by creating an image ("Painting pixels") – which is mostly useless (unless I explicitly ask for an image). When I use Claude and Ollama directly (not via Witsy) they don't do that. Is there a setting somewhere that I am missing? |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 1 reply
-
I also just saw that in the text response it says: "Based on the tool call response, it seems that you are using a visual interface to input your question. However, I'll provide a text-based answer as requested." |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
In the next version, a new menu icon will allow you to configure this before prompting. Thinking of adding a "save as default for this model" but it is a bit tricky... |
Beta Was this translation helpful? Give feedback.
-
Tools are exposed part of the API call to the models. Witsy (as every other software) provides a list of tools and importantly a |
Beta Was this translation helpful? Give feedback.
Tools are exposed part of the API call to the models. Witsy (as every other software) provides a list of tools and importantly a
tool_choice
flag which indicates how the model should use tools. Common values areauto
(LLM decides),any
(force LLM to use one of the tools (of its choice)) ,tool
(force LLM to use a specific tool). Witsy usesauto
for all providers (https://github.com/nbonamy/multi-llm-ts/blob/5cb3d5bedc2c232aaa298a29cea6a33f026eaad3/src/providers/anthropic.ts#L194) (https://github.com/nbonamy/multi-llm-ts/blob/main/src/providers/ollama.ts#L174).