| Author |
Topic  |
|
|
dewtell
Senior Member
  
25 Posts |
Posted - Apr 18 2026 : 1:03:17 PM
|
The download errors out 35.2% of the way. Message is "end of response with 6039785635 bytes missing". I restarted the setup, only to get the same response. I checked the space left on my drive, and there are 97.5 GB free on my main drive, 336 GB left on my supplemental D: drive. Running Windows 11, Visual Studio 2013, Visual assist support ends 2026.07.17. Any suggestions?
|
|
|
dewtell
Senior Member
  
25 Posts |
Posted - Apr 19 2026 : 12:16:02 PM
|
I've now tried a few more times. Just got one that got up to 78.7% before failing, which is by far the best to date. Do I just have to keep trying until I luck out, or is there something else I can do?
|
 |
|
|
dewtell
Senior Member
  
25 Posts |
Posted - Apr 19 2026 : 8:18:00 PM
|
Finally succeeded on around the eighth or ninth try. I'm not sure what the problem was, but an incremental download capability would be helpful, instead of having to start the download from scratch every time.
|
 |
|
|
feline
Whole Tomato Software
    
United Kingdom
19381 Posts |
Posted - Apr 20 2026 : 07:53:12 AM
|
I am glad you got this working in the end. If anyone else ends up here, or you have this problem again, download the zip file from a web browser, via the link:
https://downloadfiles.idera.com/WholeTomato/other/Ollama_0.11.8_Gemma3_12b.zip
and I can explain how to install the downloaded zip file. This should be a more reliable download method for the few people who have problems with the download from inside VA. |
zen is the art of being at one with the two'ness |
 |
|
|
David_Kelly
Junior Member
 
14 Posts |
Posted - May 18 2026 : 07:09:25 AM
|
quote: Originally posted by feline and I can explain how to install the downloaded zip file.
Yes! Please! It would be very helpful, if you could explain this to me. Just copying it to the path from the dialog did not help.. |
 |
|
|
feline
Whole Tomato Software
    
United Kingdom
19381 Posts |
Posted - May 18 2026 : 10:38:48 AM
|
First, if you want to make sure you have a valid download, you can check the MD5 hash for the zip file. To calculate this hash, using Powershell, you can use the command:
Get-FileHash .\Ollama_0.11.8_Gemma3_12b.zip -Algorithm MD5
The correct value is:
068A29DD2EBD2A30B8F2E3823CC60BBA
Once the file is downloaded, close all instances of Visual Studio, and create the folder:
C:\Users\%USERNAME%\AppData\Local\VisualAssist\ollama_bin\
Assuming the file has been downloaded to the downloads folder, open the Windows command line run and the command:
tar.exe -xvf "C:\Users\%USERNAME%\Downloads\Ollama_0.11.8_Gemma3_12b.zip" -C "C:\Users\%USERNAME%\AppData\Local\VisualAssist\ollama_bin"
Now run regedit, and create the string value:
HKEY_CURRENT_USER\Software\Whole Tomato\Visual Assist X\OllamaDir = "C:\Users\%USERNAME%\AppData\Local\VisualAssist\ollama_bin"
Where you have MANUALLY expanded %USERNAME% in the path before saving it out in the registry. Now load IDE and turn On:
VA Options -> VA Intelligence -> Enable Explain with AI
I have tried this here more than once, and it should just work for you. |
zen is the art of being at one with the two'ness |
 |
|
|
David_Kelly
Junior Member
 
14 Posts |
Posted - May 18 2026 : 11:46:37 AM
|
Thank you! Works perfect! But I cannot find the option "Enable Explain with AI" in the dialog.. |
 |
|
|
feline
Whole Tomato Software
    
United Kingdom
19381 Posts |
Posted - May 18 2026 : 1:49:11 PM
|
My mistake, you should be seeing the option:
VA Options -> VA Intelligence -> Enable VA Intelligence
I need to update my notes to use the correct option name. You can then trigger this with Alt-Shift-Q, or hovering the mouse over a symbol or block of selected text. |
zen is the art of being at one with the two'ness |
 |
|
|
David_Kelly
Junior Member
 
14 Posts |
Posted - May 20 2026 : 03:50:05 AM
|
thanks ok. but: a) hovering over a symbol does not show the <alt+shift+q> popup-menu b) member functions do not work at all c) The "explain" report does not go deep enough. The very short answer mostly lists only the function parameters and it is even 50% wrong, as it aparently does not analyze the return values of preceding functions.
I'd call this rather a very early alpha version ;)
BTW: Is there an option to change/increase the font size of the "VA Find Reference Results" Tab ? |
Edited by - David_Kelly on May 20 2026 03:51:36 AM |
 |
|
|
feline
Whole Tomato Software
    
United Kingdom
19381 Posts |
Posted - May 20 2026 : 09:57:19 AM
|
For mouse hover, can you please look and see if the setting:
VA Options -> Editor -> Floating Elements -> Show floating button for Quick Actions and Refactorings
is turned On or Off. If this is turned Off, please try turning it On. You should now get either a tomato icon, or a downward pointing arrow icon when you hover the mouse over a symbol name, or some selected code. Pressing on this icon should open the refactoring context menu, the same one the keyboard shortcut Alt-Shift-Q shows you.
Does this work?
If so, this should address points a and b.
For point c, which command are you triggering? Are you just triggering "Explain with AI" on a symbol, or doing something else?
I ask, since if you are first selecting code, then only the selected code is fed into AI. If instead you are doing an explain with AI, which sits on top of Find References, as I understand it, then I need to put together a useful test case to study your situation. But I am guessing this is a question of how far out the AI is searching.
For the font and font size in the Find References Results, this follows the setting:
IDE Options -> Font and Colors -> Show settings for = Environment Font
but do note that this Environment font is used in several places across the IDE. |
zen is the art of being at one with the two'ness |
 |
|
|
David_Kelly
Junior Member
 
14 Posts |
Posted - May 20 2026 : 10:26:40 AM
|
quote: Originally posted by feline VA Options -> Editor -> Floating Elements -> Show floating button for Quick Actions and Refactorings is turned On or Off. If this is turned Off, please try turning it On. You should now get either a tomato icon, or a downward pointing arrow icon when you hover the mouse over a symbol name, or some selected code. Pressing on this icon should open the refactoring context menu, the same one the keyboard shortcut Alt-Shift-Q shows you. Does this work?
No - the popup shows the signatures of the function - no tomato icon or anything else.
quote:
For point c, which command are you triggering? Are you just triggering "Explain with AI" on a symbol, or doing something else?
I ask, since if you are first selecting code, then only the selected code is fed into AI. If instead you are doing an explain with AI, which sits on top of Find References, as I understand it, then I need to put together a useful test case to study your situation. But I am guessing this is a question of how far out the AI is searching.
Yes it looks like the AI has troubles with the investigation of certain pointers, e.g.: ui->comboBox->blockSignals( false );
quote:
For the font and font size in the Find References Results, this follows the setting: IDE Options -> Font and Colors -> Show settings for = Environment Font but do note that this Environment font is used in several places across the IDE.
was not helpful ;) |
 |
|
|
feline
Whole Tomato Software
    
United Kingdom
19381 Posts |
Posted - May 20 2026 : 10:37:42 AM
|
Mouse hover first, since this is most straight forward. Which IDE and version of VA are you using?
For the AI explain, which bit are you triggering the explain on? At the moment I have no real sense of what you are doing, or what to try and investigate.
For the font size, did this work? |
zen is the art of being at one with the two'ness |
 |
|
| |
Topic  |
|